{ "$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-deployment-ready-option-schema.json", "title": "DeploymentReadyOption", "description": "Information about how traffic is rerouted to instances in a replacement environment in a blue/green deployment.", "type": "object", "properties": { "actionOnTimeout": { "allOf": [ { "$ref": "#/components/schemas/DeploymentReadyAction" }, { "description": "

Information about when to reroute traffic from an original environment to a replacement environment in a blue/green deployment.

" } ] }, "waitTimeInMinutes": { "allOf": [ { "$ref": "#/components/schemas/Duration" }, { "description": "The number of minutes to wait before the status of a blue/green deployment is changed to Stopped if rerouting is not started manually. Applies only to the STOP_DEPLOYMENT option for actionOnTimeout." } ] } } }