Interface ListClientVpcConnectionsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListClientVpcConnectionsResponse.Builder,ListClientVpcConnectionsResponse>,KafkaResponse.Builder,SdkBuilder<ListClientVpcConnectionsResponse.Builder,ListClientVpcConnectionsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListClientVpcConnectionsResponse
public static interface ListClientVpcConnectionsResponse.Builder extends KafkaResponse.Builder, SdkPojo, CopyableBuilder<ListClientVpcConnectionsResponse.Builder,ListClientVpcConnectionsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListClientVpcConnectionsResponse.BuilderclientVpcConnections(Collection<ClientVpcConnection> clientVpcConnections)List of client VPC connections.ListClientVpcConnectionsResponse.BuilderclientVpcConnections(Consumer<ClientVpcConnection.Builder>... clientVpcConnections)List of client VPC connections.ListClientVpcConnectionsResponse.BuilderclientVpcConnections(ClientVpcConnection... clientVpcConnections)List of client VPC connections.ListClientVpcConnectionsResponse.BuildernextToken(String nextToken)The paginated results marker.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.kafka.model.KafkaResponse.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
-
clientVpcConnections
ListClientVpcConnectionsResponse.Builder clientVpcConnections(Collection<ClientVpcConnection> clientVpcConnections)
List of client VPC connections.
- Parameters:
clientVpcConnections-List of client VPC connections.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
clientVpcConnections
ListClientVpcConnectionsResponse.Builder clientVpcConnections(ClientVpcConnection... clientVpcConnections)
List of client VPC connections.
- Parameters:
clientVpcConnections-List of client VPC connections.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
clientVpcConnections
ListClientVpcConnectionsResponse.Builder clientVpcConnections(Consumer<ClientVpcConnection.Builder>... clientVpcConnections)
List of client VPC connections.
This is a convenience method that creates an instance of theClientVpcConnection.Builderavoiding the need to create one manually viaClientVpcConnection.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#clientVpcConnections(List.) - Parameters:
clientVpcConnections- a consumer that will call methods onClientVpcConnection.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#clientVpcConnections(java.util.Collection)
-
nextToken
ListClientVpcConnectionsResponse.Builder nextToken(String nextToken)
The paginated results marker. When the result of a ListClientVpcConnections operation is truncated, the call returns NextToken in the response. To get another batch of configurations, provide this token in your next request.
- Parameters:
nextToken-The paginated results marker. When the result of a ListClientVpcConnections operation is truncated, the call returns NextToken in the response. To get another batch of configurations, provide this token in your next request.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-