{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codedeploy/refs/heads/main/json-structure/amazon-codedeploy-last-deployment-info-structure.json", "name": "LastDeploymentInfo", "description": "Information about the most recent attempted or successful deployment to a deployment group.", "type": "object", "properties": { "deploymentId": { "allOf": [ { "$ref": "#/components/schemas/DeploymentId" }, { "description": " The unique ID of a deployment. " } ] }, "status": { "allOf": [ { "$ref": "#/components/schemas/DeploymentStatus" }, { "description": "The status of the most recent deployment." } ] }, "endTime": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": "A timestamp that indicates when the most recent deployment to the deployment group was complete." } ] }, "createTime": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": "A timestamp that indicates when the most recent deployment to the deployment group started." } ] } } }