Interface ListStacksResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CloudFormationResponse.Builder,CopyableBuilder<ListStacksResponse.Builder,ListStacksResponse>,SdkBuilder<ListStacksResponse.Builder,ListStacksResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListStacksResponse
public static interface ListStacksResponse.Builder extends CloudFormationResponse.Builder, SdkPojo, CopyableBuilder<ListStacksResponse.Builder,ListStacksResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListStacksResponse.BuildernextToken(String nextToken)If the output exceeds 1 MB in size, a string that identifies the next page of stacks.ListStacksResponse.BuilderstackSummaries(Collection<StackSummary> stackSummaries)A list ofStackSummarystructures containing information about the specified stacks.ListStacksResponse.BuilderstackSummaries(Consumer<StackSummary.Builder>... stackSummaries)A list ofStackSummarystructures containing information about the specified stacks.ListStacksResponse.BuilderstackSummaries(StackSummary... stackSummaries)A list ofStackSummarystructures containing information about the specified stacks.-
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
-
stackSummaries
ListStacksResponse.Builder stackSummaries(Collection<StackSummary> stackSummaries)
A list of
StackSummarystructures containing information about the specified stacks.- Parameters:
stackSummaries- A list ofStackSummarystructures containing information about the specified stacks.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stackSummaries
ListStacksResponse.Builder stackSummaries(StackSummary... stackSummaries)
A list of
StackSummarystructures containing information about the specified stacks.- Parameters:
stackSummaries- A list ofStackSummarystructures containing information about the specified stacks.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stackSummaries
ListStacksResponse.Builder stackSummaries(Consumer<StackSummary.Builder>... stackSummaries)
A list of
This is a convenience method that creates an instance of theStackSummarystructures containing information about the specified stacks.StackSummary.Builderavoiding the need to create one manually viaStackSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#stackSummaries(List.) - Parameters:
stackSummaries- a consumer that will call methods onStackSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#stackSummaries(java.util.Collection)
-
nextToken
ListStacksResponse.Builder nextToken(String nextToken)
If the output exceeds 1 MB in size, a string that identifies the next page of stacks. If no additional page exists, this value is null.
- Parameters:
nextToken- If the output exceeds 1 MB in size, a string that identifies the next page of stacks. If no additional page exists, this value is null.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-