interface SourceFlowConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppFlow.Mixins.CfnFlowPropsMixin.SourceFlowConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappflow/mixins#CfnFlowPropsMixin_SourceFlowConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.appflow.mixins.CfnFlowPropsMixin.SourceFlowConfigProperty |
Python | aws_cdk.mixins_preview.aws_appflow.mixins.CfnFlowPropsMixin.SourceFlowConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appflow » mixins » CfnFlowPropsMixin » SourceFlowConfigProperty |
Contains information about the configuration of the source connector used in the flow.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as appflow_mixins } from '@aws-cdk/mixins-preview/aws-appflow';
const sourceFlowConfigProperty: appflow_mixins.CfnFlowPropsMixin.SourceFlowConfigProperty = {
apiVersion: 'apiVersion',
connectorProfileName: 'connectorProfileName',
connectorType: 'connectorType',
incrementalPullConfig: {
datetimeTypeFieldName: 'datetimeTypeFieldName',
},
sourceConnectorProperties: {
amplitude: {
object: 'object',
},
customConnector: {
customProperties: {
customPropertiesKey: 'customProperties',
},
dataTransferApi: {
name: 'name',
type: 'type',
},
entityName: 'entityName',
},
datadog: {
object: 'object',
},
dynatrace: {
object: 'object',
},
googleAnalytics: {
object: 'object',
},
inforNexus: {
object: 'object',
},
marketo: {
object: 'object',
},
pardot: {
object: 'object',
},
s3: {
bucketName: 'bucketName',
bucketPrefix: 'bucketPrefix',
s3InputFormatConfig: {
s3InputFileType: 's3InputFileType',
},
},
salesforce: {
dataTransferApi: 'dataTransferApi',
enableDynamicFieldUpdate: false,
includeDeletedRecords: false,
object: 'object',
},
sapoData: {
objectPath: 'objectPath',
paginationConfig: {
maxPageSize: 123,
},
parallelismConfig: {
maxParallelism: 123,
},
},
serviceNow: {
object: 'object',
},
singular: {
object: 'object',
},
slack: {
object: 'object',
},
trendmicro: {
object: 'object',
},
veeva: {
documentType: 'documentType',
includeAllVersions: false,
includeRenditions: false,
includeSourceFiles: false,
object: 'object',
},
zendesk: {
object: 'object',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| api | string | The API version of the connector when it's used as a source in the flow. |
| connector | string | The name of the connector profile. |
| connector | string | The type of connector, such as Salesforce, Amplitude, 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. |
apiVersion?
Type:
string
(optional)
The API version of the connector when it's used as a source in the flow.
connectorProfileName?
Type:
string
(optional)
The name of the 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, Amplitude, 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