import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * An ObjectType resource of Amazon Connect Customer Profiles */ export declare class ObjectType extends pulumi.CustomResource { /** * Get an existing ObjectType 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, opts?: pulumi.CustomResourceOptions): ObjectType; /** * Returns true if the given object is an instance of ObjectType. 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 ObjectType; /** * Indicates whether a profile should be created when data is received. */ readonly allowProfileCreation: pulumi.Output; /** * The time of this integration got created. */ readonly createdAt: pulumi.Output; /** * Description of the profile object type. */ readonly description: pulumi.Output; /** * The unique name of the domain. */ readonly domainName: pulumi.Output; /** * The default encryption key */ readonly encryptionKey: pulumi.Output; /** * The default number of days until the data within the domain expires. */ readonly expirationDays: pulumi.Output; /** * A list of the name and ObjectType field. */ readonly fields: pulumi.Output; /** * A list of unique keys that can be used to map data to the profile. */ readonly keys: pulumi.Output; /** * The time of this integration got last updated at. */ readonly lastUpdatedAt: pulumi.Output; /** * The maximum available number of profile objects */ readonly maxAvailableProfileObjectCount: pulumi.Output; /** * The maximum number of profile objects for this object type */ readonly maxProfileObjectCount: pulumi.Output; /** * The name of the profile object type. */ readonly objectTypeName: pulumi.Output; /** * The format of your sourceLastUpdatedTimestamp that was previously set up. */ readonly sourceLastUpdatedTimestampFormat: pulumi.Output; /** * Defines the priority order of object types. Lower value indicates higher priority. */ readonly sourcePriority: pulumi.Output; /** * The tags (keys and values) associated with the integration. */ readonly tags: pulumi.Output; /** * A unique identifier for the object template. */ readonly templateId: pulumi.Output; /** * Create a ObjectType 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: ObjectTypeArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a ObjectType resource. */ export interface ObjectTypeArgs { /** * Indicates whether a profile should be created when data is received. */ allowProfileCreation?: pulumi.Input; /** * Description of the profile object type. */ description: pulumi.Input; /** * The unique name of the domain. */ domainName: pulumi.Input; /** * The default encryption key */ encryptionKey?: pulumi.Input; /** * The default number of days until the data within the domain expires. */ expirationDays?: pulumi.Input; /** * A list of the name and ObjectType field. */ fields?: pulumi.Input[]>; /** * A list of unique keys that can be used to map data to the profile. */ keys?: pulumi.Input[]>; /** * The maximum number of profile objects for this object type */ maxProfileObjectCount?: pulumi.Input; /** * The name of the profile object type. */ objectTypeName?: pulumi.Input; /** * The format of your sourceLastUpdatedTimestamp that was previously set up. */ sourceLastUpdatedTimestampFormat?: pulumi.Input; /** * Defines the priority order of object types. Lower value indicates higher priority. */ sourcePriority?: pulumi.Input; /** * The tags (keys and values) associated with the integration. */ tags?: pulumi.Input[]>; /** * A unique identifier for the object template. */ templateId?: pulumi.Input; }