ConnectorReference
- class aws_cdk.aws_transfer.ConnectorReference(*, connector_arn, connector_id)
Bases:
object
A reference to a Connector resource.
- Parameters:
connector_arn (
str
) – The ARN of the Connector resource.connector_id (
str
) – The ConnectorId 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_transfer as transfer connector_reference = transfer.ConnectorReference( connector_arn="connectorArn", connector_id="connectorId" )
Attributes
- connector_arn
The ARN of the Connector resource.
- connector_id
The ConnectorId of the Connector resource.