import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * The resource schema for creating an Amazon Connect Customer Profiles Integration. */ export declare class Integration extends pulumi.CustomResource { /** * Get an existing Integration 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): Integration; /** * Returns true if the given object is an instance of Integration. 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 Integration; /** * The time of this integration got created */ readonly createdAt: pulumi.Output; /** * The unique name of the domain. */ readonly domainName: pulumi.Output; /** * A list of unique names for active event triggers associated with the integration. */ readonly eventTriggerNames: pulumi.Output; /** * The configuration that controls how Customer Profiles retrieves data from the source. */ readonly flowDefinition: pulumi.Output; /** * The time of this integration got last updated at */ readonly lastUpdatedAt: pulumi.Output; /** * The name of the ObjectType defined for the 3rd party data in Profile Service */ readonly objectTypeName: pulumi.Output; /** * The mapping between 3rd party event types and ObjectType names */ readonly objectTypeNames: pulumi.Output; /** * Scope of the integration, such as 'PROFILE' or 'DOMAIN' */ readonly scope: pulumi.Output; /** * The tags (keys and values) associated with the integration */ readonly tags: pulumi.Output; /** * The URI of the S3 bucket or any other type of data source. */ readonly uri: pulumi.Output; /** * Create a Integration 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: IntegrationArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Integration resource. */ export interface IntegrationArgs { /** * The unique name of the domain. */ domainName: pulumi.Input; /** * A list of unique names for active event triggers associated with the integration. */ eventTriggerNames?: pulumi.Input[]>; /** * The configuration that controls how Customer Profiles retrieves data from the source. */ flowDefinition?: pulumi.Input; /** * The name of the ObjectType defined for the 3rd party data in Profile Service */ objectTypeName?: pulumi.Input; /** * The mapping between 3rd party event types and ObjectType names */ objectTypeNames?: pulumi.Input[]>; /** * Scope of the integration, such as 'PROFILE' or 'DOMAIN' */ scope?: pulumi.Input; /** * The tags (keys and values) associated with the integration */ tags?: pulumi.Input[]>; /** * The URI of the S3 bucket or any other type of data source. */ uri?: pulumi.Input; }