Interface CfnFlowAlias.FlowAliasConcurrencyConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlowAlias.FlowAliasConcurrencyConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnFlowAlias
@Stability(Stable)
public static interface CfnFlowAlias.FlowAliasConcurrencyConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.bedrock.*;
FlowAliasConcurrencyConfigurationProperty flowAliasConcurrencyConfigurationProperty = FlowAliasConcurrencyConfigurationProperty.builder()
.type("type")
// the properties below are optional
.maxConcurrency(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFlowAlias.FlowAliasConcurrencyConfigurationPropertystatic final classAn implementation forCfnFlowAlias.FlowAliasConcurrencyConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getType
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.
- See Also:
-
getMaxConcurrency
The maximum number of nodes that can be executed concurrently in the flow.- See Also:
-
builder
-