interface CustomConnectorSourcePropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppFlow.Mixins.CfnFlowPropsMixin.CustomConnectorSourcePropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappflow/mixins#CfnFlowPropsMixin_CustomConnectorSourcePropertiesProperty |
Java | software.amazon.awscdk.mixins.preview.services.appflow.mixins.CfnFlowPropsMixin.CustomConnectorSourcePropertiesProperty |
Python | aws_cdk.mixins_preview.aws_appflow.mixins.CfnFlowPropsMixin.CustomConnectorSourcePropertiesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appflow » mixins » CfnFlowPropsMixin » CustomConnectorSourcePropertiesProperty |
The properties that are applied when the custom connector is being used as a source.
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 customConnectorSourcePropertiesProperty: appflow_mixins.CfnFlowPropsMixin.CustomConnectorSourcePropertiesProperty = {
customProperties: {
customPropertiesKey: 'customProperties',
},
dataTransferApi: {
name: 'name',
type: 'type',
},
entityName: 'entityName',
};
Properties
| Name | Type | Description |
|---|---|---|
| custom | { [string]: string } | IResolvable | Custom properties that are required to use the custom connector as a source. |
| data | IResolvable | Data | The API of the connector application that Amazon AppFlow uses to transfer your data. |
| entity | string | The entity specified in the custom connector as a source in the flow. |
customProperties?
Type:
{ [string]: string } | IResolvable
(optional)
Custom properties that are required to use the custom connector as a source.
dataTransferApi?
Type:
IResolvable | Data
(optional)
The API of the connector application that Amazon AppFlow uses to transfer your data.
entityName?
Type:
string
(optional)
The entity specified in the custom connector as a source in the flow.

.NET
Go
Java
Python
TypeScript