Amazon CodeDeploy · JSON Structure

Amazon Codedeploy Auto Rollback Configuration Structure

Information about a configuration for automatically rolling back to a previous version of an application revision when a deployment is not completed successfully.

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

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

Properties

enabled events

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-auto-rollback-configuration-structure.json",
  "name": "AutoRollbackConfiguration",
  "description": "Information about a configuration for automatically rolling back to a previous version of an application revision when a deployment is not completed successfully.",
  "type": "object",
  "properties": {
    "enabled": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Boolean"
        },
        {
          "description": "Indicates whether a defined automatic rollback configuration is currently enabled."
        }
      ]
    },
    "events": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AutoRollbackEventsList"
        },
        {
          "description": "The event type or types that trigger a rollback."
        }
      ]
    }
  }
}