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 ListChangeSetsResult
clone()
boolean
equals(Object obj)
String
getNextToken()
If the output exceeds 1 MB, a string that identifies the next page of change sets.List<ChangeSetSummary>
getSummaries()
A list ofChangeSetSummary
structures that provides the ID and status of each change set for the specified stack.int
hashCode()
void
setNextToken(String nextToken)
If the output exceeds 1 MB, a string that identifies the next page of change sets.void
setSummaries(Collection<ChangeSetSummary> summaries)
A list ofChangeSetSummary
structures that provides the ID and status of each change set for the specified stack.String
toString()
Returns a string representation of this object; useful for testing and debugging.ListChangeSetsResult
withNextToken(String nextToken)
If the output exceeds 1 MB, a string that identifies the next page of change sets.ListChangeSetsResult
withSummaries(ChangeSetSummary... summaries)
A list ofChangeSetSummary
structures that provides the ID and status of each change set for the specified stack.ListChangeSetsResult
withSummaries(Collection<ChangeSetSummary> summaries)
A list ofChangeSetSummary
structures that provides the ID and status of each change set for the specified stack.
-
-
-
Method Detail
-
getSummaries
public List<ChangeSetSummary> getSummaries()
A list of
ChangeSetSummary
structures that provides the ID and status of each change set for the specified stack.- Returns:
- A list of
ChangeSetSummary
structures that provides the ID and status of each change set for the specified stack.
-
setSummaries
public void setSummaries(Collection<ChangeSetSummary> summaries)
A list of
ChangeSetSummary
structures that provides the ID and status of each change set for the specified stack.- Parameters:
summaries
- A list ofChangeSetSummary
structures that provides the ID and status of each change set for the specified stack.
-
withSummaries
public ListChangeSetsResult withSummaries(ChangeSetSummary... summaries)
A list of
ChangeSetSummary
structures 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 ofChangeSetSummary
structures 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
ChangeSetSummary
structures that provides the ID and status of each change set for the specified stack.- Parameters:
summaries
- A list ofChangeSetSummary
structures 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:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public ListChangeSetsResult clone()
-
-