Interface ListPipesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListPipesResponse.Builder,ListPipesResponse>,PipesResponse.Builder,SdkBuilder<ListPipesResponse.Builder,ListPipesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListPipesResponse
public static interface ListPipesResponse.Builder extends PipesResponse.Builder, SdkPojo, CopyableBuilder<ListPipesResponse.Builder,ListPipesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListPipesResponse.BuildernextToken(String nextToken)IfnextTokenis returned, there are more results available.ListPipesResponse.Builderpipes(Collection<Pipe> pipes)The pipes returned by the call.ListPipesResponse.Builderpipes(Consumer<Pipe.Builder>... pipes)The pipes returned by the call.ListPipesResponse.Builderpipes(Pipe... pipes)The pipes returned by the call.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.pipes.model.PipesResponse.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
ListPipesResponse.Builder nextToken(String nextToken)
If
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. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an HTTP 400 InvalidToken error.- Parameters:
nextToken- IfnextTokenis 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. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an HTTP 400 InvalidToken error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pipes
ListPipesResponse.Builder pipes(Collection<Pipe> pipes)
The pipes returned by the call.
- Parameters:
pipes- The pipes returned by the call.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pipes
ListPipesResponse.Builder pipes(Pipe... pipes)
The pipes returned by the call.
- Parameters:
pipes- The pipes returned by the call.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pipes
ListPipesResponse.Builder pipes(Consumer<Pipe.Builder>... pipes)
The pipes returned by the call.
This is a convenience method that creates an instance of thePipe.Builderavoiding the need to create one manually viaPipe.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#pipes(List.) - Parameters:
pipes- a consumer that will call methods onPipe.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#pipes(java.util.Collection)
-
-