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
DescribeRaidArrays
request.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DescribeRaidArraysResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescribeRaidArraysResult
clone()
boolean
equals(Object obj)
List<RaidArray>
getRaidArrays()
ARaidArrays
object that describes the specified RAID arrays.int
hashCode()
void
setRaidArrays(Collection<RaidArray> raidArrays)
ARaidArrays
object that describes the specified RAID arrays.String
toString()
Returns a string representation of this object; useful for testing and debugging.DescribeRaidArraysResult
withRaidArrays(RaidArray... raidArrays)
ARaidArrays
object that describes the specified RAID arrays.DescribeRaidArraysResult
withRaidArrays(Collection<RaidArray> raidArrays)
ARaidArrays
object that describes the specified RAID arrays.
-
-
-
Method Detail
-
getRaidArrays
public List<RaidArray> getRaidArrays()
A
RaidArrays
object that describes the specified RAID arrays.- Returns:
- A
RaidArrays
object that describes the specified RAID arrays.
-
setRaidArrays
public void setRaidArrays(Collection<RaidArray> raidArrays)
A
RaidArrays
object that describes the specified RAID arrays.- Parameters:
raidArrays
- ARaidArrays
object that describes the specified RAID arrays.
-
withRaidArrays
public DescribeRaidArraysResult withRaidArrays(RaidArray... raidArrays)
A
RaidArrays
object 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
- ARaidArrays
object 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
RaidArrays
object that describes the specified RAID arrays.- Parameters:
raidArrays
- ARaidArrays
object 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:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public DescribeRaidArraysResult clone()
-
-