interface CfnConnectorMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppFlow.CfnConnectorMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappflow#CfnConnectorMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.appflow.CfnConnectorMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_appflow.CfnConnectorMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appflow » CfnConnectorMixinProps |
Properties for CfnConnectorPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appflow-connector.html
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/cfn-property-mixins';
const cfnConnectorMixinProps: appflow.CfnConnectorMixinProps = {
connectorLabel: 'connectorLabel',
connectorProvisioningConfig: {
lambda: {
lambdaArn: 'lambdaArn',
},
},
connectorProvisioningType: 'connectorProvisioningType',
description: 'description',
};
Properties
| Name | Type | Description |
|---|---|---|
| connector | string | The label used for registering the connector. |
| connector | IResolvable | Connector | The configuration required for registering the connector. |
| connector | string | The provisioning type used to register the connector. |
| description? | string | A description about the connector runtime setting. |
connectorLabel?
Type:
string
(optional)
The label used for registering the connector.
connectorProvisioningConfig?
Type:
IResolvable | Connector
(optional)
The configuration required for registering the connector.
connectorProvisioningType?
Type:
string
(optional)
The provisioning type used to register the connector.
description?
Type:
string
(optional)
A description about the connector runtime setting.

.NET
Go
Java
Python
TypeScript