interface CfnIntegrationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CustomerProfiles.Mixins.CfnIntegrationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscustomerprofiles/mixins#CfnIntegrationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.customerprofiles.mixins.CfnIntegrationMixinProps |
Python | aws_cdk.mixins_preview.aws_customerprofiles.mixins.CfnIntegrationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_customerprofiles » mixins » CfnIntegrationMixinProps |
Properties for CfnIntegrationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as customerprofiles_mixins } from '@aws-cdk/mixins-preview/aws-customerprofiles';
const cfnIntegrationMixinProps: customerprofiles_mixins.CfnIntegrationMixinProps = {
domainName: 'domainName',
eventTriggerNames: ['eventTriggerNames'],
flowDefinition: {
description: 'description',
flowName: 'flowName',
kmsArn: 'kmsArn',
sourceFlowConfig: {
connectorProfileName: 'connectorProfileName',
connectorType: 'connectorType',
incrementalPullConfig: {
datetimeTypeFieldName: 'datetimeTypeFieldName',
},
sourceConnectorProperties: {
marketo: {
object: 'object',
},
s3: {
bucketName: 'bucketName',
bucketPrefix: 'bucketPrefix',
},
salesforce: {
enableDynamicFieldUpdate: false,
includeDeletedRecords: false,
object: 'object',
},
serviceNow: {
object: 'object',
},
zendesk: {
object: 'object',
},
},
},
tasks: [{
connectorOperator: {
marketo: 'marketo',
s3: 's3',
salesforce: 'salesforce',
serviceNow: 'serviceNow',
zendesk: 'zendesk',
},
destinationField: 'destinationField',
sourceFields: ['sourceFields'],
taskProperties: [{
operatorPropertyKey: 'operatorPropertyKey',
property: 'property',
}],
taskType: 'taskType',
}],
triggerConfig: {
triggerProperties: {
scheduled: {
dataPullMode: 'dataPullMode',
firstExecutionFrom: 123,
scheduleEndTime: 123,
scheduleExpression: 'scheduleExpression',
scheduleOffset: 123,
scheduleStartTime: 123,
timezone: 'timezone',
},
},
triggerType: 'triggerType',
},
},
objectTypeName: 'objectTypeName',
objectTypeNames: [{
key: 'key',
value: 'value',
}],
tags: [{
key: 'key',
value: 'value',
}],
uri: 'uri',
};
Properties
| Name | Type | Description |
|---|---|---|
| domain | string | The unique name of the domain. |
| event | string[] | A list of unique names for active event triggers associated with the integration. |
| flow | IResolvable | Flow | The configuration that controls how Customer Profiles retrieves data from the source. |
| object | string | The name of the profile object type mapping to use. |
| object | IResolvable | (IResolvable | Object)[] | The object type mapping. |
| tags? | Cfn[] | The tags used to organize, track, or control access for this resource. |
| uri? | string | The URI of the S3 bucket or any other type of data source. |
domainName?
Type:
string
(optional)
The unique name of the domain.
eventTriggerNames?
Type:
string[]
(optional)
A list of unique names for active event triggers associated with the integration.
flowDefinition?
Type:
IResolvable | Flow
(optional)
The configuration that controls how Customer Profiles retrieves data from the source.
objectTypeName?
Type:
string
(optional)
The name of the profile object type mapping to use.
objectTypeNames?
Type:
IResolvable | (IResolvable | Object)[]
(optional)
The object type mapping.
tags?
Type:
Cfn[]
(optional)
The tags used to organize, track, or control access for this resource.
uri?
Type:
string
(optional)
The URI of the S3 bucket or any other type of data source.

.NET
Go
Java
Python
TypeScript