Interface ListPipelinesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListPipelinesResponse.Builder,ListPipelinesResponse>,OsisResponse.Builder,SdkBuilder<ListPipelinesResponse.Builder,ListPipelinesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListPipelinesResponse
public static interface ListPipelinesResponse.Builder extends OsisResponse.Builder, SdkPojo, CopyableBuilder<ListPipelinesResponse.Builder,ListPipelinesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListPipelinesResponse.BuildernextToken(String nextToken)WhennextTokenis returned, there are more results available.ListPipelinesResponse.Builderpipelines(Collection<PipelineSummary> pipelines)A list of all existing Data Prepper pipelines.ListPipelinesResponse.Builderpipelines(Consumer<PipelineSummary.Builder>... pipelines)A list of all existing Data Prepper pipelines.ListPipelinesResponse.Builderpipelines(PipelineSummary... pipelines)A list of all existing Data Prepper pipelines.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.osis.model.OsisResponse.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
-
nextToken
ListPipelinesResponse.Builder nextToken(String nextToken)
When
nextTokenis returned, there are more results available. The value ofnextTokenis a unique pagination token for each page. Make the call again using the returned token to retrieve the next page.- Parameters:
nextToken- WhennextTokenis returned, there are more results available. The value ofnextTokenis a unique pagination token for each page. Make the call again using the returned token to retrieve the next page.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pipelines
ListPipelinesResponse.Builder pipelines(Collection<PipelineSummary> pipelines)
A list of all existing Data Prepper pipelines.
- Parameters:
pipelines- A list of all existing Data Prepper pipelines.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pipelines
ListPipelinesResponse.Builder pipelines(PipelineSummary... pipelines)
A list of all existing Data Prepper pipelines.
- Parameters:
pipelines- A list of all existing Data Prepper pipelines.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pipelines
ListPipelinesResponse.Builder pipelines(Consumer<PipelineSummary.Builder>... pipelines)
A list of all existing Data Prepper pipelines.
This is a convenience method that creates an instance of thePipelineSummary.Builderavoiding the need to create one manually viaPipelineSummary.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 onPipelineSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#pipelines(java.util.Collection)
-
-