AutoTuneOptionsOutput

Specifies the Auto-Tune options: the Auto-Tune desired state for the domain and list of maintenance schedules.

AnalyticsElasticsearchSearch

Properties

Name Type Description
State object
ErrorMessage object
View JSON Schema on GitHub

JSON Schema

openapi-auto-tune-options-output-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-auto-tune-options-output-schema.json",
  "title": "AutoTuneOptionsOutput",
  "description": "Specifies the Auto-Tune options: the Auto-Tune desired state for the domain and list of maintenance schedules.",
  "type": "object",
  "properties": {
    "State": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AutoTuneState"
        },
        {
          "description": "Specifies the <code>AutoTuneState</code> for the Elasticsearch domain."
        }
      ]
    },
    "ErrorMessage": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "Specifies the error message while enabling or disabling the Auto-Tune."
        }
      ]
    }
  }
}