interface FlowReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Bedrock.FlowReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsbedrock#FlowReference |
Java | software.amazon.awscdk.interfaces.bedrock.FlowReference |
Python | aws_cdk.interfaces.aws_bedrock.FlowReference |
TypeScript | aws-cdk-lib » interfaces » aws_bedrock » 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_bedrock as interfaces_aws_bedrock } from 'aws-cdk-lib/interfaces';
const flowReference: interfaces_aws_bedrock.FlowReference = {
flowArn: 'flowArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| flow | string | The Arn of the Flow resource. |
flowArn
Type:
string
The Arn of the Flow resource.

.NET
Go
Java
Python
TypeScript