Class: Aws::ElasticsearchService::Types::EBSOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticsearchService::Types::EBSOptions
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticsearchservice/types.rb
Overview
Options to enable, disable, and specify the properties of EBS storage volumes. For more information, see [ Configuring EBS-based Storage].
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ebs_enabled ⇒ Boolean
Specifies whether EBS-based storage is enabled.
-
#iops ⇒ Integer
Specifies the IOPS for Provisioned IOPS And GP3 EBS volume (SSD).
-
#throughput ⇒ Integer
Specifies the Throughput for GP3 EBS volume (SSD).
-
#volume_size ⇒ Integer
Integer to specify the size of an EBS volume.
-
#volume_type ⇒ String
Specifies the volume type for EBS-based storage.
Instance Attribute Details
#ebs_enabled ⇒ Boolean
Specifies whether EBS-based storage is enabled.
1931 1932 1933 1934 1935 1936 1937 1938 1939 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 1931 class EBSOptions < Struct.new( :ebs_enabled, :volume_type, :volume_size, :iops, :throughput) SENSITIVE = [] include Aws::Structure end |
#iops ⇒ Integer
Specifies the IOPS for Provisioned IOPS And GP3 EBS volume (SSD).
1931 1932 1933 1934 1935 1936 1937 1938 1939 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 1931 class EBSOptions < Struct.new( :ebs_enabled, :volume_type, :volume_size, :iops, :throughput) SENSITIVE = [] include Aws::Structure end |
#throughput ⇒ Integer
Specifies the Throughput for GP3 EBS volume (SSD).
1931 1932 1933 1934 1935 1936 1937 1938 1939 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 1931 class EBSOptions < Struct.new( :ebs_enabled, :volume_type, :volume_size, :iops, :throughput) SENSITIVE = [] include Aws::Structure end |
#volume_size ⇒ Integer
Integer to specify the size of an EBS volume.
1931 1932 1933 1934 1935 1936 1937 1938 1939 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 1931 class EBSOptions < Struct.new( :ebs_enabled, :volume_type, :volume_size, :iops, :throughput) SENSITIVE = [] include Aws::Structure end |
#volume_type ⇒ String
Specifies the volume type for EBS-based storage.
1931 1932 1933 1934 1935 1936 1937 1938 1939 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 1931 class EBSOptions < Struct.new( :ebs_enabled, :volume_type, :volume_size, :iops, :throughput) SENSITIVE = [] include Aws::Structure end |