Class EbsConfiguration
- java.lang.Object
-
- com.amazonaws.services.elasticmapreduce.model.EbsConfiguration
-
- All Implemented Interfaces:
Serializable,Cloneable
public class EbsConfiguration extends Object implements Serializable, Cloneable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EbsConfiguration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description EbsConfigurationclone()booleanequals(Object obj)List<EbsBlockDeviceConfig>getEbsBlockDeviceConfigs()BooleangetEbsOptimized()inthashCode()BooleanisEbsOptimized()voidsetEbsBlockDeviceConfigs(Collection<EbsBlockDeviceConfig> ebsBlockDeviceConfigs)voidsetEbsOptimized(Boolean ebsOptimized)StringtoString()Returns a string representation of this object; useful for testing and debugging.EbsConfigurationwithEbsBlockDeviceConfigs(EbsBlockDeviceConfig... ebsBlockDeviceConfigs)NOTE: This method appends the values to the existing list (if any).EbsConfigurationwithEbsBlockDeviceConfigs(Collection<EbsBlockDeviceConfig> ebsBlockDeviceConfigs)EbsConfigurationwithEbsOptimized(Boolean ebsOptimized)
-
-
-
Method Detail
-
getEbsBlockDeviceConfigs
public List<EbsBlockDeviceConfig> getEbsBlockDeviceConfigs()
- Returns:
-
setEbsBlockDeviceConfigs
public void setEbsBlockDeviceConfigs(Collection<EbsBlockDeviceConfig> ebsBlockDeviceConfigs)
- Parameters:
ebsBlockDeviceConfigs-
-
withEbsBlockDeviceConfigs
public EbsConfiguration withEbsBlockDeviceConfigs(EbsBlockDeviceConfig... ebsBlockDeviceConfigs)
NOTE: This method appends the values to the existing list (if any). Use
setEbsBlockDeviceConfigs(java.util.Collection)orwithEbsBlockDeviceConfigs(java.util.Collection)if you want to override the existing values.- Parameters:
ebsBlockDeviceConfigs-- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withEbsBlockDeviceConfigs
public EbsConfiguration withEbsBlockDeviceConfigs(Collection<EbsBlockDeviceConfig> ebsBlockDeviceConfigs)
- Parameters:
ebsBlockDeviceConfigs-- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setEbsOptimized
public void setEbsOptimized(Boolean ebsOptimized)
- Parameters:
ebsOptimized-
-
getEbsOptimized
public Boolean getEbsOptimized()
- Returns:
-
withEbsOptimized
public EbsConfiguration withEbsOptimized(Boolean ebsOptimized)
- Parameters:
ebsOptimized-- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
isEbsOptimized
public Boolean isEbsOptimized()
- Returns:
-
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 EbsConfiguration clone()
-
-