interface CfnFlowAliasProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.CfnFlowAliasProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnFlowAliasProps |
Java | software.amazon.awscdk.services.bedrock.CfnFlowAliasProps |
Python | aws_cdk.aws_bedrock.CfnFlowAliasProps |
TypeScript | aws-cdk-lib » aws_bedrock » CfnFlowAliasProps |
Properties for defining a CfnFlowAlias.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-flowalias.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrock as bedrock } from 'aws-cdk-lib';
const cfnFlowAliasProps: bedrock.CfnFlowAliasProps = {
flowArn: 'flowArn',
name: 'name',
routingConfiguration: [{
flowVersion: 'flowVersion',
}],
// the properties below are optional
concurrencyConfiguration: {
type: 'type',
// the properties below are optional
maxConcurrency: 123,
},
description: 'description',
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| flow | string | The Amazon Resource Name (ARN) of the alias. |
| name | string | The name of the alias. |
| routing | IResolvable | (IResolvable | Flow)[] | A list of configurations about the versions that the alias maps to. |
| concurrency | IResolvable | Flow | The configuration that specifies how nodes in the flow are executed concurrently. |
| description? | string | A description of the alias. |
| tags? | { [string]: string } | Metadata that you can assign to a resource as key-value pairs. For more information, see the following resources:. |
flowArn
Type:
string
The Amazon Resource Name (ARN) of the alias.
name
Type:
string
The name of the alias.
routingConfiguration
Type:
IResolvable | (IResolvable | Flow)[]
A list of configurations about the versions that the alias maps to.
Currently, you can only specify one.
concurrencyConfiguration?
Type:
IResolvable | Flow
(optional)
The configuration that specifies how nodes in the flow are executed concurrently.
description?
Type:
string
(optional)
A description of the alias.
tags?
Type:
{ [string]: string }
(optional)
Metadata that you can assign to a resource as key-value pairs. For more information, see the following resources:.

.NET
Go
Java
Python
TypeScript