Interface ListStackSetOperationResultsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CloudFormationResponse.Builder,CopyableBuilder<ListStackSetOperationResultsResponse.Builder,ListStackSetOperationResultsResponse>,SdkBuilder<ListStackSetOperationResultsResponse.Builder,ListStackSetOperationResultsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListStackSetOperationResultsResponse
public static interface ListStackSetOperationResultsResponse.Builder extends CloudFormationResponse.Builder, SdkPojo, CopyableBuilder<ListStackSetOperationResultsResponse.Builder,ListStackSetOperationResultsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListStackSetOperationResultsResponse.BuildernextToken(String nextToken)If the request doesn't return all results,NextTokenis set to a token.ListStackSetOperationResultsResponse.Buildersummaries(Collection<StackSetOperationResultSummary> summaries)A list ofStackSetOperationResultSummarystructures that contain information about the specified operation results, for accounts and Amazon Web Services Regions that are included in the operation.ListStackSetOperationResultsResponse.Buildersummaries(Consumer<StackSetOperationResultSummary.Builder>... summaries)A list ofStackSetOperationResultSummarystructures that contain information about the specified operation results, for accounts and Amazon Web Services Regions that are included in the operation.ListStackSetOperationResultsResponse.Buildersummaries(StackSetOperationResultSummary... summaries)A list ofStackSetOperationResultSummarystructures that contain information about the specified operation results, for accounts and Amazon Web Services Regions that are included in the operation.-
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
ListStackSetOperationResultsResponse.Builder summaries(Collection<StackSetOperationResultSummary> summaries)
A list of
StackSetOperationResultSummarystructures that contain information about the specified operation results, for accounts and Amazon Web Services Regions that are included in the operation.- Parameters:
summaries- A list ofStackSetOperationResultSummarystructures that contain information about the specified operation results, for accounts and Amazon Web Services Regions that are included in the operation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
summaries
ListStackSetOperationResultsResponse.Builder summaries(StackSetOperationResultSummary... summaries)
A list of
StackSetOperationResultSummarystructures that contain information about the specified operation results, for accounts and Amazon Web Services Regions that are included in the operation.- Parameters:
summaries- A list ofStackSetOperationResultSummarystructures that contain information about the specified operation results, for accounts and Amazon Web Services Regions that are included in the operation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
summaries
ListStackSetOperationResultsResponse.Builder summaries(Consumer<StackSetOperationResultSummary.Builder>... summaries)
A list of
This is a convenience method that creates an instance of theStackSetOperationResultSummarystructures that contain information about the specified operation results, for accounts and Amazon Web Services Regions that are included in the operation.StackSetOperationResultSummary.Builderavoiding the need to create one manually viaStackSetOperationResultSummary.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 onStackSetOperationResultSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#summaries(java.util.Collection)
-
nextToken
ListStackSetOperationResultsResponse.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.
-
-