Amazon Panorama · Schema

JobResourceTags

Tags for a job.

CamerasComputer VisionEdge MLIndustrial IoT

Properties

Name Type Description
ResourceType object
Tags object
View JSON Schema on GitHub

JSON Schema

openapi-job-resource-tags-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-panorama/refs/heads/main/json-schema/openapi-job-resource-tags-schema.json",
  "title": "JobResourceTags",
  "description": "Tags for a job.",
  "type": "object",
  "properties": {
    "ResourceType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/JobResourceType"
        },
        {
          "description": "The job's type."
        }
      ]
    },
    "Tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagMap"
        },
        {
          "description": "The job's tags."
        }
      ]
    }
  },
  "required": [
    "ResourceType",
    "Tags"
  ]
}