Class: Aws::OpenSearchService::Types::EBSOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpenSearchService::Types::EBSOptions
- 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
-
#ebs_enabled ⇒ Boolean
Indicates whether EBS volumes are attached to data nodes in an OpenSearch Service domain.
-
#iops ⇒ Integer
Specifies the baseline input/output (I/O) performance of EBS volumes attached to data nodes.
-
#throughput ⇒ Integer
Specifies the throughput (in MiB/s) of the EBS volumes attached to data nodes.
-
#volume_size ⇒ Integer
Specifies the size (in GiB) of EBS volumes attached to data nodes.
-
#volume_type ⇒ String
Specifies the type of EBS volumes attached to data nodes.
Instance Attribute Details
#ebs_enabled ⇒ Boolean
Indicates whether EBS volumes are attached to data nodes in an OpenSearch Service domain.
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 |
#iops ⇒ Integer
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.
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 |
#throughput ⇒ Integer
Specifies the throughput (in MiB/s) of the EBS volumes attached to data nodes. Applicable only for the ‘gp3` volume type.
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_size ⇒ Integer
Specifies the size (in GiB) of EBS volumes attached to data nodes.
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_type ⇒ String
Specifies the type of EBS volumes attached to data nodes.
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 |