Class DescribeRaidArraysResult
- java.lang.Object
-
- com.amazonaws.services.opsworks.model.DescribeRaidArraysResult
-
- All Implemented Interfaces:
Serializable,Cloneable
public class DescribeRaidArraysResult extends Object implements Serializable, Cloneable
Contains the response to a
DescribeRaidArraysrequest.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DescribeRaidArraysResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescribeRaidArraysResultclone()booleanequals(Object obj)List<RaidArray>getRaidArrays()ARaidArraysobject that describes the specified RAID arrays.inthashCode()voidsetRaidArrays(Collection<RaidArray> raidArrays)ARaidArraysobject that describes the specified RAID arrays.StringtoString()Returns a string representation of this object; useful for testing and debugging.DescribeRaidArraysResultwithRaidArrays(RaidArray... raidArrays)ARaidArraysobject that describes the specified RAID arrays.DescribeRaidArraysResultwithRaidArrays(Collection<RaidArray> raidArrays)ARaidArraysobject that describes the specified RAID arrays.
-
-
-
Method Detail
-
getRaidArrays
public List<RaidArray> getRaidArrays()
A
RaidArraysobject that describes the specified RAID arrays.- Returns:
- A
RaidArraysobject that describes the specified RAID arrays.
-
setRaidArrays
public void setRaidArrays(Collection<RaidArray> raidArrays)
A
RaidArraysobject that describes the specified RAID arrays.- Parameters:
raidArrays- ARaidArraysobject that describes the specified RAID arrays.
-
withRaidArrays
public DescribeRaidArraysResult withRaidArrays(RaidArray... raidArrays)
A
RaidArraysobject that describes the specified RAID arrays.NOTE: This method appends the values to the existing list (if any). Use
setRaidArrays(java.util.Collection)orwithRaidArrays(java.util.Collection)if you want to override the existing values.- Parameters:
raidArrays- ARaidArraysobject that describes the specified RAID arrays.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withRaidArrays
public DescribeRaidArraysResult withRaidArrays(Collection<RaidArray> raidArrays)
A
RaidArraysobject that describes the specified RAID arrays.- Parameters:
raidArrays- ARaidArraysobject that describes the specified RAID arrays.- 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 DescribeRaidArraysResult clone()
-
-