You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::ElasticsearchService::Types::EBSOptions

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing EBSOptions as input to an Aws::Client method, you can use a vanilla Hash:

{
  ebs_enabled: false,
  volume_type: "standard", # accepts standard, gp2, io1
  volume_size: 1,
  iops: 1,
}

Options to enable, disable, and specify the properties of EBS storage volumes. For more information, see Configuring EBS-based Storage.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#ebs_enabledBoolean

Specifies whether EBS-based storage is enabled.

Returns:

  • (Boolean)

    Specifies whether EBS-based storage is enabled.

#iopsInteger

Specifies the IOPD for a Provisioned IOPS EBS volume (SSD).

Returns:

  • (Integer)

    Specifies the IOPD for a Provisioned IOPS EBS volume (SSD).

#volume_sizeInteger

Integer to specify the size of an EBS volume.

Returns:

  • (Integer)

    Integer to specify the size of an EBS volume.

#volume_typeString

Specifies the volume type for EBS-based storage.

Possible values:

  • standard
  • gp2
  • io1

Returns:

  • (String)

    Specifies the volume type for EBS-based storage.