ConnectorReference
- class aws_cdk.aws_appflow.ConnectorReference(*, connector_arn, connector_label)
Bases:
object
A reference to a Connector resource.
- Parameters:
connector_arn (
str
) – The ARN of the Connector resource.connector_label (
str
) – The ConnectorLabel of the Connector resource.
- 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 import aws_appflow as appflow connector_reference = appflow.ConnectorReference( connector_arn="connectorArn", connector_label="connectorLabel" )
Attributes
- connector_arn
The ARN of the Connector resource.
- connector_label
The ConnectorLabel of the Connector resource.