ConnectorProfileReference
- class aws_cdk.aws_appflow.ConnectorProfileReference(*, connector_profile_arn, connector_profile_name)
Bases:
object
A 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 import aws_appflow as appflow connector_profile_reference = 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.