@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)
55 lines (54 loc) • 1.83 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
/**
* Resource Type definition for AWS::SecurityAgent::TargetDomain
*/
export declare function getTargetDomain(args: GetTargetDomainArgs, opts?: pulumi.InvokeOptions): Promise<GetTargetDomainResult>;
export interface GetTargetDomainArgs {
/**
* Unique identifier of the target domain
*/
targetDomainId: string;
}
export interface GetTargetDomainResult {
/**
* Timestamp when the target domain was registered
*/
readonly createdAt?: string;
/**
* Tags for the target domain
*/
readonly tags?: outputs.Tag[];
/**
* Unique identifier of the target domain
*/
readonly targetDomainId?: string;
readonly verificationDetails?: outputs.securityagent.TargetDomainVerificationDetails;
/**
* Verification method for the target domain
*/
readonly verificationMethod?: enums.securityagent.TargetDomainVerificationMethod;
/**
* Current verification status of the registered target domain
*/
readonly verificationStatus?: enums.securityagent.TargetDomainVerificationStatus;
/**
* Reason for the current target domain verification status
*/
readonly verificationStatusReason?: string;
/**
* Timestamp when the target domain was last successfully verified
*/
readonly verifiedAt?: string;
}
/**
* Resource Type definition for AWS::SecurityAgent::TargetDomain
*/
export declare function getTargetDomainOutput(args: GetTargetDomainOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetTargetDomainResult>;
export interface GetTargetDomainOutputArgs {
/**
* Unique identifier of the target domain
*/
targetDomainId: pulumi.Input<string>;
}