interface FlowReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.AppFlow.FlowReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsappflow#FlowReference |
Java | software.amazon.awscdk.interfaces.appflow.FlowReference |
Python | aws_cdk.interfaces.aws_appflow.FlowReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_appflow } from 'aws-cdk-lib/interfaces';
const flowReference: interfaces_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