Amazon Glue · JSON Structure

Glue Tag Resource Request Structure

TagResourceRequest schema from Amazon Glue API

Type: object Properties: 2 Required: 2
AnalyticsData CatalogData IntegrationData PipelineETLServerless

TagResourceRequest is a JSON Structure definition published by Amazon Glue, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

ResourceArn TagsToAdd

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue/refs/heads/main/json-structure/glue-tag-resource-request-structure.json",
  "name": "TagResourceRequest",
  "description": "TagResourceRequest schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "ResourceArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GlueResourceArn"
        },
        {
          "description": "The ARN of the Glue resource to which to add the tags. For more information about Glue resource ARNs, see the <a href=\"https://docs.aws.amazon.com/glue/latest/dg/aws-glue-api-common.html#aws-glue-api-regex-aws-glue-arn-id\">Glue ARN string pattern</a>."
        }
      ]
    },
    "TagsToAdd": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagsMap"
        },
        {
          "description": "Tags to add to this resource."
        }
      ]
    }
  },
  "required": [
    "ResourceArn",
    "TagsToAdd"
  ]
}