Interface GetJobQueueSnapshotResponse.Builder
- All Superinterfaces:
AwsResponse.Builder
,BatchResponse.Builder
,Buildable
,CopyableBuilder<GetJobQueueSnapshotResponse.Builder,
,GetJobQueueSnapshotResponse> SdkBuilder<GetJobQueueSnapshotResponse.Builder,
,GetJobQueueSnapshotResponse> SdkPojo
,SdkResponse.Builder
- Enclosing class:
GetJobQueueSnapshotResponse
@Mutable
@NotThreadSafe
public static interface GetJobQueueSnapshotResponse.Builder
extends BatchResponse.Builder, SdkPojo, CopyableBuilder<GetJobQueueSnapshotResponse.Builder,GetJobQueueSnapshotResponse>
-
Method Summary
Modifier and TypeMethodDescriptionfrontOfQueue
(Consumer<FrontOfQueueDetail.Builder> frontOfQueue) The list of the first 100RUNNABLE
jobs in each job queue.frontOfQueue
(FrontOfQueueDetail frontOfQueue) The list of the first 100RUNNABLE
jobs in each job queue.Methods inherited from interface software.amazon.awssdk.services.batch.model.BatchResponse.Builder
build, responseMetadata, responseMetadata
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
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
Method Details
-
frontOfQueue
The list of the first 100
RUNNABLE
jobs in each job queue. For first-in-first-out (FIFO) job queues, jobs are ordered based on their submission time. For fair-share scheduling (FSS) job queues, jobs are ordered based on their job priority and share usage.- Parameters:
frontOfQueue
- The list of the first 100RUNNABLE
jobs in each job queue. For first-in-first-out (FIFO) job queues, jobs are ordered based on their submission time. For fair-share scheduling (FSS) job queues, jobs are ordered based on their job priority and share usage.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
frontOfQueue
default GetJobQueueSnapshotResponse.Builder frontOfQueue(Consumer<FrontOfQueueDetail.Builder> frontOfQueue) The list of the first 100
This is a convenience method that creates an instance of theRUNNABLE
jobs in each job queue. For first-in-first-out (FIFO) job queues, jobs are ordered based on their submission time. For fair-share scheduling (FSS) job queues, jobs are ordered based on their job priority and share usage.FrontOfQueueDetail.Builder
avoiding the need to create one manually viaFrontOfQueueDetail.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tofrontOfQueue(FrontOfQueueDetail)
.- Parameters:
frontOfQueue
- a consumer that will call methods onFrontOfQueueDetail.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-