IoTJobRateIncreaseCriteria

Contains information about criteria to meet before a job increases its rollout rate. Specify either numberOfNotifiedThings or numberOfSucceededThings.

Edge ComputingIoTLambdaMachine LearningReal-Time Processing

Properties

Name Type Description
numberOfNotifiedThings object
numberOfSucceededThings object
View JSON Schema on GitHub

JSON Schema

iot-greengrass-io-t-job-rate-increase-criteria-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-greengrass/refs/heads/main/json-schema/iot-greengrass-io-t-job-rate-increase-criteria-schema.json",
  "title": "IoTJobRateIncreaseCriteria",
  "description": "Contains information about criteria to meet before a job increases its rollout rate. Specify either <code>numberOfNotifiedThings</code> or <code>numberOfSucceededThings</code>.",
  "type": "object",
  "properties": {
    "numberOfNotifiedThings": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IoTJobNumberOfThings"
        },
        {
          "description": "The number of devices to receive the job notification before the rollout rate increases."
        }
      ]
    },
    "numberOfSucceededThings": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IoTJobNumberOfThings"
        },
        {
          "description": "The number of devices to successfully run the configuration job before the rollout rate increases."
        }
      ]
    }
  }
}