{ "$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-effective-deployment-schema.json", "title": "EffectiveDeployment", "description": "Contains information about a deployment job that IoT Greengrass sends to a Greengrass core device.", "type": "object", "properties": { "deploymentId": { "allOf": [ { "$ref": "#/components/schemas/DeploymentID" }, { "description": "The ID of the deployment." } ] }, "deploymentName": { "allOf": [ { "$ref": "#/components/schemas/DeploymentName" }, { "description": "The name of the deployment." } ] }, "iotJobId": { "allOf": [ { "$ref": "#/components/schemas/IoTJobId" }, { "description": "The ID of the IoT job that applies the deployment to target devices." } ] }, "iotJobArn": { "allOf": [ { "$ref": "#/components/schemas/IoTJobARN" }, { "description": "The ARN of the IoT job that applies the deployment to target devices." } ] }, "description": { "allOf": [ { "$ref": "#/components/schemas/Description" }, { "description": "The description of the deployment job." } ] }, "targetArn": { "allOf": [ { "$ref": "#/components/schemas/TargetARN" }, { "description": "The ARN of the target IoT thing or thing group." } ] }, "coreDeviceExecutionStatus": { "allOf": [ { "$ref": "#/components/schemas/EffectiveDeploymentExecutionStatus" }, { "description": "
The status of the deployment job on the Greengrass core device.
IN_PROGRESS \u2013 The deployment job is running.
QUEUED \u2013 The deployment job is in the job queue and waiting to run.
FAILED \u2013 The deployment failed. For more information, see the statusDetails field.
COMPLETED \u2013 The deployment to an IoT thing was completed successfully.
TIMED_OUT \u2013 The deployment didn't complete in the allotted time.
CANCELED \u2013 The deployment was canceled by the user.
REJECTED \u2013 The deployment was rejected. For more information, see the statusDetails field.
SUCCEEDED \u2013 The deployment to an IoT thing group was completed successfully.