Amazon X-Ray · Schema

UntagResourceRequest

UntagResourceRequest schema from Amazon X-Ray API

Application PerformanceDebuggingDistributed TracingMonitoringObservability

Properties

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

JSON Schema

xray-untag-resource-request-schema.json Raw ↑
{
  "type": "object",
  "required": [
    "ResourceARN",
    "TagKeys"
  ],
  "title": "UntagResourceRequest",
  "properties": {
    "ResourceARN": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AmazonResourceName"
        },
        {
          "description": "The Amazon Resource Number (ARN) of an X-Ray group or sampling rule."
        }
      ]
    },
    "TagKeys": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagKeyList"
        },
        {
          "description": "Keys for one or more tags that you want to remove from an X-Ray group or sampling rule."
        }
      ]
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-xray/refs/heads/main/json-schema/xray-untag-resource-request-schema.json",
  "description": "UntagResourceRequest schema from Amazon X-Ray API"
}