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
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description RestartBatchJobIdentifier.BuilderexecutionId(String executionId)The executionId from the StartBatchJob response when the job ran for the first time.default RestartBatchJobIdentifier.BuilderjobStepRestartMarker(Consumer<JobStepRestartMarker.Builder> jobStepRestartMarker)The restart step information for the most recent restart operation.RestartBatchJobIdentifier.BuilderjobStepRestartMarker(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 Detail
-
executionId
RestartBatchJobIdentifier.Builder executionId(String 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
RestartBatchJobIdentifier.Builder jobStepRestartMarker(JobStepRestartMarker 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.Builderavoiding the need to create one manually viaJobStepRestartMarker.builder().When the
Consumercompletes,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:
jobStepRestartMarker(JobStepRestartMarker)
-
-