Class ListChangeSetsResult
- java.lang.Object
-
- com.amazonaws.services.cloudformation.model.ListChangeSetsResult
-
- All Implemented Interfaces:
Serializable,Cloneable
public class ListChangeSetsResult extends Object implements Serializable, Cloneable
The output for the ListChangeSets action.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ListChangeSetsResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ListChangeSetsResultclone()booleanequals(Object obj)StringgetNextToken()If the output exceeds 1 MB, a string that identifies the next page of change sets.List<ChangeSetSummary>getSummaries()A list ofChangeSetSummarystructures that provides the ID and status of each change set for the specified stack.inthashCode()voidsetNextToken(String nextToken)If the output exceeds 1 MB, a string that identifies the next page of change sets.voidsetSummaries(Collection<ChangeSetSummary> summaries)A list ofChangeSetSummarystructures that provides the ID and status of each change set for the specified stack.StringtoString()Returns a string representation of this object; useful for testing and debugging.ListChangeSetsResultwithNextToken(String nextToken)If the output exceeds 1 MB, a string that identifies the next page of change sets.ListChangeSetsResultwithSummaries(ChangeSetSummary... summaries)A list ofChangeSetSummarystructures that provides the ID and status of each change set for the specified stack.ListChangeSetsResultwithSummaries(Collection<ChangeSetSummary> summaries)A list ofChangeSetSummarystructures that provides the ID and status of each change set for the specified stack.
-
-
-
Method Detail
-
getSummaries
public List<ChangeSetSummary> getSummaries()
A list of
ChangeSetSummarystructures that provides the ID and status of each change set for the specified stack.- Returns:
- A list of
ChangeSetSummarystructures that provides the ID and status of each change set for the specified stack.
-
setSummaries
public void setSummaries(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.
-
withSummaries
public ListChangeSetsResult withSummaries(ChangeSetSummary... summaries)
A list of
ChangeSetSummarystructures that provides the ID and status of each change set for the specified stack.NOTE: This method appends the values to the existing list (if any). Use
setSummaries(java.util.Collection)orwithSummaries(java.util.Collection)if you want to override the existing values.- 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.
-
withSummaries
public ListChangeSetsResult withSummaries(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.
-
setNextToken
public void setNextToken(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 is null.
-
getNextToken
public String getNextToken()
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.
- Returns:
- 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.
-
withNextToken
public ListChangeSetsResult withNextToken(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 is null.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public ListChangeSetsResult clone()
-
-