UNPKG

@pulumi/aws-native

Version:

The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)

37 lines (36 loc) 1.53 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Resource schema for AWS::Route53GlobalResolver::GlobalResolver */ export declare function getGlobalResolver(args: GetGlobalResolverArgs, opts?: pulumi.InvokeOptions): Promise<GetGlobalResolverResult>; export interface GetGlobalResolverArgs { globalResolverId: string; } export interface GetGlobalResolverResult { readonly arn?: string; readonly createdAt?: string; readonly description?: string; readonly dnsName?: string; readonly globalResolverId?: string; readonly iPv4Addresses?: string[]; readonly iPv6Addresses?: string[]; readonly ipAddressType?: enums.route53globalresolver.GlobalResolverIpAddressType; readonly name?: string; readonly observabilityRegion?: string; /** * A list of regions the Global Resolver will exist in. This list cannot be updated and will stay fixed for the duration of the Global Resolver. */ readonly regions?: string[]; readonly status?: enums.route53globalresolver.GlobalResolverCrResourceStatus; readonly tags?: outputs.Tag[]; readonly updatedAt?: string; } /** * Resource schema for AWS::Route53GlobalResolver::GlobalResolver */ export declare function getGlobalResolverOutput(args: GetGlobalResolverOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetGlobalResolverResult>; export interface GetGlobalResolverOutputArgs { globalResolverId: pulumi.Input<string>; }