Class: Aws::OpenSearchService::Types::StorageTypeLimit
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpenSearchService::Types::StorageTypeLimit
- Defined in:
- gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb
Overview
Limits that are applicable for the given Amazon OpenSearch Service storage type.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#limit_name ⇒ String
Name of storage limits that are applicable for the given storage type.
-
#limit_values ⇒ Array<String>
The limit values.
Instance Attribute Details
#limit_name ⇒ String
Name of storage limits that are applicable for the given storage
type. If StorageType
is ebs
, the following options are
available:
MinimumVolumeSize - Minimum volume size that is available for the given storage type. Can be empty if not applicable.
MaximumVolumeSize - Maximum volume size that is available for the given storage type. Can be empty if not applicable.
MaximumIops - Maximum amount of IOPS that is available for the given the storage type. Can be empty if not applicable.
MinimumIops - Minimum amount of IOPS that is available for the given the storage type. Can be empty if not applicable.
MaximumThroughput - Maximum amount of throughput that is available for the given the storage type. Can be empty if not applicable.
MinimumThroughput - Minimum amount of throughput that is available for the given the storage type. Can be empty if not applicable.
6869 6870 6871 6872 6873 6874 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 6869 class StorageTypeLimit < Struct.new( :limit_name, :limit_values) SENSITIVE = [] include Aws::Structure end |
#limit_values ⇒ Array<String>
The limit values.
6869 6870 6871 6872 6873 6874 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 6869 class StorageTypeLimit < Struct.new( :limit_name, :limit_values) SENSITIVE = [] include Aws::Structure end |