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)


4086
4087
4088
4089
4090
4091
4092
4093
4094
# File 'lib/aws-sdk-opensearchservice/types.rb', line 4086

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)


4086
4087
4088
4089
4090
4091
4092
4093
4094
# File 'lib/aws-sdk-opensearchservice/types.rb', line 4086

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)


4086
4087
4088
4089
4090
4091
4092
4093
4094
# File 'lib/aws-sdk-opensearchservice/types.rb', line 4086

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)


4086
4087
4088
4089
4090
4091
4092
4093
4094
# File 'lib/aws-sdk-opensearchservice/types.rb', line 4086

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)


4086
4087
4088
4089
4090
4091
4092
4093
4094
# File 'lib/aws-sdk-opensearchservice/types.rb', line 4086

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