Interface ListStackInstancesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CloudFormationResponse.Builder,CopyableBuilder<ListStackInstancesResponse.Builder,ListStackInstancesResponse>,SdkBuilder<ListStackInstancesResponse.Builder,ListStackInstancesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListStackInstancesResponse
public static interface ListStackInstancesResponse.Builder extends CloudFormationResponse.Builder, SdkPojo, CopyableBuilder<ListStackInstancesResponse.Builder,ListStackInstancesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListStackInstancesResponse.BuildernextToken(String nextToken)If the request doesn't return all the remaining results,NextTokenis set to a token.ListStackInstancesResponse.Buildersummaries(Collection<StackInstanceSummary> summaries)A list ofStackInstanceSummarystructures that contain information about the specified stack instances.ListStackInstancesResponse.Buildersummaries(Consumer<StackInstanceSummary.Builder>... summaries)A list ofStackInstanceSummarystructures that contain information about the specified stack instances.ListStackInstancesResponse.Buildersummaries(StackInstanceSummary... summaries)A list ofStackInstanceSummarystructures that contain information about the specified stack instances.-
Methods inherited from interface software.amazon.awssdk.services.cloudformation.model.CloudFormationResponse.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
-
summaries
ListStackInstancesResponse.Builder summaries(Collection<StackInstanceSummary> summaries)
A list of
StackInstanceSummarystructures that contain information about the specified stack instances.- Parameters:
summaries- A list ofStackInstanceSummarystructures that contain information about the specified stack instances.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
summaries
ListStackInstancesResponse.Builder summaries(StackInstanceSummary... summaries)
A list of
StackInstanceSummarystructures that contain information about the specified stack instances.- Parameters:
summaries- A list ofStackInstanceSummarystructures that contain information about the specified stack instances.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
summaries
ListStackInstancesResponse.Builder summaries(Consumer<StackInstanceSummary.Builder>... summaries)
A list of
This is a convenience method that creates an instance of theStackInstanceSummarystructures that contain information about the specified stack instances.StackInstanceSummary.Builderavoiding the need to create one manually viaStackInstanceSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#summaries(List.) - Parameters:
summaries- a consumer that will call methods onStackInstanceSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#summaries(java.util.Collection)
-
nextToken
ListStackInstancesResponse.Builder nextToken(String nextToken)
If the request doesn't return all the remaining results,
NextTokenis set to a token. To retrieve the next set of results, callListStackInstancesagain and assign that token to the request object'sNextTokenparameter. If the request returns all results,NextTokenis set tonull.- Parameters:
nextToken- If the request doesn't return all the remaining results,NextTokenis set to a token. To retrieve the next set of results, callListStackInstancesagain and assign that token to the request object'sNextTokenparameter. If the request returns all results,NextTokenis set tonull.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-