Amazon Detective · Schema

TagResourceRequest

Request to apply tags to a behavior graph

ForensicsInvestigationSecurity

Properties

Name Type Description
Tags object The tags to assign to the behavior graph.
View JSON Schema on GitHub

JSON Schema

amazon-detective-tag-resource-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-detective/refs/heads/main/json-schema/amazon-detective-tag-resource-request-schema.json",
  "title": "TagResourceRequest",
  "description": "Request to apply tags to a behavior graph",
  "type": "object",
  "properties": {
    "Tags": {
      "type": "object",
      "description": "The tags to assign to the behavior graph.",
      "additionalProperties": {
        "type": "string"
      }
    }
  },
  "required": [
    "Tags"
  ]
}