Interface FlowAliasConcurrencyConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FlowAliasConcurrencyConfiguration.Builder,FlowAliasConcurrencyConfiguration>,SdkBuilder<FlowAliasConcurrencyConfiguration.Builder,FlowAliasConcurrencyConfiguration>,SdkPojo
- Enclosing class:
- FlowAliasConcurrencyConfiguration
@Mutable @NotThreadSafe public static interface FlowAliasConcurrencyConfiguration.Builder extends SdkPojo, CopyableBuilder<FlowAliasConcurrencyConfiguration.Builder,FlowAliasConcurrencyConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FlowAliasConcurrencyConfiguration.BuildermaxConcurrency(Integer maxConcurrency)The maximum number of nodes that can be executed concurrently in the flow.FlowAliasConcurrencyConfiguration.Buildertype(String type)The type of concurrency to use for parallel node execution.FlowAliasConcurrencyConfiguration.Buildertype(ConcurrencyType type)The type of concurrency to use for parallel node execution.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
type
FlowAliasConcurrencyConfiguration.Builder type(String 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.
- Parameters:
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.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConcurrencyType,ConcurrencyType
-
-
type
FlowAliasConcurrencyConfiguration.Builder type(ConcurrencyType 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.
- Parameters:
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.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConcurrencyType,ConcurrencyType
-
-
maxConcurrency
FlowAliasConcurrencyConfiguration.Builder maxConcurrency(Integer maxConcurrency)
The maximum number of nodes that can be executed concurrently in the flow.
- Parameters:
maxConcurrency- The maximum number of nodes that can be executed concurrently in the flow.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-