Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

BatchGetDeploymentTargetsOutput

import type { BatchGetDeploymentTargetsOutput } from "https://aws-api.deno.dev/v0.4/services/codedeploy.ts?docs=full";
interface BatchGetDeploymentTargetsOutput {
deploymentTargets?: DeploymentTarget[] | null;
}

§Properties

§
deploymentTargets?: DeploymentTarget[] | null
[src]

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.

  • EC2/On-premises: Each target object is an Amazon EC2 or on-premises instance.
  • Lambda: The target object is a specific version of an Lambda function.
  • Amazon ECS: The target object is an Amazon ECS service.
  • CloudFormation: The target object is an CloudFormation blue/green deployment.