Interface ListPipelineEndpointsResponse.Builder
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<ListPipelineEndpointsResponse.Builder,
,ListPipelineEndpointsResponse> OsisResponse.Builder
,SdkBuilder<ListPipelineEndpointsResponse.Builder,
,ListPipelineEndpointsResponse> SdkPojo
,SdkResponse.Builder
- Enclosing class:
ListPipelineEndpointsResponse
@Mutable
@NotThreadSafe
public static interface ListPipelineEndpointsResponse.Builder
extends OsisResponse.Builder, SdkPojo, CopyableBuilder<ListPipelineEndpointsResponse.Builder,ListPipelineEndpointsResponse>
-
Method Summary
Modifier and TypeMethodDescriptionWhenNextToken
is returned, there are more results available.pipelineEndpoints
(Collection<PipelineEndpoint> pipelineEndpoints) A list of pipeline endpoints.pipelineEndpoints
(Consumer<PipelineEndpoint.Builder>... pipelineEndpoints) A list of pipeline endpoints.pipelineEndpoints
(PipelineEndpoint... pipelineEndpoints) A list of pipeline endpoints.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, sdkFieldNameToField, sdkFields
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
Method Details
-
nextToken
When
NextToken
is returned, there are more results available. The value ofNextToken
is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page.- Parameters:
nextToken
- WhenNextToken
is returned, there are more results available. The value ofNextToken
is 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.
-
pipelineEndpoints
ListPipelineEndpointsResponse.Builder pipelineEndpoints(Collection<PipelineEndpoint> pipelineEndpoints) A list of pipeline endpoints.
- Parameters:
pipelineEndpoints
- A list of pipeline endpoints.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pipelineEndpoints
A list of pipeline endpoints.
- Parameters:
pipelineEndpoints
- A list of pipeline endpoints.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pipelineEndpoints
ListPipelineEndpointsResponse.Builder pipelineEndpoints(Consumer<PipelineEndpoint.Builder>... pipelineEndpoints) A list of pipeline endpoints.
This is a convenience method that creates an instance of thePipelineEndpoint.Builder
avoiding the need to create one manually viaPipelineEndpoint.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed topipelineEndpoints(List<PipelineEndpoint>)
.- Parameters:
pipelineEndpoints
- a consumer that will call methods onPipelineEndpoint.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-