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
Note:
When making an API call, you may pass EBSOptions data as a hash:
{
ebs_enabled: false,
volume_type: "standard", # accepts standard, gp2, io1, gp3
volume_size: 1,
iops: 1,
throughput: 1,
}
Options to enable, disable, and specify the properties of EBS storage volumes.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ebs_enabled ⇒ Boolean
Whether EBS-based storage is enabled.
-
#iops ⇒ Integer
The IOPS for Provisioned IOPS And GP3 EBS volume (SSD).
-
#throughput ⇒ Integer
The Throughput for GP3 EBS volume (SSD).
-
#volume_size ⇒ Integer
Integer to specify the size of an EBS volume.
-
#volume_type ⇒ String
The volume type for EBS-based storage.
Instance Attribute Details
#ebs_enabled ⇒ Boolean
Whether EBS-based storage is enabled.
2775 2776 2777 2778 2779 2780 2781 2782 2783 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 2775 class EBSOptions < Struct.new( :ebs_enabled, :volume_type, :volume_size, :iops, :throughput) SENSITIVE = [] include Aws::Structure end |
#iops ⇒ Integer
The IOPS for Provisioned IOPS And GP3 EBS volume (SSD).
2775 2776 2777 2778 2779 2780 2781 2782 2783 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 2775 class EBSOptions < Struct.new( :ebs_enabled, :volume_type, :volume_size, :iops, :throughput) SENSITIVE = [] include Aws::Structure end |
#throughput ⇒ Integer
The Throughput for GP3 EBS volume (SSD).
2775 2776 2777 2778 2779 2780 2781 2782 2783 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 2775 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.
2775 2776 2777 2778 2779 2780 2781 2782 2783 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 2775 class EBSOptions < Struct.new( :ebs_enabled, :volume_type, :volume_size, :iops, :throughput) SENSITIVE = [] include Aws::Structure end |
#volume_type ⇒ String
The volume type for EBS-based storage.
2775 2776 2777 2778 2779 2780 2781 2782 2783 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 2775 class EBSOptions < Struct.new( :ebs_enabled, :volume_type, :volume_size, :iops, :throughput) SENSITIVE = [] include Aws::Structure end |