public static interface DescribeStacksResponse.Builder extends CloudFormationResponse.Builder, CopyableBuilder<DescribeStacksResponse.Builder,DescribeStacksResponse>
Modifier and Type | Method and Description |
---|---|
DescribeStacksResponse.Builder |
nextToken(String nextToken)
If the output exceeds 1 MB in size, a string that identifies the next page of stacks.
|
DescribeStacksResponse.Builder |
stacks(Collection<Stack> stacks)
A list of stack structures.
|
DescribeStacksResponse.Builder |
stacks(Consumer<Stack.Builder>... stacks)
A list of stack structures.
|
DescribeStacksResponse.Builder |
stacks(Stack... stacks)
A list of stack structures.
|
build
sdkHttpResponse, sdkHttpResponse
copy
applyMutation, build
DescribeStacksResponse.Builder stacks(Collection<Stack> stacks)
A list of stack structures.
stacks
- A list of stack structures.DescribeStacksResponse.Builder stacks(Stack... stacks)
A list of stack structures.
stacks
- A list of stack structures.DescribeStacksResponse.Builder stacks(Consumer<Stack.Builder>... stacks)
A list of stack structures.
This is a convenience that creates an instance of theList.Builder
avoiding the need to create
one manually via List#builder()
.
When the Consumer
completes, List.Builder#build()
is called immediately and its result
is passed to #stacks(List)
.stacks
- a consumer that will call methods on List.Builder
#stacks(List)
DescribeStacksResponse.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.
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.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.