Amazon IoT Core · Schema

CreateOTAUpdateResponse

CreateOTAUpdateResponse schema

Device ManagementIoTMQTTMessage Routing

Properties

Name Type Description
otaUpdateId object
awsIotJobId object
otaUpdateArn object
awsIotJobArn object
otaUpdateStatus object
View JSON Schema on GitHub

JSON Schema

iot-core-create-o-t-a-update-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-core/refs/heads/main/json-schema/iot-core-create-o-t-a-update-response-schema.json",
  "title": "CreateOTAUpdateResponse",
  "description": "CreateOTAUpdateResponse schema",
  "type": "object",
  "properties": {
    "otaUpdateId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OTAUpdateId"
        },
        {
          "description": "The OTA update ID."
        }
      ]
    },
    "awsIotJobId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AwsIotJobId"
        },
        {
          "description": "The IoT job ID associated with the OTA update."
        }
      ]
    },
    "otaUpdateArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OTAUpdateArn"
        },
        {
          "description": "The OTA update ARN."
        }
      ]
    },
    "awsIotJobArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AwsIotJobArn"
        },
        {
          "description": "The IoT job ARN associated with the OTA update."
        }
      ]
    },
    "otaUpdateStatus": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OTAUpdateStatus"
        },
        {
          "description": "The OTA update status."
        }
      ]
    }
  }
}