Amazon CodeDeploy · JSON Structure

Amazon Codedeploy Deployment Overview Structure

Information about the deployment status of the instances in the deployment.

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

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

Properties

Pending InProgress Succeeded Failed Skipped Ready

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-deployment-overview-structure.json",
  "name": "DeploymentOverview",
  "description": "Information about the deployment status of the instances in the deployment.",
  "type": "object",
  "properties": {
    "Pending": {
      "allOf": [
        {
          "$ref": "#/components/schemas/InstanceCount"
        },
        {
          "description": "The number of instances in the deployment in a pending state."
        }
      ]
    },
    "InProgress": {
      "allOf": [
        {
          "$ref": "#/components/schemas/InstanceCount"
        },
        {
          "description": "The number of instances in which the deployment is in progress."
        }
      ]
    },
    "Succeeded": {
      "allOf": [
        {
          "$ref": "#/components/schemas/InstanceCount"
        },
        {
          "description": "The number of instances in the deployment to which revisions have been successfully deployed."
        }
      ]
    },
    "Failed": {
      "allOf": [
        {
          "$ref": "#/components/schemas/InstanceCount"
        },
        {
          "description": "The number of instances in the deployment in a failed state."
        }
      ]
    },
    "Skipped": {
      "allOf": [
        {
          "$ref": "#/components/schemas/InstanceCount"
        },
        {
          "description": "The number of instances in the deployment in a skipped state."
        }
      ]
    },
    "Ready": {
      "allOf": [
        {
          "$ref": "#/components/schemas/InstanceCount"
        },
        {
          "description": "The number of instances in a replacement environment ready to receive traffic in a blue/green deployment."
        }
      ]
    }
  }
}