Amazon CodeDeploy · Schema

LastDeploymentInfo

Information about the most recent attempted or successful deployment to a deployment group.

AmazonDeploymentDevOpsCI/CDRelease ManagementBlue/Green Deployment

Properties

Name Type Description
deploymentId object
status object
endTime object
createTime object
View JSON Schema on GitHub

JSON Schema

amazon-codedeploy-last-deployment-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codedeploy/refs/heads/main/json-schema/amazon-codedeploy-last-deployment-info-schema.json",
  "title": "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."
        }
      ]
    }
  }
}