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)


4252
4253
4254
4255
4256
4257
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 4252

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

#limit_valuesArray<String>

Values for the StorageTypeLimit$LimitName .

Returns:

  • (Array<String>)


4252
4253
4254
4255
4256
4257
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 4252

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