Class: Aws::OpenSearchService::Types::EBSOptions

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

Overview

Container for the parameters required to enable EBS-based storage for an OpenSearch Service domain.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#ebs_enabledBoolean

Indicates whether EBS volumes are attached to data nodes in an OpenSearch Service domain.

Returns:

  • (Boolean)


3744
3745
3746
3747
3748
3749
3750
3751
3752
# File 'lib/aws-sdk-opensearchservice/types.rb', line 3744

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

#iopsInteger

Specifies the baseline input/output (I/O) performance of EBS volumes attached to data nodes. Applicable only for the ‘gp3` and provisioned IOPS EBS volume types.

Returns:

  • (Integer)


3744
3745
3746
3747
3748
3749
3750
3751
3752
# File 'lib/aws-sdk-opensearchservice/types.rb', line 3744

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

#throughputInteger

Specifies the throughput (in MiB/s) of the EBS volumes attached to data nodes. Applicable only for the ‘gp3` volume type.

Returns:

  • (Integer)


3744
3745
3746
3747
3748
3749
3750
3751
3752
# File 'lib/aws-sdk-opensearchservice/types.rb', line 3744

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

#volume_sizeInteger

Specifies the size (in GiB) of EBS volumes attached to data nodes.

Returns:

  • (Integer)


3744
3745
3746
3747
3748
3749
3750
3751
3752
# File 'lib/aws-sdk-opensearchservice/types.rb', line 3744

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

#volume_typeString

Specifies the type of EBS volumes attached to data nodes.

Returns:

  • (String)


3744
3745
3746
3747
3748
3749
3750
3751
3752
# File 'lib/aws-sdk-opensearchservice/types.rb', line 3744

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