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

ListDeploymentInstancesInput

import type { ListDeploymentInstancesInput } from "https://aws-api.deno.dev/v0.3/services/codedeploy.ts?docs=full";

Represents the input of a ListDeploymentInstances operation.

interface ListDeploymentInstancesInput {
deploymentId: string;
instanceStatusFilter?: InstanceStatus[] | null;
instanceTypeFilter?: InstanceType[] | null;
nextToken?: string | null;
}

§Properties

§
deploymentId: string
[src]

The unique ID of a deployment.

§
instanceStatusFilter?: InstanceStatus[] | null
[src]

A subset of instances to list by status:

  • Pending: Include those instances with pending deployments.
  • InProgress: Include those instances where deployments are still in progress.
  • Succeeded: Include those instances with successful deployments.
  • Failed: Include those instances with failed deployments.
  • Skipped: Include those instances with skipped deployments.
  • Unknown: Include those instances with deployments in an unknown state.
§
instanceTypeFilter?: InstanceType[] | null
[src]

The set of instances in a blue/green deployment, either those in the original environment ("BLUE") or those in the replacement environment ("GREEN"), for which you want to view instance information.

§
nextToken?: string | null
[src]

An identifier returned from the previous list deployment instances call. It can be used to return the next set of deployment instances in the list.