Interface GetJobQueueSnapshotResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,BatchResponse.Builder
,Buildable
,CopyableBuilder<GetJobQueueSnapshotResponse.Builder,GetJobQueueSnapshotResponse>
,SdkBuilder<GetJobQueueSnapshotResponse.Builder,GetJobQueueSnapshotResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- GetJobQueueSnapshotResponse
public static interface GetJobQueueSnapshotResponse.Builder extends BatchResponse.Builder, SdkPojo, CopyableBuilder<GetJobQueueSnapshotResponse.Builder,GetJobQueueSnapshotResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default GetJobQueueSnapshotResponse.Builder
frontOfQueue(Consumer<FrontOfQueueDetail.Builder> frontOfQueue)
The list of the first 100RUNNABLE
jobs in each job queue.GetJobQueueSnapshotResponse.Builder
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, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
frontOfQueue
GetJobQueueSnapshotResponse.Builder frontOfQueue(FrontOfQueueDetail 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:
frontOfQueue(FrontOfQueueDetail)
-
-