CancelJobResponse

CancelJobResponse schema

ComplianceIoTSecurityVulnerability Management

Properties

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

JSON Schema

iot-device-defender-cancel-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-cancel-job-response-schema.json",
  "title": "CancelJobResponse",
  "description": "CancelJobResponse 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 when it was created."
        }
      ]
    },
    "description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/JobDescription"
        },
        {
          "description": "A short text description of the job."
        }
      ]
    }
  }
}