Amazon CodeDeploy · JSON Structure

Amazon Codedeploy Get Deployment Response Structure

GetDeploymentResponse schema from Amazon CodeDeploy

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

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

Properties

deploymentInfo

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-get-deployment-response-structure.json",
  "name": "GetDeploymentResponse",
  "description": "GetDeploymentResponse schema from Amazon CodeDeploy",
  "type": "object",
  "properties": {
    "deploymentInfo": {
      "type": "object",
      "properties": {
        "deploymentId": {
          "type": "string"
        },
        "applicationName": {
          "type": "string"
        },
        "deploymentGroupName": {
          "type": "string"
        },
        "status": {
          "type": "string",
          "enum": [
            "Created",
            "Queued",
            "InProgress",
            "Baking",
            "Succeeded",
            "Failed",
            "Stopped",
            "Ready"
          ]
        },
        "createTime": {
          "type": "datetime"
        },
        "startTime": {
          "type": "datetime"
        },
        "completeTime": {
          "type": "datetime"
        },
        "description": {
          "type": "string"
        },
        "creator": {
          "type": "string"
        },
        "computePlatform": {
          "type": "string"
        }
      }
    }
  }
}