aws-cdk-lib.aws_appflow.CfnConnectorProps

interface CfnConnectorProps

LanguageType name
.NETAmazon.CDK.AWS.AppFlow.CfnConnectorProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsappflow#CfnConnectorProps
Javasoftware.amazon.awscdk.services.appflow.CfnConnectorProps
Pythonaws_cdk.aws_appflow.CfnConnectorProps
TypeScript aws-cdk-lib » aws_appflow » CfnConnectorProps

Properties for defining a CfnConnector.

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 cfnConnectorProps: appflow.CfnConnectorProps = {
  connectorProvisioningConfig: {
    lambda: {
      lambdaArn: 'lambdaArn',
    },
  },
  connectorProvisioningType: 'connectorProvisioningType',

  // the properties below are optional
  connectorLabel: 'connectorLabel',
  description: 'description',
};

Properties

NameTypeDescription
connectorProvisioningConfigIResolvable | ConnectorProvisioningConfigPropertyThe configuration required for registering the connector.
connectorProvisioningTypestringThe provisioning type used to register the connector.
connectorLabel?stringThe label used for registering the connector.
description?stringA description about the connector runtime setting.

connectorProvisioningConfig

Type: IResolvable | ConnectorProvisioningConfigProperty

The configuration required for registering the connector.


connectorProvisioningType

Type: string

The provisioning type used to register the connector.


connectorLabel?

Type: string (optional)

The label used for registering the connector.


description?

Type: string (optional)

A description about the connector runtime setting.