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

ListDeploymentTargetsInput

import type { ListDeploymentTargetsInput } from "https://aws-api.deno.dev/v0.4/services/codedeploy.ts?docs=full";
interface ListDeploymentTargetsInput {
deploymentId?: string | null;
nextToken?: string | null;
targetFilters?: [key in TargetFilterName]: string[] | null | undefined | null;
}

§Properties

§
deploymentId?: string | null
[src]

The unique ID of a deployment.

§
nextToken?: string | null
[src]

A token identifier returned from the previous ListDeploymentTargets call. It can be used to return the next set of deployment targets in the list.

§
targetFilters?: [key in TargetFilterName]: string[] | null | undefined | null
[src]

A key used to filter the returned targets. The two valid values are:

  • TargetStatus - A TargetStatus filter string can be Failed, InProgress, Pending, Ready, Skipped, Succeeded, or Unknown.
  • ServerInstanceLabel - A ServerInstanceLabel filter string can be Blue or Green.