Interface ListPipelinesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListPipelinesResponse.Builder,ListPipelinesResponse>,DataPipelineResponse.Builder,SdkBuilder<ListPipelinesResponse.Builder,ListPipelinesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListPipelinesResponse
public static interface ListPipelinesResponse.Builder extends DataPipelineResponse.Builder, SdkPojo, CopyableBuilder<ListPipelinesResponse.Builder,ListPipelinesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListPipelinesResponse.BuilderhasMoreResults(Boolean hasMoreResults)Indicates whether there are more results that can be obtained by a subsequent call.ListPipelinesResponse.Buildermarker(String marker)The starting point for the next page of results.ListPipelinesResponse.BuilderpipelineIdList(Collection<PipelineIdName> pipelineIdList)The pipeline identifiers.ListPipelinesResponse.BuilderpipelineIdList(Consumer<PipelineIdName.Builder>... pipelineIdList)The pipeline identifiers.ListPipelinesResponse.BuilderpipelineIdList(PipelineIdName... pipelineIdList)The pipeline identifiers.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.datapipeline.model.DataPipelineResponse.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
-
pipelineIdList
ListPipelinesResponse.Builder pipelineIdList(Collection<PipelineIdName> pipelineIdList)
The pipeline identifiers. If you require additional information about the pipelines, you can use these identifiers to call DescribePipelines and GetPipelineDefinition.
- Parameters:
pipelineIdList- The pipeline identifiers. If you require additional information about the pipelines, you can use these identifiers to call DescribePipelines and GetPipelineDefinition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pipelineIdList
ListPipelinesResponse.Builder pipelineIdList(PipelineIdName... pipelineIdList)
The pipeline identifiers. If you require additional information about the pipelines, you can use these identifiers to call DescribePipelines and GetPipelineDefinition.
- Parameters:
pipelineIdList- The pipeline identifiers. If you require additional information about the pipelines, you can use these identifiers to call DescribePipelines and GetPipelineDefinition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pipelineIdList
ListPipelinesResponse.Builder pipelineIdList(Consumer<PipelineIdName.Builder>... pipelineIdList)
The pipeline identifiers. If you require additional information about the pipelines, you can use these identifiers to call DescribePipelines and GetPipelineDefinition.
This is a convenience method that creates an instance of thePipelineIdName.Builderavoiding the need to create one manually viaPipelineIdName.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#pipelineIdList(List.) - Parameters:
pipelineIdList- a consumer that will call methods onPipelineIdName.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#pipelineIdList(java.util.Collection)
-
marker
ListPipelinesResponse.Builder marker(String marker)
The starting point for the next page of results. To view the next page of results, call
ListPipelinesOutputagain with this marker value. If the value is null, there are no more results.- Parameters:
marker- The starting point for the next page of results. To view the next page of results, callListPipelinesOutputagain with this marker value. If the value is null, there are no more results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
hasMoreResults
ListPipelinesResponse.Builder hasMoreResults(Boolean hasMoreResults)
Indicates whether there are more results that can be obtained by a subsequent call.
- Parameters:
hasMoreResults- Indicates whether there are more results that can be obtained by a subsequent call.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-