Amazon CodeDeploy · JSON Structure

Amazon Codedeploy Blue Green Deployment Configuration Structure

Information about blue/green deployment options for a deployment group.

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

BlueGreenDeploymentConfiguration is a JSON Structure definition published by Amazon CodeDeploy, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

terminateBlueInstancesOnDeploymentSuccess deploymentReadyOption greenFleetProvisioningOption

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-blue-green-deployment-configuration-structure.json",
  "name": "BlueGreenDeploymentConfiguration",
  "description": "Information about blue/green deployment options for a deployment group.",
  "type": "object",
  "properties": {
    "terminateBlueInstancesOnDeploymentSuccess": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BlueInstanceTerminationOption"
        },
        {
          "description": "Information about whether to terminate instances in the original fleet during a blue/green deployment."
        }
      ]
    },
    "deploymentReadyOption": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeploymentReadyOption"
        },
        {
          "description": "Information about the action to take when newly provisioned instances are ready to receive traffic in a blue/green deployment."
        }
      ]
    },
    "greenFleetProvisioningOption": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GreenFleetProvisioningOption"
        },
        {
          "description": "Information about how instances are provisioned for a replacement environment in a blue/green deployment."
        }
      ]
    }
  }
}