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)

46 lines (45 loc) 1.58 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * A domain, which is a container for all case data, such as cases, fields, templates and layouts. Each Amazon Connect instance can be associated with only one Cases domain. */ export declare function getDomain(args: GetDomainArgs, opts?: pulumi.InvokeOptions): Promise<GetDomainResult>; export interface GetDomainArgs { /** * The Amazon Resource Name (ARN) for the Cases domain. */ domainArn: string; } export interface GetDomainResult { /** * The time at which the domain was created. */ readonly createdTime?: string; /** * The Amazon Resource Name (ARN) for the Cases domain. */ readonly domainArn?: string; /** * The unique identifier of the Cases domain. */ readonly domainId?: string; /** * The status of the Cases domain. */ readonly domainStatus?: enums.cases.DomainStatus; /** * The tags that you attach to this domain. */ readonly tags?: outputs.Tag[]; } /** * A domain, which is a container for all case data, such as cases, fields, templates and layouts. Each Amazon Connect instance can be associated with only one Cases domain. */ export declare function getDomainOutput(args: GetDomainOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDomainResult>; export interface GetDomainOutputArgs { /** * The Amazon Resource Name (ARN) for the Cases domain. */ domainArn: pulumi.Input<string>; }