Amazon CodeDeploy · Schema

BatchGetDeploymentTargetsOutput

BatchGetDeploymentTargetsOutput schema from Amazon CodeDeploy

AmazonDeploymentDevOpsCI/CDRelease ManagementBlue/Green Deployment

Properties

Name Type Description
deploymentTargets object
View JSON Schema on GitHub

JSON Schema

amazon-codedeploy-batch-get-deployment-targets-output-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-batch-get-deployment-targets-output-schema.json",
  "title": "BatchGetDeploymentTargetsOutput",
  "description": "BatchGetDeploymentTargetsOutput schema from Amazon CodeDeploy",
  "type": "object",
  "properties": {
    "deploymentTargets": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeploymentTargetList"
        },
        {
          "description": "<p> A list of target objects for a deployment. Each target object contains details about the target, such as its status and lifecycle events. The type of the target objects depends on the deployment' compute platform. </p> <ul> <li> <p> <b>EC2/On-premises</b>: Each target object is an Amazon EC2 or on-premises instance. </p> </li> <li> <p> <b>Lambda</b>: The target object is a specific version of an Lambda function. </p> </li> <li> <p> <b>Amazon ECS</b>: The target object is an Amazon ECS service. </p> </li> <li> <p> <b>CloudFormation</b>: The target object is an CloudFormation blue/green deployment. </p> </li> </ul>"
        }
      ]
    }
  }
}