Amazon Panorama · Schema

CreateJobForDevicesRequest

CreateJobForDevicesRequest schema from Amazon Panorama

CamerasComputer VisionEdge MLIndustrial IoT

Properties

Name Type Description
DeviceIds object
DeviceJobConfig object
JobType object
View JSON Schema on GitHub

JSON Schema

openapi-create-job-for-devices-request-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-create-job-for-devices-request-schema.json",
  "title": "CreateJobForDevicesRequest",
  "description": "CreateJobForDevicesRequest schema from Amazon Panorama",
  "type": "object",
  "properties": {
    "DeviceIds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeviceIdList"
        },
        {
          "description": "ID of target device."
        }
      ]
    },
    "DeviceJobConfig": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeviceJobConfig"
        },
        {
          "description": "Configuration settings for a software update job."
        }
      ]
    },
    "JobType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/JobType"
        },
        {
          "description": "The type of job to run."
        }
      ]
    }
  },
  "required": [
    "DeviceIds",
    "JobType"
  ]
}