Amazon Comprehend · Schema

ListTagsForResourceResponse

ListTagsForResourceResponse schema

Machine LearningNatural Language ProcessingNLPText Analysis

Properties

Name Type Description
ResourceArn object
Tags object
View JSON Schema on GitHub

JSON Schema

openapi.yml-list-tags-for-resource-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-comprehend/refs/heads/main/json-schema/openapi.yml-list-tags-for-resource-response-schema.json",
  "title": "ListTagsForResourceResponse",
  "description": "ListTagsForResourceResponse schema",
  "type": "object",
  "properties": {
    "ResourceArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ComprehendArn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the given Amazon Comprehend resource you are querying."
        }
      ]
    },
    "Tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagList"
        },
        {
          "description": "Tags associated with the Amazon Comprehend resource being queried. A tag is a key-value pair that adds as a metadata to a resource used by Amazon Comprehend. For example, a tag with \"Sales\" as the key might be added to a resource to indicate its use by the sales department. "
        }
      ]
    }
  }
}