TagResourceRequest

TagResourceRequest schema

3D VisualizationDigital TwinIndustrial IoTIoT

Properties

Name Type Description
resourceARN object
tags object
View JSON Schema on GitHub

JSON Schema

iot-twinmaker-tag-resource-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-twinmaker/refs/heads/main/json-schema/iot-twinmaker-tag-resource-request-schema.json",
  "title": "TagResourceRequest",
  "description": "TagResourceRequest schema",
  "type": "object",
  "properties": {
    "resourceARN": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TwinMakerArn"
        },
        {
          "description": "The ARN of the resource."
        }
      ]
    },
    "tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagMap"
        },
        {
          "description": "Metadata to add to this resource."
        }
      ]
    }
  },
  "required": [
    "resourceARN",
    "tags"
  ]
}