Amazon CodeDeploy · Schema

RelatedDeployments

Information about deployments related to the specified deployment.

AmazonDeploymentDevOpsCI/CDRelease ManagementBlue/Green Deployment

Properties

Name Type Description
autoUpdateOutdatedInstancesRootDeploymentId object
autoUpdateOutdatedInstancesDeploymentIds object
View JSON Schema on GitHub

JSON Schema

amazon-codedeploy-related-deployments-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-related-deployments-schema.json",
  "title": "RelatedDeployments",
  "description": "Information about deployments related to the specified deployment.",
  "type": "object",
  "properties": {
    "autoUpdateOutdatedInstancesRootDeploymentId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeploymentId"
        },
        {
          "description": "The deployment ID of the root deployment that triggered this deployment."
        }
      ]
    },
    "autoUpdateOutdatedInstancesDeploymentIds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeploymentsList"
        },
        {
          "description": "The deployment IDs of 'auto-update outdated instances' deployments triggered by this deployment."
        }
      ]
    }
  }
}