Interface RestartBatchJobIdentifier.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<RestartBatchJobIdentifier.Builder,
,RestartBatchJobIdentifier> SdkBuilder<RestartBatchJobIdentifier.Builder,
,RestartBatchJobIdentifier> SdkPojo
- Enclosing class:
RestartBatchJobIdentifier
public static interface RestartBatchJobIdentifier.Builder
extends SdkPojo, CopyableBuilder<RestartBatchJobIdentifier.Builder,RestartBatchJobIdentifier>
-
Method Summary
Modifier and TypeMethodDescriptionexecutionId
(String executionId) The executionId from the StartBatchJob response when the job ran for the first time.jobStepRestartMarker
(Consumer<JobStepRestartMarker.Builder> jobStepRestartMarker) The restart step information for the most recent restart operation.jobStepRestartMarker
(JobStepRestartMarker jobStepRestartMarker) The restart step information for the most recent restart operation.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, sdkFields
-
Method Details
-
executionId
The executionId from the StartBatchJob response when the job ran for the first time.
- Parameters:
executionId
- The executionId from the StartBatchJob response when the job ran for the first time.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
jobStepRestartMarker
The restart step information for the most recent restart operation.
- Parameters:
jobStepRestartMarker
- The restart step information for the most recent restart operation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
jobStepRestartMarker
default RestartBatchJobIdentifier.Builder jobStepRestartMarker(Consumer<JobStepRestartMarker.Builder> jobStepRestartMarker) The restart step information for the most recent restart operation.
This is a convenience method that creates an instance of theJobStepRestartMarker.Builder
avoiding the need to create one manually viaJobStepRestartMarker.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tojobStepRestartMarker(JobStepRestartMarker)
.- Parameters:
jobStepRestartMarker
- a consumer that will call methods onJobStepRestartMarker.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-