Amazon CodeDeploy · JSON Structure

Amazon Codedeploy Rollback Info Structure

Information about a deployment rollback.

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

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

Properties

rollbackDeploymentId rollbackTriggeringDeploymentId rollbackMessage

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-rollback-info-structure.json",
  "name": "RollbackInfo",
  "description": "Information about a deployment rollback.",
  "type": "object",
  "properties": {
    "rollbackDeploymentId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeploymentId"
        },
        {
          "description": "The ID of the deployment rollback."
        }
      ]
    },
    "rollbackTriggeringDeploymentId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeploymentId"
        },
        {
          "description": "The deployment ID of the deployment that was underway and triggered a rollback deployment because it failed or was stopped."
        }
      ]
    },
    "rollbackMessage": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Description"
        },
        {
          "description": "Information that describes the status of a deployment rollback (for example, whether the deployment can't be rolled back, is in progress, failed, or succeeded). "
        }
      ]
    }
  }
}