DeploymentIoTJobConfiguration

Contains information about an IoT job configuration.

Edge ComputingIoTLambdaMachine LearningReal-Time Processing

Properties

Name Type Description
jobExecutionsRolloutConfig object
abortConfig object
timeoutConfig object
View JSON Schema on GitHub

JSON Schema

iot-greengrass-deployment-io-t-job-configuration-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-deployment-io-t-job-configuration-schema.json",
  "title": "DeploymentIoTJobConfiguration",
  "description": "Contains information about an IoT job configuration.",
  "type": "object",
  "properties": {
    "jobExecutionsRolloutConfig": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IoTJobExecutionsRolloutConfig"
        },
        {
          "description": "The rollout configuration for the job. This configuration defines the rate at which the job rolls out to the fleet of target devices."
        }
      ]
    },
    "abortConfig": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IoTJobAbortConfig"
        },
        {
          "description": "The stop configuration for the job. This configuration defines when and how to stop a job rollout."
        }
      ]
    },
    "timeoutConfig": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IoTJobTimeoutConfig"
        },
        {
          "description": "The timeout configuration for the job. This configuration defines the amount of time each device has to complete the job."
        }
      ]
    }
  }
}