Interface ListStackSetsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CloudFormationResponse.Builder,CopyableBuilder<ListStackSetsResponse.Builder,ListStackSetsResponse>,SdkBuilder<ListStackSetsResponse.Builder,ListStackSetsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListStackSetsResponse
public static interface ListStackSetsResponse.Builder extends CloudFormationResponse.Builder, SdkPojo, CopyableBuilder<ListStackSetsResponse.Builder,ListStackSetsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListStackSetsResponse.BuildernextToken(String nextToken)If the request doesn't return all of the remaining results,NextTokenis set to a token.ListStackSetsResponse.Buildersummaries(Collection<StackSetSummary> summaries)A list ofStackSetSummarystructures that contain information about the user's stack sets.ListStackSetsResponse.Buildersummaries(Consumer<StackSetSummary.Builder>... summaries)A list ofStackSetSummarystructures that contain information about the user's stack sets.ListStackSetsResponse.Buildersummaries(StackSetSummary... summaries)A list ofStackSetSummarystructures that contain information about the user's stack sets.-
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
ListStackSetsResponse.Builder summaries(Collection<StackSetSummary> summaries)
A list of
StackSetSummarystructures that contain information about the user's stack sets.- Parameters:
summaries- A list ofStackSetSummarystructures that contain information about the user's stack sets.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
summaries
ListStackSetsResponse.Builder summaries(StackSetSummary... summaries)
A list of
StackSetSummarystructures that contain information about the user's stack sets.- Parameters:
summaries- A list ofStackSetSummarystructures that contain information about the user's stack sets.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
summaries
ListStackSetsResponse.Builder summaries(Consumer<StackSetSummary.Builder>... summaries)
A list of
This is a convenience method that creates an instance of theStackSetSummarystructures that contain information about the user's stack sets.StackSetSummary.Builderavoiding the need to create one manually viaStackSetSummary.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 onStackSetSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#summaries(java.util.Collection)
-
nextToken
ListStackSetsResponse.Builder nextToken(String nextToken)
If the request doesn't return all of 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 of 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.
-
-