interface FlowAliasReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Bedrock.FlowAliasReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsbedrock#FlowAliasReference |
Java | software.amazon.awscdk.interfaces.bedrock.FlowAliasReference |
Python | aws_cdk.interfaces.aws_bedrock.FlowAliasReference |
TypeScript | aws-cdk-lib » interfaces » aws_bedrock » FlowAliasReference |
A reference to a FlowAlias 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 flowAliasReference: interfaces_aws_bedrock.FlowAliasReference = {
flowAliasArn: 'flowAliasArn',
flowArn: 'flowArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| flow | string | The Arn of the FlowAlias resource. |
| flow | string | The FlowArn of the FlowAlias resource. |
flowAliasArn
Type:
string
The Arn of the FlowAlias resource.
flowArn
Type:
string
The FlowArn of the FlowAlias resource.

.NET
Go
Java
Python
TypeScript