public class VolumeConfiguration
extends java.lang.Object
implements java.io.Serializable
Describes an Amazon EBS volume configuration.
| コンストラクタと説明 |
|---|
VolumeConfiguration() |
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getMountPoint()
The volume mount point.
|
java.lang.Integer |
getNumberOfDisks()
The number of disks in the volume.
|
java.lang.Integer |
getRaidLevel()
The volume RAID
level.
|
java.lang.Integer |
getSize()
The volume size.
|
int |
hashCode() |
void |
setMountPoint(java.lang.String mountPoint)
The volume mount point.
|
void |
setNumberOfDisks(java.lang.Integer numberOfDisks)
The number of disks in the volume.
|
void |
setRaidLevel(java.lang.Integer raidLevel)
The volume RAID
level.
|
void |
setSize(java.lang.Integer size)
The volume size.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
VolumeConfiguration |
withMountPoint(java.lang.String mountPoint)
The volume mount point.
|
VolumeConfiguration |
withNumberOfDisks(java.lang.Integer numberOfDisks)
The number of disks in the volume.
|
VolumeConfiguration |
withRaidLevel(java.lang.Integer raidLevel)
The volume RAID
level.
|
VolumeConfiguration |
withSize(java.lang.Integer size)
The volume size.
|
public java.lang.String getMountPoint()
public void setMountPoint(java.lang.String mountPoint)
mountPoint - The volume mount point. For example "/dev/sdh".public VolumeConfiguration withMountPoint(java.lang.String mountPoint)
Returns a reference to this object so that method calls can be chained together.
mountPoint - The volume mount point. For example "/dev/sdh".public java.lang.Integer getRaidLevel()
public void setRaidLevel(java.lang.Integer raidLevel)
raidLevel - The volume RAID
level.public VolumeConfiguration withRaidLevel(java.lang.Integer raidLevel)
Returns a reference to this object so that method calls can be chained together.
raidLevel - The volume RAID
level.public java.lang.Integer getNumberOfDisks()
public void setNumberOfDisks(java.lang.Integer numberOfDisks)
numberOfDisks - The number of disks in the volume.public VolumeConfiguration withNumberOfDisks(java.lang.Integer numberOfDisks)
Returns a reference to this object so that method calls can be chained together.
numberOfDisks - The number of disks in the volume.public java.lang.Integer getSize()
public void setSize(java.lang.Integer size)
size - The volume size.public VolumeConfiguration withSize(java.lang.Integer size)
Returns a reference to this object so that method calls can be chained together.
size - The volume size.public java.lang.String toString()
toString クラス内 java.lang.ObjectObject.toString()public int hashCode()
hashCode クラス内 java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals クラス内 java.lang.Object