Interface SearchJobsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<SearchJobsResponse.Builder,SearchJobsResponse>,MediaConvertResponse.Builder,SdkBuilder<SearchJobsResponse.Builder,SearchJobsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- SearchJobsResponse
public static interface SearchJobsResponse.Builder extends MediaConvertResponse.Builder, SdkPojo, CopyableBuilder<SearchJobsResponse.Builder,SearchJobsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SearchJobsResponse.Builderjobs(Collection<Job> jobs)List of jobs.SearchJobsResponse.Builderjobs(Consumer<Job.Builder>... jobs)List of jobs.SearchJobsResponse.Builderjobs(Job... jobs)List of jobs.SearchJobsResponse.BuildernextToken(String nextToken)Use this string to request the next batch of jobs.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.mediaconvert.model.MediaConvertResponse.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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
jobs
SearchJobsResponse.Builder jobs(Collection<Job> jobs)
List of jobs.- Parameters:
jobs- List of jobs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
jobs
SearchJobsResponse.Builder jobs(Job... jobs)
List of jobs.- Parameters:
jobs- List of jobs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
jobs
SearchJobsResponse.Builder jobs(Consumer<Job.Builder>... jobs)
List of jobs. This is a convenience method that creates an instance of theJob.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)
-
nextToken
SearchJobsResponse.Builder nextToken(String nextToken)
Use this string to request the next batch of jobs.- Parameters:
nextToken- Use this string to request the next batch of jobs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-