Class DescribeStackEventsResult
- java.lang.Object
-
- com.amazonaws.services.cloudformation.model.DescribeStackEventsResult
-
- All Implemented Interfaces:
Serializable,Cloneable
public class DescribeStackEventsResult extends Object implements Serializable, Cloneable
The output for a DescribeStackEvents action.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DescribeStackEventsResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescribeStackEventsResultclone()booleanequals(Object obj)StringgetNextToken()If the output exceeds 1 MB in size, a string that identifies the next page of events.List<StackEvent>getStackEvents()A list ofStackEventsstructures.inthashCode()voidsetNextToken(String nextToken)If the output exceeds 1 MB in size, a string that identifies the next page of events.voidsetStackEvents(Collection<StackEvent> stackEvents)A list ofStackEventsstructures.StringtoString()Returns a string representation of this object; useful for testing and debugging.DescribeStackEventsResultwithNextToken(String nextToken)If the output exceeds 1 MB in size, a string that identifies the next page of events.DescribeStackEventsResultwithStackEvents(StackEvent... stackEvents)A list ofStackEventsstructures.DescribeStackEventsResultwithStackEvents(Collection<StackEvent> stackEvents)A list ofStackEventsstructures.
-
-
-
Method Detail
-
getStackEvents
public List<StackEvent> getStackEvents()
A list of
StackEventsstructures.- Returns:
- A list of
StackEventsstructures.
-
setStackEvents
public void setStackEvents(Collection<StackEvent> stackEvents)
A list of
StackEventsstructures.- Parameters:
stackEvents- A list ofStackEventsstructures.
-
withStackEvents
public DescribeStackEventsResult withStackEvents(StackEvent... stackEvents)
A list of
StackEventsstructures.NOTE: This method appends the values to the existing list (if any). Use
setStackEvents(java.util.Collection)orwithStackEvents(java.util.Collection)if you want to override the existing values.- Parameters:
stackEvents- A list ofStackEventsstructures.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withStackEvents
public DescribeStackEventsResult withStackEvents(Collection<StackEvent> stackEvents)
A list of
StackEventsstructures.- Parameters:
stackEvents- A list ofStackEventsstructures.- 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 in size, a string that identifies the next page of events. 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 events. If no additional page exists, this value is null.
-
getNextToken
public String getNextToken()
If the output exceeds 1 MB in size, a string that identifies the next page of events. If no additional page exists, this value is null.
- Returns:
- If the output exceeds 1 MB in size, a string that identifies the next page of events. If no additional page exists, this value is null.
-
withNextToken
public DescribeStackEventsResult withNextToken(String nextToken)
If the output exceeds 1 MB in size, a string that identifies the next page of events. 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 events. If no additional page exists, 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 DescribeStackEventsResult clone()
-
-