Amazon IoT Events · Schema

TagResourceRequest

TagResourceRequest schema

Event DetectionIoTState MachineAutomation

Properties

Name Type Description
tags object
View JSON Schema on GitHub

JSON Schema

iot-events-tag-resource-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-events/refs/heads/main/json-schema/iot-events-tag-resource-request-schema.json",
  "title": "TagResourceRequest",
  "description": "TagResourceRequest schema",
  "type": "object",
  "properties": {
    "tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Tags"
        },
        {
          "description": "The new or modified tags for the resource."
        }
      ]
    }
  },
  "required": [
    "tags"
  ]
}