Amazon CodeDeploy · Schema

ContinueDeploymentInput

ContinueDeploymentInput schema from Amazon CodeDeploy

AmazonDeploymentDevOpsCI/CDRelease ManagementBlue/Green Deployment

Properties

Name Type Description
deploymentId object
deploymentWaitType object
View JSON Schema on GitHub

JSON Schema

amazon-codedeploy-continue-deployment-input-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-continue-deployment-input-schema.json",
  "title": "ContinueDeploymentInput",
  "description": "ContinueDeploymentInput schema from Amazon CodeDeploy",
  "type": "object",
  "properties": {
    "deploymentId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeploymentId"
        },
        {
          "description": " The unique ID of a blue/green deployment for which you want to start rerouting traffic to the replacement environment. "
        }
      ]
    },
    "deploymentWaitType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeploymentWaitType"
        },
        {
          "description": " The status of the deployment's waiting period. <code>READY_WAIT</code> indicates that the deployment is ready to start shifting traffic. <code>TERMINATION_WAIT</code> indicates that the traffic is shifted, but the original target is not terminated. "
        }
      ]
    }
  }
}