ColdStorageOptions

Specifies the configuration for cold storage options such as enabled

AnalyticsElasticsearchSearch

Properties

Name Type Description
Enabled object
View JSON Schema on GitHub

JSON Schema

openapi-cold-storage-options-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-cold-storage-options-schema.json",
  "title": "ColdStorageOptions",
  "description": "Specifies the configuration for cold storage options such as enabled",
  "type": "object",
  "properties": {
    "Enabled": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Boolean"
        },
        {
          "description": "Enable cold storage option. Accepted values true or false"
        }
      ]
    }
  },
  "required": [
    "Enabled"
  ]
}