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)

32 lines (31 loc) 1.18 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::CustomerProfiles::DomainObjectType */ export declare function getDomainObjectType(args: GetDomainObjectTypeArgs, opts?: pulumi.InvokeOptions): Promise<GetDomainObjectTypeResult>; export interface GetDomainObjectTypeArgs { domainName: string; objectTypeName: string; } export interface GetDomainObjectTypeResult { /** * The timestamp of when the domain object type was created. */ readonly createdAt?: string; readonly description?: string; readonly encryptionKey?: string; /** * The timestamp of when the domain object type was most recently edited. */ readonly lastUpdatedAt?: string; readonly tags?: outputs.Tag[]; } /** * Resource Type definition for AWS::CustomerProfiles::DomainObjectType */ export declare function getDomainObjectTypeOutput(args: GetDomainObjectTypeOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDomainObjectTypeResult>; export interface GetDomainObjectTypeOutputArgs { domainName: pulumi.Input<string>; objectTypeName: pulumi.Input<string>; }