interface CustomConnectorDestinationPropertiesProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.AppFlow.CfnFlow.CustomConnectorDestinationPropertiesProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappflow#CfnFlow_CustomConnectorDestinationPropertiesProperty | 
  Java | software.amazon.awscdk.services.appflow.CfnFlow.CustomConnectorDestinationPropertiesProperty | 
  Python | aws_cdk.aws_appflow.CfnFlow.CustomConnectorDestinationPropertiesProperty | 
  TypeScript  | aws-cdk-lib » aws_appflow » CfnFlow » 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 { aws_appflow as appflow } from 'aws-cdk-lib';
const customConnectorDestinationPropertiesProperty: appflow.CfnFlow.CustomConnectorDestinationPropertiesProperty = {
  entityName: 'entityName',
  // the properties below are optional
  customProperties: {
    customPropertiesKey: 'customProperties',
  },
  errorHandlingConfig: {
    bucketName: 'bucketName',
    bucketPrefix: 'bucketPrefix',
    failOnFirstError: false,
  },
  idFieldNames: ['idFieldNames'],
  writeOperationType: 'writeOperationType',
};
Properties
| Name | Type | Description | 
|---|---|---|
| entity | string | The entity specified in the custom connector as a destination in the flow. | 
| custom | { [string]: string } | IResolvable | The custom properties that are specific to the connector when it's used 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. | 
entityName
Type:
string
The entity specified in the custom connector as a destination in the flow.
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.
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