RetryCriteriaList

RetryCriteriaList schema

Device ManagementFleet ManagementIoTOTA Updates
View JSON Schema on GitHub

JSON Schema

iot-device-management-retry-criteria-list-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-retry-criteria-list-schema.json",
  "title": "RetryCriteriaList",
  "description": "RetryCriteriaList schema",
  "type": "array",
  "items": {
    "type": "object",
    "required": [
      "failureType",
      "numberOfRetries"
    ],
    "properties": {
      "failureType": {
        "allOf": [
          {
            "$ref": "#/components/schemas/RetryableFailureType"
          },
          {
            "description": "The type of job execution failures that can initiate a job retry."
          }
        ]
      },
      "numberOfRetries": {
        "allOf": [
          {
            "$ref": "#/components/schemas/NumberOfRetries"
          },
          {
            "description": "The number of retries allowed for a failure type for the job."
          }
        ]
      }
    },
    "description": "The criteria that determines how many retries are allowed for each failure type for a job."
  }
}