Interface ListBatchJobRestartPointsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListBatchJobRestartPointsResponse.Builder,ListBatchJobRestartPointsResponse>,M2Response.Builder,SdkBuilder<ListBatchJobRestartPointsResponse.Builder,ListBatchJobRestartPointsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListBatchJobRestartPointsResponse
public static interface ListBatchJobRestartPointsResponse.Builder extends M2Response.Builder, SdkPojo, CopyableBuilder<ListBatchJobRestartPointsResponse.Builder,ListBatchJobRestartPointsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListBatchJobRestartPointsResponse.BuilderbatchJobSteps(Collection<JobStep> batchJobSteps)Returns all the batch job steps and related information for a batch job that previously ran.ListBatchJobRestartPointsResponse.BuilderbatchJobSteps(Consumer<JobStep.Builder>... batchJobSteps)Returns all the batch job steps and related information for a batch job that previously ran.ListBatchJobRestartPointsResponse.BuilderbatchJobSteps(JobStep... batchJobSteps)Returns all the batch job steps and related information for a batch job that previously ran.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.m2.model.M2Response.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
batchJobSteps
ListBatchJobRestartPointsResponse.Builder batchJobSteps(Collection<JobStep> batchJobSteps)
Returns all the batch job steps and related information for a batch job that previously ran.
- Parameters:
batchJobSteps- Returns all the batch job steps and related information for a batch job that previously ran.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
batchJobSteps
ListBatchJobRestartPointsResponse.Builder batchJobSteps(JobStep... batchJobSteps)
Returns all the batch job steps and related information for a batch job that previously ran.
- Parameters:
batchJobSteps- Returns all the batch job steps and related information for a batch job that previously ran.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
batchJobSteps
ListBatchJobRestartPointsResponse.Builder batchJobSteps(Consumer<JobStep.Builder>... batchJobSteps)
Returns all the batch job steps and related information for a batch job that previously ran.
This is a convenience method that creates an instance of theJobStep.Builderavoiding the need to create one manually viaJobStep.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#batchJobSteps(List.) - Parameters:
batchJobSteps- a consumer that will call methods onJobStep.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#batchJobSteps(java.util.Collection)
-
-