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; 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; export interface GetDomainVerificationOutputArgs { /** * The Amazon Resource Name (ARN) of the domain verification. */ arn: pulumi.Input; }