Amazon Comprehend · Schema

UntagResourceRequest

UntagResourceRequest schema

Machine LearningNatural Language ProcessingNLPText Analysis

Properties

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

JSON Schema

openapi.yml-untag-resource-request-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-untag-resource-request-schema.json",
  "title": "UntagResourceRequest",
  "description": "UntagResourceRequest schema",
  "type": "object",
  "properties": {
    "ResourceArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ComprehendArn"
        },
        {
          "description": " The Amazon Resource Name (ARN) of the given Amazon Comprehend resource from which you want to remove the tags. "
        }
      ]
    },
    "TagKeys": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagKeyList"
        },
        {
          "description": "The initial part of a key-value pair that forms a tag being removed from a given resource. For example, a tag with \"Sales\" as the key might be added to a resource to indicate its use by the sales department. Keys must be unique and cannot be duplicated for a particular resource. "
        }
      ]
    }
  },
  "required": [
    "ResourceArn",
    "TagKeys"
  ]
}