Interface ListStackSetOperationsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CloudFormationResponse.Builder,CopyableBuilder<ListStackSetOperationsResponse.Builder,ListStackSetOperationsResponse>,SdkBuilder<ListStackSetOperationsResponse.Builder,ListStackSetOperationsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListStackSetOperationsResponse
@Mutable @NotThreadSafe public static interface ListStackSetOperationsResponse.Builder extends CloudFormationResponse.Builder, SdkPojo, CopyableBuilder<ListStackSetOperationsResponse.Builder,ListStackSetOperationsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListStackSetOperationsResponse.BuildernextToken(String nextToken)If the request doesn't return all results,NextTokenis set to a token.ListStackSetOperationsResponse.Buildersummaries(Collection<StackSetOperationSummary> summaries)A list ofStackSetOperationSummarystructures that contain summary information about operations for the specified StackSet.ListStackSetOperationsResponse.Buildersummaries(Consumer<StackSetOperationSummary.Builder>... summaries)A list ofStackSetOperationSummarystructures that contain summary information about operations for the specified StackSet.ListStackSetOperationsResponse.Buildersummaries(StackSetOperationSummary... summaries)A list ofStackSetOperationSummarystructures that contain summary information about operations for the specified StackSet.-
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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
summaries
ListStackSetOperationsResponse.Builder summaries(Collection<StackSetOperationSummary> summaries)
A list of
StackSetOperationSummarystructures that contain summary information about operations for the specified StackSet.- Parameters:
summaries- A list ofStackSetOperationSummarystructures that contain summary information about operations for the specified StackSet.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
summaries
ListStackSetOperationsResponse.Builder summaries(StackSetOperationSummary... summaries)
A list of
StackSetOperationSummarystructures that contain summary information about operations for the specified StackSet.- Parameters:
summaries- A list ofStackSetOperationSummarystructures that contain summary information about operations for the specified StackSet.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
summaries
ListStackSetOperationsResponse.Builder summaries(Consumer<StackSetOperationSummary.Builder>... summaries)
A list of
This is a convenience method that creates an instance of theStackSetOperationSummarystructures that contain summary information about operations for the specified StackSet.StackSetOperationSummary.Builderavoiding the need to create one manually viaStackSetOperationSummary.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 onStackSetOperationSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#summaries(java.util.Collection)
-
nextToken
ListStackSetOperationsResponse.Builder nextToken(String nextToken)
If the request doesn't return all results,
NextTokenis set to a token. To retrieve the next set of results, callListOperationResultsagain and assign that token to the request object'sNextTokenparameter. If there are no remaining results,NextTokenis set tonull.- Parameters:
nextToken- If the request doesn't return all results,NextTokenis set to a token. To retrieve the next set of results, callListOperationResultsagain and assign that token to the request object'sNextTokenparameter. If there are no remaining results,NextTokenis set tonull.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-