Amazon Glue · Schema

UntagResourceRequest

UntagResourceRequest schema from Amazon Glue API

AnalyticsData CatalogData IntegrationData PipelineETLServerless

Properties

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

JSON Schema

glue-untag-resource-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue/refs/heads/main/json-schema/glue-untag-resource-request-schema.json",
  "title": "UntagResourceRequest",
  "description": "UntagResourceRequest schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "ResourceArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GlueResourceArn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the resource from which to remove the tags."
        }
      ]
    },
    "TagsToRemove": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagKeysList"
        },
        {
          "description": "Tags to remove from this resource."
        }
      ]
    }
  },
  "required": [
    "ResourceArn",
    "TagsToRemove"
  ]
}