@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)
100 lines (99 loc) • 3.98 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
/**
* 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<pulumi.ID>, 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<string>;
/**
* The unique name of the domain.
*/
readonly domainName: pulumi.Output<string>;
/**
* A list of unique names for active event triggers associated with the integration.
*/
readonly eventTriggerNames: pulumi.Output<string[] | undefined>;
/**
* The configuration that controls how Customer Profiles retrieves data from the source.
*/
readonly flowDefinition: pulumi.Output<outputs.customerprofiles.IntegrationFlowDefinition | undefined>;
/**
* The time of this integration got last updated at
*/
readonly lastUpdatedAt: pulumi.Output<string>;
/**
* The name of the ObjectType defined for the 3rd party data in Profile Service
*/
readonly objectTypeName: pulumi.Output<string | undefined>;
/**
* The mapping between 3rd party event types and ObjectType names
*/
readonly objectTypeNames: pulumi.Output<outputs.customerprofiles.IntegrationObjectTypeMapping[] | undefined>;
/**
* The tags (keys and values) associated with the integration
*/
readonly tags: pulumi.Output<outputs.Tag[] | undefined>;
/**
* The URI of the S3 bucket or any other type of data source.
*/
readonly uri: pulumi.Output<string | undefined>;
/**
* 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<string>;
/**
* A list of unique names for active event triggers associated with the integration.
*/
eventTriggerNames?: pulumi.Input<pulumi.Input<string>[]>;
/**
* The configuration that controls how Customer Profiles retrieves data from the source.
*/
flowDefinition?: pulumi.Input<inputs.customerprofiles.IntegrationFlowDefinitionArgs>;
/**
* The name of the ObjectType defined for the 3rd party data in Profile Service
*/
objectTypeName?: pulumi.Input<string>;
/**
* The mapping between 3rd party event types and ObjectType names
*/
objectTypeNames?: pulumi.Input<pulumi.Input<inputs.customerprofiles.IntegrationObjectTypeMappingArgs>[]>;
/**
* The tags (keys and values) associated with the integration
*/
tags?: pulumi.Input<pulumi.Input<inputs.TagArgs>[]>;
/**
* The URI of the S3 bucket or any other type of data source.
*/
uri?: pulumi.Input<string>;
}