interface CustomConnectorDestinationPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppFlow.Mixins.CfnFlowPropsMixin.CustomConnectorDestinationPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappflow/mixins#CfnFlowPropsMixin_CustomConnectorDestinationPropertiesProperty |
Java | software.amazon.awscdk.mixins.preview.services.appflow.mixins.CfnFlowPropsMixin.CustomConnectorDestinationPropertiesProperty |
Python | aws_cdk.mixins_preview.aws_appflow.mixins.CfnFlowPropsMixin.CustomConnectorDestinationPropertiesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appflow » mixins » CfnFlowPropsMixin » CustomConnectorDestinationPropertiesProperty |
The properties that are applied when the custom connector is being used as a destination.
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 customConnectorDestinationPropertiesProperty: appflow_mixins.CfnFlowPropsMixin.CustomConnectorDestinationPropertiesProperty = {
customProperties: {
customPropertiesKey: 'customProperties',
},
entityName: 'entityName',
errorHandlingConfig: {
bucketName: 'bucketName',
bucketPrefix: 'bucketPrefix',
failOnFirstError: false,
},
idFieldNames: ['idFieldNames'],
writeOperationType: 'writeOperationType',
};
Properties
| Name | Type | Description |
|---|---|---|
| custom | { [string]: string } | IResolvable | The custom properties that are specific to the connector when it's used as a destination in the flow. |
| entity | string | The entity specified in the custom connector as a destination in the flow. |
| error | IResolvable | Error | The settings that determine how Amazon AppFlow handles an error when placing data in the custom connector as destination. |
| id | string[] | The name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update, delete, or upsert. |
| write | string | Specifies the type of write operation to be performed in the custom connector when it's used as destination. |
customProperties?
Type:
{ [string]: string } | IResolvable
(optional)
The custom properties that are specific to the connector when it's used as a destination in the flow.
entityName?
Type:
string
(optional)
The entity specified in the custom connector as a destination in the flow.
errorHandlingConfig?
Type:
IResolvable | Error
(optional)
The settings that determine how Amazon AppFlow handles an error when placing data in the custom connector as destination.
idFieldNames?
Type:
string[]
(optional)
The name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update, delete, or upsert.
writeOperationType?
Type:
string
(optional)
Specifies the type of write operation to be performed in the custom connector when it's used as destination.

.NET
Go
Java
Python
TypeScript