Interface ListChangeSetsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CloudFormationResponse.Builder,CopyableBuilder<ListChangeSetsResponse.Builder,ListChangeSetsResponse>,SdkBuilder<ListChangeSetsResponse.Builder,ListChangeSetsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListChangeSetsResponse
@Mutable @NotThreadSafe public static interface ListChangeSetsResponse.Builder extends CloudFormationResponse.Builder, SdkPojo, CopyableBuilder<ListChangeSetsResponse.Builder,ListChangeSetsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListChangeSetsResponse.BuildernextToken(String nextToken)If the output exceeds 1 MB, a string that identifies the next page of change sets.ListChangeSetsResponse.Buildersummaries(Collection<ChangeSetSummary> summaries)A list ofChangeSetSummarystructures that provides the ID and status of each change set for the specified stack.ListChangeSetsResponse.Buildersummaries(Consumer<ChangeSetSummary.Builder>... summaries)A list ofChangeSetSummarystructures that provides the ID and status of each change set for the specified stack.ListChangeSetsResponse.Buildersummaries(ChangeSetSummary... summaries)A list ofChangeSetSummarystructures that provides the ID and status of each change set for the specified stack.-
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
ListChangeSetsResponse.Builder summaries(Collection<ChangeSetSummary> summaries)
A list of
ChangeSetSummarystructures that provides the ID and status of each change set for the specified stack.- Parameters:
summaries- A list ofChangeSetSummarystructures that provides the ID and status of each change set for the specified stack.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
summaries
ListChangeSetsResponse.Builder summaries(ChangeSetSummary... summaries)
A list of
ChangeSetSummarystructures that provides the ID and status of each change set for the specified stack.- Parameters:
summaries- A list ofChangeSetSummarystructures that provides the ID and status of each change set for the specified stack.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
summaries
ListChangeSetsResponse.Builder summaries(Consumer<ChangeSetSummary.Builder>... summaries)
A list of
This is a convenience method that creates an instance of theChangeSetSummarystructures that provides the ID and status of each change set for the specified stack.ChangeSetSummary.Builderavoiding the need to create one manually viaChangeSetSummary.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 onChangeSetSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#summaries(java.util.Collection)
-
nextToken
ListChangeSetsResponse.Builder nextToken(String nextToken)
If the output exceeds 1 MB, a string that identifies the next page of change sets. If there is no additional page, this value is
null.- Parameters:
nextToken- If the output exceeds 1 MB, a string that identifies the next page of change sets. If there is no additional page, this value isnull.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-