This is the new AWS CloudFormation Template Reference Guide. Please update your bookmarks and links. For help getting started with CloudFormation, see the AWS CloudFormation User Guide.
AWS::Bedrock::FlowAlias FlowAliasConcurrencyConfiguration
Determines how multiple nodes in a flow can run in parallel. Running nodes concurrently can improve your flow's performance.
Syntax
To declare this entity in your AWS CloudFormation template, use the following syntax:
JSON
{ "MaxConcurrency" :Number, "Type" :String}
YAML
MaxConcurrency:NumberType:String
Properties
- MaxConcurrency
- 
                    The maximum number of nodes that can be executed concurrently in the flow. Required: No Type: Number Minimum: 1Maximum: 100Update requires: No interruption 
- Type
- 
                    The type of concurrency to use for parallel node execution. Specify one of the following options: - 
                            Automatic- Amazon Bedrock determines which nodes can be executed in parallel based on the flow definition and its dependencies.
- 
                            Manual- You specify which nodes can be executed in parallel.
 Required: Yes Type: String Allowed values: Automatic | ManualUpdate requires: No interruption 
-