AddTagsRequest

Container for the parameters to the AddTags operation. Specify the tags that you want to attach to the Elasticsearch domain.

AnalyticsElasticsearchSearch

Properties

Name Type Description
ARN object
TagList object
View JSON Schema on GitHub

JSON Schema

openapi-add-tags-request-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-add-tags-request-schema.json",
  "title": "AddTagsRequest",
  "description": "Container for the parameters to the <code><a>AddTags</a></code> operation. Specify the tags that you want to attach to the Elasticsearch domain.",
  "type": "object",
  "properties": {
    "ARN": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ARN"
        },
        {
          "description": " Specify the <code>ARN</code> for which you want to add the tags."
        }
      ]
    },
    "TagList": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagList"
        },
        {
          "description": " List of <code>Tag</code> that need to be added for the Elasticsearch domain. "
        }
      ]
    }
  },
  "required": [
    "ARN",
    "TagList"
  ]
}