Amazon CodeDeploy · Schema

AutoRollbackConfiguration

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

AmazonDeploymentDevOpsCI/CDRelease ManagementBlue/Green Deployment

Properties

Name Type Description
enabled object
events object
View JSON Schema on GitHub

JSON Schema

amazon-codedeploy-auto-rollback-configuration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codedeploy/refs/heads/main/json-schema/amazon-codedeploy-auto-rollback-configuration-schema.json",
  "title": "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."
        }
      ]
    }
  }
}