Class DescribeScalingProcessTypesResult
- java.lang.Object
-
- com.amazonaws.services.autoscaling.model.DescribeScalingProcessTypesResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class DescribeScalingProcessTypesResult extends Object implements Serializable, Cloneable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DescribeScalingProcessTypesResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescribeScalingProcessTypesResult
clone()
boolean
equals(Object obj)
List<ProcessType>
getProcesses()
The names of the process types.int
hashCode()
void
setProcesses(Collection<ProcessType> processes)
The names of the process types.String
toString()
Returns a string representation of this object; useful for testing and debugging.DescribeScalingProcessTypesResult
withProcesses(ProcessType... processes)
The names of the process types.DescribeScalingProcessTypesResult
withProcesses(Collection<ProcessType> processes)
The names of the process types.
-
-
-
Method Detail
-
getProcesses
public List<ProcessType> getProcesses()
The names of the process types.
- Returns:
- The names of the process types.
-
setProcesses
public void setProcesses(Collection<ProcessType> processes)
The names of the process types.
- Parameters:
processes
- The names of the process types.
-
withProcesses
public DescribeScalingProcessTypesResult withProcesses(ProcessType... processes)
The names of the process types.
NOTE: This method appends the values to the existing list (if any). Use
setProcesses(java.util.Collection)
orwithProcesses(java.util.Collection)
if you want to override the existing values.- Parameters:
processes
- The names of the process types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withProcesses
public DescribeScalingProcessTypesResult withProcesses(Collection<ProcessType> processes)
The names of the process types.
- Parameters:
processes
- The names of the process types.- 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 DescribeScalingProcessTypesResult clone()
-
-