AdvancedOptionsStatus

Status of the advanced options for the specified Elasticsearch domain. Currently, the following advanced options are available:

For more information, see Configuring Advanced Options.

AnalyticsElasticsearchSearch

Properties

Name Type Description
Options object
Status object
View JSON Schema on GitHub

JSON Schema

openapi-advanced-options-status-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-advanced-options-status-schema.json",
  "title": "AdvancedOptionsStatus",
  "description": "<p> Status of the advanced options for the specified Elasticsearch domain. Currently, the following advanced options are available:</p> <ul> <li>Option to allow references to indices in an HTTP request body. Must be <code>false</code> when configuring access to individual sub-resources. By default, the value is <code>true</code>. See <a href=\"http://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-createupdatedomains.html#es-createdomain-configure-advanced-options\" target=\"_blank\">Configuration Advanced Options</a> for more information.</li> <li>Option to specify the percentage of heap space that is allocated to field data. By default, this setting is unbounded.</li> </ul> <p>For more information, see <a href=\"http://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-createupdatedomains.html#es-createdomain-configure-advanced-options\">Configuring Advanced Options</a>.</p>",
  "type": "object",
  "properties": {
    "Options": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AdvancedOptions"
        },
        {
          "description": " Specifies the status of advanced options for the specified Elasticsearch domain."
        }
      ]
    },
    "Status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OptionStatus"
        },
        {
          "description": " Specifies the status of <code>OptionStatus</code> for advanced options for the specified Elasticsearch domain."
        }
      ]
    }
  },
  "required": [
    "Options",
    "Status"
  ]
}