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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-elasticsearchservice/types.rb

Overview

Note:

When making an API call, you may pass EBSOptions data as a 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].

[1]: docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-createupdatedomains.html#es-createdomain-configure-ebs

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#ebs_enabledBoolean

Specifies whether EBS-based storage is enabled.

Returns:

  • (Boolean)


1573
1574
1575
1576
1577
1578
1579
1580
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 1573

class EBSOptions < Struct.new(
  :ebs_enabled,
  :volume_type,
  :volume_size,
  :iops)
  SENSITIVE = []
  include Aws::Structure
end

#iopsInteger

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

Returns:

  • (Integer)


1573
1574
1575
1576
1577
1578
1579
1580
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 1573

class EBSOptions < Struct.new(
  :ebs_enabled,
  :volume_type,
  :volume_size,
  :iops)
  SENSITIVE = []
  include Aws::Structure
end

#volume_sizeInteger

Integer to specify the size of an EBS volume.

Returns:

  • (Integer)


1573
1574
1575
1576
1577
1578
1579
1580
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 1573

class EBSOptions < Struct.new(
  :ebs_enabled,
  :volume_type,
  :volume_size,
  :iops)
  SENSITIVE = []
  include Aws::Structure
end

#volume_typeString

Specifies the volume type for EBS-based storage.

Returns:

  • (String)


1573
1574
1575
1576
1577
1578
1579
1580
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 1573

class EBSOptions < Struct.new(
  :ebs_enabled,
  :volume_type,
  :volume_size,
  :iops)
  SENSITIVE = []
  include Aws::Structure
end