MaintenanceWindow

An optional configuration within the SchedulingConfig to setup a recurring maintenance window with a predetermined start time and duration for the rollout of a job document to all devices in a target group for a job.

Device ManagementFleet ManagementIoTOTA Updates

Properties

Name Type Description
startTime object
durationInMinutes object
View JSON Schema on GitHub

JSON Schema

iot-device-management-maintenance-window-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-device-management/refs/heads/main/json-schema/iot-device-management-maintenance-window-schema.json",
  "title": "MaintenanceWindow",
  "description": "An optional configuration within the <code>SchedulingConfig</code> to setup a recurring maintenance window with a predetermined start time and duration for the rollout of a job document to all devices in a target group for a job.",
  "type": "object",
  "properties": {
    "startTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CronExpression"
        },
        {
          "description": "Displays the start time of the next maintenance window."
        }
      ]
    },
    "durationInMinutes": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DurationInMinutes"
        },
        {
          "description": "Displays the duration of the next maintenance window."
        }
      ]
    }
  },
  "required": [
    "startTime",
    "durationInMinutes"
  ]
}