interface FlowAliasConcurrencyConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnFlowAliasPropsMixin.FlowAliasConcurrencyConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnFlowAliasPropsMixin_FlowAliasConcurrencyConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnFlowAliasPropsMixin.FlowAliasConcurrencyConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnFlowAliasPropsMixin.FlowAliasConcurrencyConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnFlowAliasPropsMixin » FlowAliasConcurrencyConfigurationProperty |
Determines how multiple nodes in a flow can run in parallel.
Running nodes concurrently can improve your flow's performance.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
const flowAliasConcurrencyConfigurationProperty: bedrock_mixins.CfnFlowAliasPropsMixin.FlowAliasConcurrencyConfigurationProperty = {
maxConcurrency: 123,
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| max | number | The maximum number of nodes that can be executed concurrently in the flow. |
| type? | string | The type of concurrency to use for parallel node execution. Specify one of the following options:. |
maxConcurrency?
Type:
number
(optional)
The maximum number of nodes that can be executed concurrently in the flow.
type?
Type:
string
(optional)
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.

.NET
Go
Java
Python
TypeScript