Class: Aws::ElasticsearchService::Types::StorageTypeLimit

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-elasticsearchservice/types.rb

Overview

Limits that are applicable for given storage type.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#limit_nameString

Name of storage limits that are applicable for given storage type. If StorageType is ebs, following storage options are applicable

  1. MinimumVolumeSize
  2. MaximumVolumeSize
  3. MaximumIops
  4. MinimumIops
  5. MaximumThroughput
  6. MinimumThroughput

Returns:

  • (String)


4301
4302
4303
4304
4305
4306
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 4301

class StorageTypeLimit < Struct.new(
  :limit_name,
  :limit_values)
  SENSITIVE = []
  include Aws::Structure
end

#limit_valuesArray<String>

Values for the StorageTypeLimit$LimitName .

Returns:

  • (Array<String>)


4301
4302
4303
4304
4305
4306
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 4301

class StorageTypeLimit < Struct.new(
  :limit_name,
  :limit_values)
  SENSITIVE = []
  include Aws::Structure
end