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

ListDeploymentsInput

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

Represents the input of a ListDeployments operation.

interface ListDeploymentsInput {
applicationName?: string | null;
createTimeRange?: TimeRange | null;
deploymentGroupName?: string | null;
externalId?: string | null;
includeOnlyStatuses?: DeploymentStatus[] | null;
nextToken?: string | null;
}

§Properties

§
applicationName?: string | null
[src]

The name of an CodeDeploy application associated with the IAM user or Amazon Web Services account.

Note: If applicationName is specified, then deploymentGroupName must be specified. If it is not specified, then deploymentGroupName must not be specified.

§
createTimeRange?: TimeRange | null
[src]

A time range (start and end) for returning a subset of the list of deployments.

§
deploymentGroupName?: string | null
[src]

The name of a deployment group for the specified application.

Note: If deploymentGroupName is specified, then applicationName must be specified. If it is not specified, then applicationName must not be specified.

§
externalId?: string | null
[src]

The unique ID of an external resource for returning deployments linked to the external resource.

§
includeOnlyStatuses?: DeploymentStatus[] | null
[src]

A subset of deployments to list by status:

  • Created: Include created deployments in the resulting list.
  • Queued: Include queued deployments in the resulting list.
  • In Progress: Include in-progress deployments in the resulting list.
  • Succeeded: Include successful deployments in the resulting list.
  • Failed: Include failed deployments in the resulting list.
  • Stopped: Include stopped deployments in the resulting list.
§
nextToken?: string | null
[src]

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