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)

43 lines (42 loc) 1.43 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Creates a Lattice Domain Verification */ export declare function getDomainVerification(args: GetDomainVerificationArgs, opts?: pulumi.InvokeOptions): Promise<GetDomainVerificationResult>; export interface GetDomainVerificationArgs { /** * The Amazon Resource Name (ARN) of the domain verification. */ arn: string; } export interface GetDomainVerificationResult { /** * The Amazon Resource Name (ARN) of the domain verification. */ readonly arn?: string; /** * The ID of the domain verification. */ readonly id?: string; /** * The current status of the domain verification process. */ readonly status?: enums.vpclattice.DomainVerificationStatus; /** * The tags associated with the domain verification. */ readonly tags?: outputs.Tag[]; readonly txtMethodConfig?: outputs.vpclattice.TxtMethodConfigProperties; } /** * Creates a Lattice Domain Verification */ export declare function getDomainVerificationOutput(args: GetDomainVerificationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDomainVerificationResult>; export interface GetDomainVerificationOutputArgs { /** * The Amazon Resource Name (ARN) of the domain verification. */ arn: pulumi.Input<string>; }