Class: Aws::OpenSearchService::Types::EBSOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpenSearchService::Types::EBSOptions
- Defined in:
- gems/aws-sdk-opensearchservice/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.
3899 3900 3901 3902 3903 3904 3905 3906 3907 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 3899 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.
3899 3900 3901 3902 3903 3904 3905 3906 3907 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 3899 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.
3899 3900 3901 3902 3903 3904 3905 3906 3907 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 3899 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.
3899 3900 3901 3902 3903 3904 3905 3906 3907 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 3899 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.
3899 3900 3901 3902 3903 3904 3905 3906 3907 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 3899 class EBSOptions < Struct.new( :ebs_enabled, :volume_type, :volume_size, :iops, :throughput) SENSITIVE = [] include Aws::Structure end |