interface SourceFlowConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CustomerProfiles.Mixins.CfnIntegrationPropsMixin.SourceFlowConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscustomerprofiles/mixins#CfnIntegrationPropsMixin_SourceFlowConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.customerprofiles.mixins.CfnIntegrationPropsMixin.SourceFlowConfigProperty |
Python | aws_cdk.mixins_preview.aws_customerprofiles.mixins.CfnIntegrationPropsMixin.SourceFlowConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_customerprofiles » mixins » CfnIntegrationPropsMixin » SourceFlowConfigProperty |
The configuration that controls how Customer Profiles retrieves data from the source.
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 sourceFlowConfigProperty: customerprofiles_mixins.CfnIntegrationPropsMixin.SourceFlowConfigProperty = {
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',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| connector | string | The name of the Amazon AppFlow connector profile. |
| connector | string | The type of connector, such as Salesforce, Marketo, and so on. |
| incremental | IResolvable | Incremental | Defines the configuration for a scheduled incremental data pull. |
| source | IResolvable | Source | Specifies the information that is required to query a particular source connector. |
connectorProfileName?
Type:
string
(optional)
The name of the Amazon AppFlow connector profile.
This name must be unique for each connector profile in the AWS account .
connectorType?
Type:
string
(optional)
The type of connector, such as Salesforce, Marketo, and so on.
incrementalPullConfig?
Type:
IResolvable | Incremental
(optional)
Defines the configuration for a scheduled incremental data pull.
If a valid configuration is provided, the fields specified in the configuration are used when querying for the incremental data pull.
sourceConnectorProperties?
Type:
IResolvable | Source
(optional)
Specifies the information that is required to query a particular source connector.

.NET
Go
Java
Python
TypeScript