Interface ListPipelinesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListPipelinesResponse.Builder,ListPipelinesResponse>,ElasticTranscoderResponse.Builder,SdkBuilder<ListPipelinesResponse.Builder,ListPipelinesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListPipelinesResponse
public static interface ListPipelinesResponse.Builder extends ElasticTranscoderResponse.Builder, SdkPojo, CopyableBuilder<ListPipelinesResponse.Builder,ListPipelinesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListPipelinesResponse.BuildernextPageToken(String nextPageToken)A value that you use to access the second and subsequent pages of results, if any.ListPipelinesResponse.Builderpipelines(Collection<Pipeline> pipelines)An array ofPipelineobjects.ListPipelinesResponse.Builderpipelines(Consumer<Pipeline.Builder>... pipelines)An array ofPipelineobjects.ListPipelinesResponse.Builderpipelines(Pipeline... pipelines)An array ofPipelineobjects.-
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
-
pipelines
ListPipelinesResponse.Builder pipelines(Collection<Pipeline> pipelines)
An array of
Pipelineobjects.- Parameters:
pipelines- An array ofPipelineobjects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pipelines
ListPipelinesResponse.Builder pipelines(Pipeline... pipelines)
An array of
Pipelineobjects.- Parameters:
pipelines- An array ofPipelineobjects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pipelines
ListPipelinesResponse.Builder pipelines(Consumer<Pipeline.Builder>... pipelines)
An array of
This is a convenience method that creates an instance of thePipelineobjects.Pipeline.Builderavoiding the need to create one manually viaPipeline.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#pipelines(List.) - Parameters:
pipelines- a consumer that will call methods onPipeline.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#pipelines(java.util.Collection)
-
nextPageToken
ListPipelinesResponse.Builder nextPageToken(String nextPageToken)
A value that you use to access the second and subsequent pages of results, if any. When the pipelines 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 pipelines 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.
-
-