CfnConnectorProps

class aws_cdk.aws_appflow.CfnConnectorProps(*, connector_provisioning_config, connector_provisioning_type, connector_label=None, description=None)

Bases: object

Properties for defining a CfnConnector.

Parameters:
  • connector_provisioning_config (Union[ConnectorProvisioningConfigProperty, Dict[str, Any], IResolvable]) – The configuration required for registering the connector.

  • connector_provisioning_type (str) – The provisioning type used to register the connector.

  • connector_label (Optional[str]) – The label used for registering the connector.

  • description (Optional[str]) – A description about the connector runtime setting.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appflow-connector.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_appflow as appflow

cfn_connector_props = appflow.CfnConnectorProps(
    connector_provisioning_config=appflow.CfnConnector.ConnectorProvisioningConfigProperty(
        lambda_=appflow.CfnConnector.LambdaConnectorProvisioningConfigProperty(
            lambda_arn="lambdaArn"
        )
    ),
    connector_provisioning_type="connectorProvisioningType",

    # the properties below are optional
    connector_label="connectorLabel",
    description="description"
)

Attributes

connector_label

The label used for registering the connector.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appflow-connector.html#cfn-appflow-connector-connectorlabel

connector_provisioning_config

The configuration required for registering the connector.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appflow-connector.html#cfn-appflow-connector-connectorprovisioningconfig

connector_provisioning_type

The provisioning type used to register the connector.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appflow-connector.html#cfn-appflow-connector-connectorprovisioningtype

description

A description about the connector runtime setting.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appflow-connector.html#cfn-appflow-connector-description