Interface ListJobsByStatusResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListJobsByStatusResponse.Builder,ListJobsByStatusResponse>,ElasticTranscoderResponse.Builder,SdkBuilder<ListJobsByStatusResponse.Builder,ListJobsByStatusResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListJobsByStatusResponse
public static interface ListJobsByStatusResponse.Builder extends ElasticTranscoderResponse.Builder, SdkPojo, CopyableBuilder<ListJobsByStatusResponse.Builder,ListJobsByStatusResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListJobsByStatusResponse.Builderjobs(Collection<Job> jobs)An array ofJobobjects that have the specified status.ListJobsByStatusResponse.Builderjobs(Consumer<Job.Builder>... jobs)An array ofJobobjects that have the specified status.ListJobsByStatusResponse.Builderjobs(Job... jobs)An array ofJobobjects that have the specified status.ListJobsByStatusResponse.BuildernextPageToken(String nextPageToken)A value that you use to access the second and subsequent pages of results, if any.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.elastictranscoder.model.ElasticTranscoderResponse.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
-
jobs
ListJobsByStatusResponse.Builder jobs(Collection<Job> jobs)
An array of
Jobobjects that have the specified status.- Parameters:
jobs- An array ofJobobjects that have the specified status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
jobs
ListJobsByStatusResponse.Builder jobs(Job... jobs)
An array of
Jobobjects that have the specified status.- Parameters:
jobs- An array ofJobobjects that have the specified status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
jobs
ListJobsByStatusResponse.Builder jobs(Consumer<Job.Builder>... jobs)
An array of
This is a convenience method that creates an instance of theJobobjects that have the specified status.Job.Builderavoiding the need to create one manually viaJob.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#jobs(List.) - Parameters:
jobs- a consumer that will call methods onJob.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#jobs(java.util.Collection)
-
nextPageToken
ListJobsByStatusResponse.Builder nextPageToken(String nextPageToken)
A value that you use to access the second and subsequent pages of results, if any. When the jobs in the specified pipeline fit on one page or when you've reached the last page of results, the value of
NextPageTokenisnull.- Parameters:
nextPageToken- A value that you use to access the second and subsequent pages of results, if any. When the jobs in the specified pipeline fit on one page or when you've reached the last page of results, the value ofNextPageTokenisnull.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-