Class: Aws::OpenSearchService::Types::AdditionalLimit

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb

Overview

List of limits that are specific to a given instance type.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#limit_nameString

  • MaximumNumberOfDataNodesSupported - This attribute only applies to master nodes and specifies the maximum number of data nodes of a given instance type a master node can support.

  • MaximumNumberOfDataNodesWithoutMasterNode - This attribute only applies to data nodes and specifies the maximum number of data nodes of a given instance type can exist without a master node governing them.

Returns:

  • (String)


182
183
184
185
186
187
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 182

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

#limit_valuesArray<String>

The values of the additional instance type limits.

Returns:

  • (Array<String>)


182
183
184
185
186
187
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 182

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