CfnConnectorMixinProps

class aws_cdk.mixins_preview.aws_appflow.mixins.CfnConnectorMixinProps(*, connector_label=None, connector_provisioning_config=None, connector_provisioning_type=None, description=None)

Bases: object

Properties for CfnConnectorPropsMixin.

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

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

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

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

See:

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.
from aws_cdk.mixins_preview.aws_appflow import mixins as appflow_mixins

cfn_connector_mixin_props = appflow_mixins.CfnConnectorMixinProps(
    connector_label="connectorLabel",
    connector_provisioning_config=appflow_mixins.CfnConnectorPropsMixin.ConnectorProvisioningConfigProperty(
        lambda_=appflow_mixins.CfnConnectorPropsMixin.LambdaConnectorProvisioningConfigProperty(
            lambda_arn="lambdaArn"
        )
    ),
    connector_provisioning_type="connectorProvisioningType",
    description="description"
)

Attributes

connector_label

The label used for registering the connector.

See:

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.

See:

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.

See:

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.

See:

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