Interface ListApplicationInstanceNodeInstancesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListApplicationInstanceNodeInstancesResponse.Builder,ListApplicationInstanceNodeInstancesResponse>,PanoramaResponse.Builder,SdkBuilder<ListApplicationInstanceNodeInstancesResponse.Builder,ListApplicationInstanceNodeInstancesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListApplicationInstanceNodeInstancesResponse
public static interface ListApplicationInstanceNodeInstancesResponse.Builder extends PanoramaResponse.Builder, SdkPojo, CopyableBuilder<ListApplicationInstanceNodeInstancesResponse.Builder,ListApplicationInstanceNodeInstancesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListApplicationInstanceNodeInstancesResponse.BuildernextToken(String nextToken)A pagination token that's included if more results are available.ListApplicationInstanceNodeInstancesResponse.BuildernodeInstances(Collection<NodeInstance> nodeInstances)A list of node instances.ListApplicationInstanceNodeInstancesResponse.BuildernodeInstances(Consumer<NodeInstance.Builder>... nodeInstances)A list of node instances.ListApplicationInstanceNodeInstancesResponse.BuildernodeInstances(NodeInstance... nodeInstances)A list of node instances.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.panorama.model.PanoramaResponse.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
ListApplicationInstanceNodeInstancesResponse.Builder nextToken(String nextToken)
A pagination token that's included if more results are available.
- Parameters:
nextToken- A pagination token that's included if more results are available.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nodeInstances
ListApplicationInstanceNodeInstancesResponse.Builder nodeInstances(Collection<NodeInstance> nodeInstances)
A list of node instances.
- Parameters:
nodeInstances- A list of node instances.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nodeInstances
ListApplicationInstanceNodeInstancesResponse.Builder nodeInstances(NodeInstance... nodeInstances)
A list of node instances.
- Parameters:
nodeInstances- A list of node instances.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nodeInstances
ListApplicationInstanceNodeInstancesResponse.Builder nodeInstances(Consumer<NodeInstance.Builder>... nodeInstances)
A list of node instances.
This is a convenience method that creates an instance of theNodeInstance.Builderavoiding the need to create one manually viaNodeInstance.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#nodeInstances(List.) - Parameters:
nodeInstances- a consumer that will call methods onNodeInstance.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#nodeInstances(java.util.Collection)
-
-