{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-opensearch/refs/heads/main/json-schema/openapi-update-elasticsearch-domain-config-response-schema.json", "title": "UpdateElasticsearchDomainConfigResponse", "description": "The result of an UpdateElasticsearchDomain request. Contains the status of the Elasticsearch domain being updated.", "type": "object", "properties": { "DomainConfig": { "allOf": [ { "$ref": "#/components/schemas/ElasticsearchDomainConfig" }, { "description": "The status of the updated Elasticsearch domain. " } ] }, "DryRunResults": { "allOf": [ { "$ref": "#/components/schemas/DryRunResults" }, { "description": "Contains result of DryRun. " } ] } }, "required": [ "DomainConfig" ] }