interface FlowReference
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.AppFlow.FlowReference | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappflow#FlowReference | 
  Java | software.amazon.awscdk.services.appflow.FlowReference | 
  Python | aws_cdk.aws_appflow.FlowReference | 
  TypeScript  | aws-cdk-lib » aws_appflow » FlowReference | 
A reference to a Flow resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_appflow as appflow } from 'aws-cdk-lib';
const flowReference: appflow.FlowReference = {
  flowArn: 'flowArn',
  flowName: 'flowName',
};
Properties
| Name | Type | Description | 
|---|---|---|
| flow | string | The ARN of the Flow resource. | 
| flow | string | The FlowName of the Flow resource. | 
flowArn
Type:
string
The ARN of the Flow resource.
flowName
Type:
string
The FlowName of the Flow resource.

 .NET
 Go
 Java
 Python
 TypeScript