Amazon CodeDeploy · JSON Structure

Amazon Codedeploy Continue Deployment Input Structure

ContinueDeploymentInput schema from Amazon CodeDeploy

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

ContinueDeploymentInput 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

deploymentId deploymentWaitType

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-continue-deployment-input-structure.json",
  "name": "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. "
        }
      ]
    }
  }
}