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