Interface ParallelExecutionBlockConfiguration.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<ParallelExecutionBlockConfiguration.Builder,
,ParallelExecutionBlockConfiguration> SdkBuilder<ParallelExecutionBlockConfiguration.Builder,
,ParallelExecutionBlockConfiguration> SdkPojo
- Enclosing class:
ParallelExecutionBlockConfiguration
@Mutable
@NotThreadSafe
public static interface ParallelExecutionBlockConfiguration.Builder
extends SdkPojo, CopyableBuilder<ParallelExecutionBlockConfiguration.Builder,ParallelExecutionBlockConfiguration>
-
Method Summary
Modifier and TypeMethodDescriptionsteps
(Collection<Step> steps) The steps for a parallel execution block.steps
(Consumer<Step.Builder>... steps) The steps for a parallel execution block.The steps for a parallel execution block.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 Details
-
steps
The steps for a parallel execution block.
- Parameters:
steps
- The steps for a parallel execution block.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
steps
The steps for a parallel execution block.
- Parameters:
steps
- The steps for a parallel execution block.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
steps
The steps for a parallel execution block.
This is a convenience method that creates an instance of theStep.Builder
avoiding the need to create one manually viaStep.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tosteps(List<Step>)
.- Parameters:
steps
- a consumer that will call methods onStep.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-