Amazon IoT Core · JSON Structure

Iot Core Retry Criteria List Structure

RetryCriteriaList schema

Type: array Properties: 0
Device ManagementIoTMQTTMessage Routing

RetryCriteriaList is a JSON Structure definition published by Amazon IoT Core. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-core/refs/heads/main/json-structure/iot-core-retry-criteria-list-structure.json",
  "name": "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."
  }
}