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

BatchGetDeploymentTargetsInput

import type { BatchGetDeploymentTargetsInput } from "https://aws-api.deno.dev/v0.3/services/codedeploy.ts?docs=full";
interface BatchGetDeploymentTargetsInput {
deploymentId?: string | null;
targetIds?: string[] | null;
}

§Properties

§
deploymentId?: string | null
[src]

The unique ID of a deployment.

§
targetIds?: string[] | null
[src]

The unique IDs of the deployment targets. The compute platform of the deployment determines the type of the targets and their formats. The maximum number of deployment target IDs you can specify is 25.

  • For deployments that use the EC2/On-premises compute platform, the target IDs are EC2 or on-premises instances IDs, and their target type is instanceTarget.
  • For deployments that use the AWS Lambda compute platform, the target IDs are the names of Lambda functions, and their target type is instanceTarget.
  • For deployments that use the Amazon ECS compute platform, the target IDs are pairs of Amazon ECS clusters and services specified using the format <clustername>:<servicename>. Their target type is ecsTarget.
  • For deployments that are deployed with AWS CloudFormation, the target IDs are CloudFormation stack IDs. Their target type is cloudFormationTarget.