interface DestinationFlowConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppFlow.Mixins.CfnFlowPropsMixin.DestinationFlowConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappflow/mixins#CfnFlowPropsMixin_DestinationFlowConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.appflow.mixins.CfnFlowPropsMixin.DestinationFlowConfigProperty |
Python | aws_cdk.mixins_preview.aws_appflow.mixins.CfnFlowPropsMixin.DestinationFlowConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appflow » mixins » CfnFlowPropsMixin » DestinationFlowConfigProperty |
Contains information about the configuration of destination connectors present 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 destinationFlowConfigProperty: appflow_mixins.CfnFlowPropsMixin.DestinationFlowConfigProperty = {
apiVersion: 'apiVersion',
connectorProfileName: 'connectorProfileName',
connectorType: 'connectorType',
destinationConnectorProperties: {
customConnector: {
customProperties: {
customPropertiesKey: 'customProperties',
},
entityName: 'entityName',
errorHandlingConfig: {
bucketName: 'bucketName',
bucketPrefix: 'bucketPrefix',
failOnFirstError: false,
},
idFieldNames: ['idFieldNames'],
writeOperationType: 'writeOperationType',
},
eventBridge: {
errorHandlingConfig: {
bucketName: 'bucketName',
bucketPrefix: 'bucketPrefix',
failOnFirstError: false,
},
object: 'object',
},
lookoutMetrics: {
object: 'object',
},
marketo: {
errorHandlingConfig: {
bucketName: 'bucketName',
bucketPrefix: 'bucketPrefix',
failOnFirstError: false,
},
object: 'object',
},
redshift: {
bucketPrefix: 'bucketPrefix',
errorHandlingConfig: {
bucketName: 'bucketName',
bucketPrefix: 'bucketPrefix',
failOnFirstError: false,
},
intermediateBucketName: 'intermediateBucketName',
object: 'object',
},
s3: {
bucketName: 'bucketName',
bucketPrefix: 'bucketPrefix',
s3OutputFormatConfig: {
aggregationConfig: {
aggregationType: 'aggregationType',
targetFileSize: 123,
},
fileType: 'fileType',
prefixConfig: {
pathPrefixHierarchy: ['pathPrefixHierarchy'],
prefixFormat: 'prefixFormat',
prefixType: 'prefixType',
},
preserveSourceDataTyping: false,
},
},
salesforce: {
dataTransferApi: 'dataTransferApi',
errorHandlingConfig: {
bucketName: 'bucketName',
bucketPrefix: 'bucketPrefix',
failOnFirstError: false,
},
idFieldNames: ['idFieldNames'],
object: 'object',
writeOperationType: 'writeOperationType',
},
sapoData: {
errorHandlingConfig: {
bucketName: 'bucketName',
bucketPrefix: 'bucketPrefix',
failOnFirstError: false,
},
idFieldNames: ['idFieldNames'],
objectPath: 'objectPath',
successResponseHandlingConfig: {
bucketName: 'bucketName',
bucketPrefix: 'bucketPrefix',
},
writeOperationType: 'writeOperationType',
},
snowflake: {
bucketPrefix: 'bucketPrefix',
errorHandlingConfig: {
bucketName: 'bucketName',
bucketPrefix: 'bucketPrefix',
failOnFirstError: false,
},
intermediateBucketName: 'intermediateBucketName',
object: 'object',
},
upsolver: {
bucketName: 'bucketName',
bucketPrefix: 'bucketPrefix',
s3OutputFormatConfig: {
aggregationConfig: {
aggregationType: 'aggregationType',
targetFileSize: 123,
},
fileType: 'fileType',
prefixConfig: {
pathPrefixHierarchy: ['pathPrefixHierarchy'],
prefixFormat: 'prefixFormat',
prefixType: 'prefixType',
},
},
},
zendesk: {
errorHandlingConfig: {
bucketName: 'bucketName',
bucketPrefix: 'bucketPrefix',
failOnFirstError: false,
},
idFieldNames: ['idFieldNames'],
object: 'object',
writeOperationType: 'writeOperationType',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| api | string | The API version that the destination connector uses. |
| connector | string | The name of the connector profile. |
| connector | string | The type of destination connector, such as Sales force, Amazon S3, and so on. |
| destination | IResolvable | Destination | This stores the information that is required to query a particular connector. |
apiVersion?
Type:
string
(optional)
The API version that the destination connector uses.
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 destination connector, such as Sales force, Amazon S3, and so on.
destinationConnectorProperties?
Type:
IResolvable | Destination
(optional)
This stores the information that is required to query a particular connector.

.NET
Go
Java
Python
TypeScript