Amazon CodeDeploy · JSON Structure

Amazon Codedeploy Deployment Target Structure

Information about the deployment target.

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

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

Properties

deploymentTargetType instanceTarget lambdaTarget ecsTarget cloudFormationTarget

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-deployment-target-structure.json",
  "name": "DeploymentTarget",
  "description": " Information about the deployment target. ",
  "type": "object",
  "properties": {
    "deploymentTargetType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeploymentTargetType"
        },
        {
          "description": "The deployment type that is specific to the deployment's compute platform or deployments initiated by a CloudFormation stack update."
        }
      ]
    },
    "instanceTarget": {
      "allOf": [
        {
          "$ref": "#/components/schemas/InstanceTarget"
        },
        {
          "description": " Information about the target for a deployment that uses the EC2/On-premises compute platform. "
        }
      ]
    },
    "lambdaTarget": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LambdaTarget"
        },
        {
          "description": " Information about the target for a deployment that uses the Lambda compute platform. "
        }
      ]
    },
    "ecsTarget": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ECSTarget"
        },
        {
          "description": " Information about the target for a deployment that uses the Amazon ECS compute platform. "
        }
      ]
    },
    "cloudFormationTarget": {
      "$ref": "#/components/schemas/CloudFormationTarget"
    }
  }
}