Interface CfnFlowPropsMixin.ICustomConnectorSourcePropertiesProperty
The properties that are applied when the custom connector is being used as a source.
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.AppFlow
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnFlowPropsMixin.ICustomConnectorSourcePropertiesProperty
Syntax (vb)
Public Interface CfnFlowPropsMixin.ICustomConnectorSourcePropertiesProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.AppFlow;
var customConnectorSourcePropertiesProperty = new CustomConnectorSourcePropertiesProperty {
CustomProperties = new Dictionary<string, string> {
{ "customPropertiesKey", "customProperties" }
},
DataTransferApi = new DataTransferApiProperty {
Name = "name",
Type = "type"
},
EntityName = "entityName"
};
Synopsis
Properties
| CustomProperties | Custom properties that are required to use the custom connector as a source. |
| DataTransferApi | The API of the connector application that Amazon AppFlow uses to transfer your data. |
| EntityName | The entity specified in the custom connector as a source in the flow. |
Properties
CustomProperties
Custom properties that are required to use the custom connector as a source.
object? CustomProperties { get; }
Property Value
Remarks
Type union: either IResolvable or Dictionary<string, string>
DataTransferApi
The API of the connector application that Amazon AppFlow uses to transfer your data.
object? DataTransferApi { get; }
Property Value
Remarks
EntityName
The entity specified in the custom connector as a source in the flow.
string? EntityName { get; }