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; 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; export interface GetDomainOutputArgs { /** * The Amazon Resource Name (ARN) for the Cases domain. */ domainArn: pulumi.Input; }