Class EBSOptions
- java.lang.Object
-
- software.amazon.awssdk.services.elasticsearch.model.EBSOptions
-
- All Implemented Interfaces:
Serializable
,SdkPojo
,ToCopyableBuilder<EBSOptions.Builder,EBSOptions>
@Generated("software.amazon.awssdk:codegen") public final class EBSOptions extends Object implements SdkPojo, Serializable, ToCopyableBuilder<EBSOptions.Builder,EBSOptions>
Options to enable, disable, and specify the properties of EBS storage volumes. For more information, see Configuring EBS-based Storage.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
EBSOptions.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EBSOptions.Builder
builder()
Boolean
ebsEnabled()
Specifies whether EBS-based storage is enabled.boolean
equals(Object obj)
boolean
equalsBySdkFields(Object obj)
<T> Optional<T>
getValueForField(String fieldName, Class<T> clazz)
int
hashCode()
Integer
iops()
Specifies the IOPS for Provisioned IOPS And GP3 EBS volume (SSD).List<SdkField<?>>
sdkFields()
static Class<? extends EBSOptions.Builder>
serializableBuilderClass()
Integer
throughput()
Specifies the Throughput for GP3 EBS volume (SSD).EBSOptions.Builder
toBuilder()
String
toString()
Returns a string representation of this object.Integer
volumeSize()
Integer to specify the size of an EBS volume.VolumeType
volumeType()
Specifies the volume type for EBS-based storage.String
volumeTypeAsString()
Specifies the volume type for EBS-based storage.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
ebsEnabled
public final Boolean ebsEnabled()
Specifies whether EBS-based storage is enabled.
- Returns:
- Specifies whether EBS-based storage is enabled.
-
volumeType
public final VolumeType volumeType()
Specifies the volume type for EBS-based storage.
If the service returns an enum value that is not available in the current SDK version,
volumeType
will returnVolumeType.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available fromvolumeTypeAsString()
.- Returns:
- Specifies the volume type for EBS-based storage.
- See Also:
VolumeType
-
volumeTypeAsString
public final String volumeTypeAsString()
Specifies the volume type for EBS-based storage.
If the service returns an enum value that is not available in the current SDK version,
volumeType
will returnVolumeType.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available fromvolumeTypeAsString()
.- Returns:
- Specifies the volume type for EBS-based storage.
- See Also:
VolumeType
-
volumeSize
public final Integer volumeSize()
Integer to specify the size of an EBS volume.
- Returns:
- Integer to specify the size of an EBS volume.
-
iops
public final Integer iops()
Specifies the IOPS for Provisioned IOPS And GP3 EBS volume (SSD).
- Returns:
- Specifies the IOPS for Provisioned IOPS And GP3 EBS volume (SSD).
-
throughput
public final Integer throughput()
Specifies the Throughput for GP3 EBS volume (SSD).
- Returns:
- Specifies the Throughput for GP3 EBS volume (SSD).
-
toBuilder
public EBSOptions.Builder toBuilder()
- Specified by:
toBuilder
in interfaceToCopyableBuilder<EBSOptions.Builder,EBSOptions>
-
builder
public static EBSOptions.Builder builder()
-
serializableBuilderClass
public static Class<? extends EBSOptions.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFields
in interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
-