ConnectorProfileReference
- class aws_cdk.interfaces.aws_appflow.ConnectorProfileReference(*, connector_profile_arn, connector_profile_name)
Bases:
objectA reference to a ConnectorProfile resource.
- Parameters:
connector_profile_arn (
str) – The ARN of the ConnectorProfile resource.connector_profile_name (
str) – The ConnectorProfileName of the ConnectorProfile 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.interfaces import aws_appflow as interfaces_aws_appflow connector_profile_reference = interfaces_aws_appflow.ConnectorProfileReference( connector_profile_arn="connectorProfileArn", connector_profile_name="connectorProfileName" )
Attributes
- connector_profile_arn
The ARN of the ConnectorProfile resource.
- connector_profile_name
The ConnectorProfileName of the ConnectorProfile resource.