interface FlowAliasConcurrencyConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnFlowAliasPropsMixin.FlowAliasConcurrencyConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnFlowAliasPropsMixin_FlowAliasConcurrencyConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnFlowAliasPropsMixin.FlowAliasConcurrencyConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnFlowAliasPropsMixin.FlowAliasConcurrencyConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » 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 { aws_bedrock as bedrock } from '@aws-cdk/cfn-property-mixins';
const flowAliasConcurrencyConfigurationProperty: bedrock.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