{ "$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." } ] } } }