Interface BatchSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BatchSummary.Builder,BatchSummary>,SdkBuilder<BatchSummary.Builder,BatchSummary>,SdkPojo
- Enclosing class:
- BatchSummary
public static interface BatchSummary.Builder extends SdkPojo, CopyableBuilder<BatchSummary.Builder,BatchSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default BatchSummary.BuilderstepInput(Consumer<BatchStepInput.Builder> stepInput)The step input of the batch summary.BatchSummary.BuilderstepInput(BatchStepInput stepInput)The step input of the batch summary.default BatchSummary.BuilderstepOutput(Consumer<BatchStepOutput.Builder> stepOutput)The step output of the batch summary.BatchSummary.BuilderstepOutput(BatchStepOutput stepOutput)The step output of the batch summary.-
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
-
stepInput
BatchSummary.Builder stepInput(BatchStepInput stepInput)
The step input of the batch summary.
- Parameters:
stepInput- The step input of the batch summary.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stepInput
default BatchSummary.Builder stepInput(Consumer<BatchStepInput.Builder> stepInput)
The step input of the batch summary.
This is a convenience method that creates an instance of theBatchStepInput.Builderavoiding the need to create one manually viaBatchStepInput.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tostepInput(BatchStepInput).- Parameters:
stepInput- a consumer that will call methods onBatchStepInput.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
stepInput(BatchStepInput)
-
stepOutput
BatchSummary.Builder stepOutput(BatchStepOutput stepOutput)
The step output of the batch summary.
- Parameters:
stepOutput- The step output of the batch summary.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stepOutput
default BatchSummary.Builder stepOutput(Consumer<BatchStepOutput.Builder> stepOutput)
The step output of the batch summary.
This is a convenience method that creates an instance of theBatchStepOutput.Builderavoiding the need to create one manually viaBatchStepOutput.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tostepOutput(BatchStepOutput).- Parameters:
stepOutput- a consumer that will call methods onBatchStepOutput.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
stepOutput(BatchStepOutput)
-
-