FlowReference
- class aws_cdk.aws_appflow.FlowReference(*, flow_arn, flow_name)
Bases:
object
A reference to a Flow resource.
- Parameters:
flow_arn (
str
) – The ARN of the Flow resource.flow_name (
str
) – The FlowName of the Flow 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 flow_reference = appflow.FlowReference( flow_arn="flowArn", flow_name="flowName" )
Attributes
- flow_arn
The ARN of the Flow resource.
- flow_name
The FlowName of the Flow resource.