Class ExitStandbyResult
- java.lang.Object
-
- com.amazonaws.services.autoscaling.model.ExitStandbyResult
-
- All Implemented Interfaces:
Serializable,Cloneable
public class ExitStandbyResult extends Object implements Serializable, Cloneable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ExitStandbyResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ExitStandbyResultclone()booleanequals(Object obj)List<Activity>getActivities()The activities related to moving instances out ofStandbymode.inthashCode()voidsetActivities(Collection<Activity> activities)The activities related to moving instances out ofStandbymode.StringtoString()Returns a string representation of this object; useful for testing and debugging.ExitStandbyResultwithActivities(Activity... activities)The activities related to moving instances out ofStandbymode.ExitStandbyResultwithActivities(Collection<Activity> activities)The activities related to moving instances out ofStandbymode.
-
-
-
Method Detail
-
getActivities
public List<Activity> getActivities()
The activities related to moving instances out of
Standbymode.- Returns:
- The activities related to moving instances out of
Standbymode.
-
setActivities
public void setActivities(Collection<Activity> activities)
The activities related to moving instances out of
Standbymode.- Parameters:
activities- The activities related to moving instances out ofStandbymode.
-
withActivities
public ExitStandbyResult withActivities(Activity... activities)
The activities related to moving instances out of
Standbymode.NOTE: This method appends the values to the existing list (if any). Use
setActivities(java.util.Collection)orwithActivities(java.util.Collection)if you want to override the existing values.- Parameters:
activities- The activities related to moving instances out ofStandbymode.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withActivities
public ExitStandbyResult withActivities(Collection<Activity> activities)
The activities related to moving instances out of
Standbymode.- Parameters:
activities- The activities related to moving instances out ofStandbymode.- 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 ExitStandbyResult clone()
-
-