AdditionalLimit

List of limits that are specific to a given InstanceType and for each of it's InstanceRole .

AnalyticsElasticsearchSearch

Properties

Name Type Description
LimitName object
LimitValues object
View JSON Schema on GitHub

JSON Schema

openapi-additional-limit-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-opensearch/refs/heads/main/json-schema/openapi-additional-limit-schema.json",
  "title": "AdditionalLimit",
  "description": " List of limits that are specific to a given InstanceType and for each of it's <code> <a>InstanceRole</a> </code> . ",
  "type": "object",
  "properties": {
    "LimitName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LimitName"
        },
        {
          "description": " Name of Additional Limit is specific to a given InstanceType and for each of it's <code> <a>InstanceRole</a> </code> etc. <br/> Attributes and their details: <br/> <ul> <li>MaximumNumberOfDataNodesSupported</li> This attribute will be present in Master node only to specify how much data nodes upto which given <code> <a>ESPartitionInstanceType</a> </code> can support as master node. <li>MaximumNumberOfDataNodesWithoutMasterNode</li> This attribute will be present in Data node only to specify how much data nodes of given <code> <a>ESPartitionInstanceType</a> </code> upto which you don't need any master nodes to govern them. </ul> "
        }
      ]
    },
    "LimitValues": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LimitValueList"
        },
        {
          "description": " Value for given <code> <a>AdditionalLimit$LimitName</a> </code> . "
        }
      ]
    }
  }
}