Amazon CodeDeploy · JSON Structure

Amazon Codedeploy Last Deployment Info Structure

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

Type: object Properties: 4
AmazonDeploymentDevOpsCI/CDRelease ManagementBlue/Green Deployment

LastDeploymentInfo is a JSON Structure definition published by Amazon CodeDeploy, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

deploymentId status endTime createTime

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$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."
        }
      ]
    }
  }
}