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.

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

Returns:

  • (String)


1065
1066
1067
1068
1069
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 1065

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

#limit_valuesArray<String>

Values for the ‘ StorageTypeLimit$LimitName ` .

Returns:

  • (Array<String>)


1065
1066
1067
1068
1069
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 1065

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