Interface ListVirtualNodesResponse.Builder
-
- All Superinterfaces:
AppMeshResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<ListVirtualNodesResponse.Builder,ListVirtualNodesResponse>,SdkBuilder<ListVirtualNodesResponse.Builder,ListVirtualNodesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListVirtualNodesResponse
public static interface ListVirtualNodesResponse.Builder extends AppMeshResponse.Builder, SdkPojo, CopyableBuilder<ListVirtualNodesResponse.Builder,ListVirtualNodesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListVirtualNodesResponse.BuildernextToken(String nextToken)ThenextTokenvalue to include in a futureListVirtualNodesrequest.ListVirtualNodesResponse.BuildervirtualNodes(Collection<VirtualNodeRef> virtualNodes)The list of existing virtual nodes for the specified service mesh.ListVirtualNodesResponse.BuildervirtualNodes(Consumer<VirtualNodeRef.Builder>... virtualNodes)The list of existing virtual nodes for the specified service mesh.ListVirtualNodesResponse.BuildervirtualNodes(VirtualNodeRef... virtualNodes)The list of existing virtual nodes for the specified service mesh.-
Methods inherited from interface software.amazon.awssdk.services.appmesh.model.AppMeshResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
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
ListVirtualNodesResponse.Builder nextToken(String nextToken)
The
nextTokenvalue to include in a futureListVirtualNodesrequest. When the results of aListVirtualNodesrequest exceedlimit, you can use this value to retrieve the next page of results. This value isnullwhen there are no more results to return.- Parameters:
nextToken- ThenextTokenvalue to include in a futureListVirtualNodesrequest. When the results of aListVirtualNodesrequest exceedlimit, you can use this value to retrieve the next page of results. This value isnullwhen there are no more results to return.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
virtualNodes
ListVirtualNodesResponse.Builder virtualNodes(Collection<VirtualNodeRef> virtualNodes)
The list of existing virtual nodes for the specified service mesh.
- Parameters:
virtualNodes- The list of existing virtual nodes for the specified service mesh.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
virtualNodes
ListVirtualNodesResponse.Builder virtualNodes(VirtualNodeRef... virtualNodes)
The list of existing virtual nodes for the specified service mesh.
- Parameters:
virtualNodes- The list of existing virtual nodes for the specified service mesh.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
virtualNodes
ListVirtualNodesResponse.Builder virtualNodes(Consumer<VirtualNodeRef.Builder>... virtualNodes)
The list of existing virtual nodes for the specified service mesh.
This is a convenience method that creates an instance of theVirtualNodeRef.Builderavoiding the need to create one manually viaVirtualNodeRef.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#virtualNodes(List.) - Parameters:
virtualNodes- a consumer that will call methods onVirtualNodeRef.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#virtualNodes(java.util.Collection)
-
-