IoTJobExecutionsRolloutConfig

Contains information about the rollout configuration for a job. This configuration defines the rate at which the job deploys a configuration to a fleet of target devices.

Edge ComputingIoTLambdaMachine LearningReal-Time Processing

Properties

Name Type Description
exponentialRate object
maximumPerMinute object
View JSON Schema on GitHub

JSON Schema

iot-greengrass-io-t-job-executions-rollout-config-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-executions-rollout-config-schema.json",
  "title": "IoTJobExecutionsRolloutConfig",
  "description": "Contains information about the rollout configuration for a job. This configuration defines the rate at which the job deploys a configuration to a fleet of target devices.",
  "type": "object",
  "properties": {
    "exponentialRate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IoTJobExponentialRolloutRate"
        },
        {
          "description": "The exponential rate to increase the job rollout rate."
        }
      ]
    },
    "maximumPerMinute": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IoTJobMaxExecutionsPerMin"
        },
        {
          "description": "The maximum number of devices that receive a pending job notification, per minute."
        }
      ]
    }
  }
}