Interface GetPendingJobExecutionsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetPendingJobExecutionsResponse.Builder,GetPendingJobExecutionsResponse>,IotJobsDataPlaneResponse.Builder,SdkBuilder<GetPendingJobExecutionsResponse.Builder,GetPendingJobExecutionsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetPendingJobExecutionsResponse
public static interface GetPendingJobExecutionsResponse.Builder extends IotJobsDataPlaneResponse.Builder, SdkPojo, CopyableBuilder<GetPendingJobExecutionsResponse.Builder,GetPendingJobExecutionsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetPendingJobExecutionsResponse.BuilderinProgressJobs(Collection<JobExecutionSummary> inProgressJobs)A list of JobExecutionSummary objects with status IN_PROGRESS.GetPendingJobExecutionsResponse.BuilderinProgressJobs(Consumer<JobExecutionSummary.Builder>... inProgressJobs)A list of JobExecutionSummary objects with status IN_PROGRESS.GetPendingJobExecutionsResponse.BuilderinProgressJobs(JobExecutionSummary... inProgressJobs)A list of JobExecutionSummary objects with status IN_PROGRESS.GetPendingJobExecutionsResponse.BuilderqueuedJobs(Collection<JobExecutionSummary> queuedJobs)A list of JobExecutionSummary objects with status QUEUED.GetPendingJobExecutionsResponse.BuilderqueuedJobs(Consumer<JobExecutionSummary.Builder>... queuedJobs)A list of JobExecutionSummary objects with status QUEUED.GetPendingJobExecutionsResponse.BuilderqueuedJobs(JobExecutionSummary... queuedJobs)A list of JobExecutionSummary objects with status QUEUED.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.iotjobsdataplane.model.IotJobsDataPlaneResponse.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
-
inProgressJobs
GetPendingJobExecutionsResponse.Builder inProgressJobs(Collection<JobExecutionSummary> inProgressJobs)
A list of JobExecutionSummary objects with status IN_PROGRESS.
- Parameters:
inProgressJobs- A list of JobExecutionSummary objects with status IN_PROGRESS.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inProgressJobs
GetPendingJobExecutionsResponse.Builder inProgressJobs(JobExecutionSummary... inProgressJobs)
A list of JobExecutionSummary objects with status IN_PROGRESS.
- Parameters:
inProgressJobs- A list of JobExecutionSummary objects with status IN_PROGRESS.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inProgressJobs
GetPendingJobExecutionsResponse.Builder inProgressJobs(Consumer<JobExecutionSummary.Builder>... inProgressJobs)
A list of JobExecutionSummary objects with status IN_PROGRESS.
This is a convenience method that creates an instance of theJobExecutionSummary.Builderavoiding the need to create one manually viaJobExecutionSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#inProgressJobs(List.) - Parameters:
inProgressJobs- a consumer that will call methods onJobExecutionSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#inProgressJobs(java.util.Collection)
-
queuedJobs
GetPendingJobExecutionsResponse.Builder queuedJobs(Collection<JobExecutionSummary> queuedJobs)
A list of JobExecutionSummary objects with status QUEUED.
- Parameters:
queuedJobs- A list of JobExecutionSummary objects with status QUEUED.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
queuedJobs
GetPendingJobExecutionsResponse.Builder queuedJobs(JobExecutionSummary... queuedJobs)
A list of JobExecutionSummary objects with status QUEUED.
- Parameters:
queuedJobs- A list of JobExecutionSummary objects with status QUEUED.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
queuedJobs
GetPendingJobExecutionsResponse.Builder queuedJobs(Consumer<JobExecutionSummary.Builder>... queuedJobs)
A list of JobExecutionSummary objects with status QUEUED.
This is a convenience method that creates an instance of theJobExecutionSummary.Builderavoiding the need to create one manually viaJobExecutionSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#queuedJobs(List.) - Parameters:
queuedJobs- a consumer that will call methods onJobExecutionSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#queuedJobs(java.util.Collection)
-
-