Interface ListJobsByPipelineResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListJobsByPipelineResponse.Builder,ListJobsByPipelineResponse>,ElasticTranscoderResponse.Builder,SdkBuilder<ListJobsByPipelineResponse.Builder,ListJobsByPipelineResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListJobsByPipelineResponse
public static interface ListJobsByPipelineResponse.Builder extends ElasticTranscoderResponse.Builder, SdkPojo, CopyableBuilder<ListJobsByPipelineResponse.Builder,ListJobsByPipelineResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListJobsByPipelineResponse.Builderjobs(Collection<Job> jobs)An array ofJobobjects that are in the specified pipeline.ListJobsByPipelineResponse.Builderjobs(Consumer<Job.Builder>... jobs)An array ofJobobjects that are in the specified pipeline.ListJobsByPipelineResponse.Builderjobs(Job... jobs)An array ofJobobjects that are in the specified pipeline.ListJobsByPipelineResponse.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
ListJobsByPipelineResponse.Builder jobs(Collection<Job> jobs)
An array of
Jobobjects that are in the specified pipeline.- Parameters:
jobs- An array ofJobobjects that are in the specified pipeline.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
jobs
ListJobsByPipelineResponse.Builder jobs(Job... jobs)
An array of
Jobobjects that are in the specified pipeline.- Parameters:
jobs- An array ofJobobjects that are in the specified pipeline.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
jobs
ListJobsByPipelineResponse.Builder jobs(Consumer<Job.Builder>... jobs)
An array of
This is a convenience method that creates an instance of theJobobjects that are in the specified pipeline.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
ListJobsByPipelineResponse.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.
-
-