Class DescribeAdjustmentTypesResult
- java.lang.Object
-
- com.amazonaws.services.autoscaling.model.DescribeAdjustmentTypesResult
-
- All Implemented Interfaces:
Serializable,Cloneable
public class DescribeAdjustmentTypesResult extends Object implements Serializable, Cloneable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DescribeAdjustmentTypesResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescribeAdjustmentTypesResultclone()booleanequals(Object obj)List<AdjustmentType>getAdjustmentTypes()The policy adjustment types.inthashCode()voidsetAdjustmentTypes(Collection<AdjustmentType> adjustmentTypes)The policy adjustment types.StringtoString()Returns a string representation of this object; useful for testing and debugging.DescribeAdjustmentTypesResultwithAdjustmentTypes(AdjustmentType... adjustmentTypes)The policy adjustment types.DescribeAdjustmentTypesResultwithAdjustmentTypes(Collection<AdjustmentType> adjustmentTypes)The policy adjustment types.
-
-
-
Method Detail
-
getAdjustmentTypes
public List<AdjustmentType> getAdjustmentTypes()
The policy adjustment types.
- Returns:
- The policy adjustment types.
-
setAdjustmentTypes
public void setAdjustmentTypes(Collection<AdjustmentType> adjustmentTypes)
The policy adjustment types.
- Parameters:
adjustmentTypes- The policy adjustment types.
-
withAdjustmentTypes
public DescribeAdjustmentTypesResult withAdjustmentTypes(AdjustmentType... adjustmentTypes)
The policy adjustment types.
NOTE: This method appends the values to the existing list (if any). Use
setAdjustmentTypes(java.util.Collection)orwithAdjustmentTypes(java.util.Collection)if you want to override the existing values.- Parameters:
adjustmentTypes- The policy adjustment types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withAdjustmentTypes
public DescribeAdjustmentTypesResult withAdjustmentTypes(Collection<AdjustmentType> adjustmentTypes)
The policy adjustment types.
- Parameters:
adjustmentTypes- The policy adjustment 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:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public DescribeAdjustmentTypesResult clone()
-
-