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)

103 lines (102 loc) 3.87 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * A domain defined for 3rd party data source in Profile Service */ export declare class Domain extends pulumi.CustomResource { /** * Get an existing Domain resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): Domain; /** * Returns true if the given object is an instance of Domain. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Domain; /** * The time of this integration got created */ readonly createdAt: pulumi.Output<string>; readonly dataStore: pulumi.Output<outputs.customerprofiles.DomainDataStore | undefined>; /** * The URL of the SQS dead letter queue */ readonly deadLetterQueueUrl: pulumi.Output<string | undefined>; /** * The default encryption key */ readonly defaultEncryptionKey: pulumi.Output<string | undefined>; /** * The default number of days until the data within the domain expires. */ readonly defaultExpirationDays: pulumi.Output<number>; /** * The unique name of the domain. */ readonly domainName: pulumi.Output<string>; /** * The time of this integration got last updated at */ readonly lastUpdatedAt: pulumi.Output<string>; /** * The process of matching duplicate profiles. */ readonly matching: pulumi.Output<outputs.customerprofiles.DomainMatching | undefined>; /** * The process of matching duplicate profiles using Rule-Based matching. */ readonly ruleBasedMatching: pulumi.Output<outputs.customerprofiles.DomainRuleBasedMatching | undefined>; readonly stats: pulumi.Output<outputs.customerprofiles.DomainStats>; /** * The tags (keys and values) associated with the domain */ readonly tags: pulumi.Output<outputs.Tag[] | undefined>; /** * Create a Domain resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: DomainArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Domain resource. */ export interface DomainArgs { dataStore?: pulumi.Input<inputs.customerprofiles.DomainDataStoreArgs>; /** * The URL of the SQS dead letter queue */ deadLetterQueueUrl?: pulumi.Input<string>; /** * The default encryption key */ defaultEncryptionKey?: pulumi.Input<string>; /** * The default number of days until the data within the domain expires. */ defaultExpirationDays: pulumi.Input<number>; /** * The unique name of the domain. */ domainName?: pulumi.Input<string>; /** * The process of matching duplicate profiles. */ matching?: pulumi.Input<inputs.customerprofiles.DomainMatchingArgs>; /** * The process of matching duplicate profiles using Rule-Based matching. */ ruleBasedMatching?: pulumi.Input<inputs.customerprofiles.DomainRuleBasedMatchingArgs>; /** * The tags (keys and values) associated with the domain */ tags?: pulumi.Input<pulumi.Input<inputs.TagArgs>[]>; }