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)

45 lines (44 loc) 1.4 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * The AWS::VoiceID::Domain resource specifies an Amazon VoiceID Domain. */ export declare function getDomain(args: GetDomainArgs, opts?: pulumi.InvokeOptions): Promise<GetDomainResult>; export interface GetDomainArgs { /** * The identifier of the domain. */ domainId: string; } export interface GetDomainResult { /** * The description of the domain. */ readonly description?: string; /** * The identifier of the domain. */ readonly domainId?: string; /** * The name for the domain. */ readonly name?: string; /** * The server-side encryption configuration containing the KMS key identifier you want Voice ID to use to encrypt your data. */ readonly serverSideEncryptionConfiguration?: outputs.voiceid.DomainServerSideEncryptionConfiguration; /** * The tags used to organize, track, or control access for this resource. */ readonly tags?: outputs.Tag[]; } /** * The AWS::VoiceID::Domain resource specifies an Amazon VoiceID Domain. */ export declare function getDomainOutput(args: GetDomainOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDomainResult>; export interface GetDomainOutputArgs { /** * The identifier of the domain. */ domainId: pulumi.Input<string>; }