CreateJobResponse

CreateJobResponse schema

ComplianceIoTSecurityVulnerability Management

Properties

Name Type Description
jobArn object
jobId object
description object
View JSON Schema on GitHub

JSON Schema

iot-device-defender-create-job-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-device-defender/refs/heads/main/json-schema/iot-device-defender-create-job-response-schema.json",
  "title": "CreateJobResponse",
  "description": "CreateJobResponse schema",
  "type": "object",
  "properties": {
    "jobArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/JobArn"
        },
        {
          "description": "The job ARN."
        }
      ]
    },
    "jobId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/JobId"
        },
        {
          "description": "The unique identifier you assigned to this job."
        }
      ]
    },
    "description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/JobDescription"
        },
        {
          "description": "The job description."
        }
      ]
    }
  }
}