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

DeploymentOverview

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

Information about the deployment status of the instances in the deployment.

interface DeploymentOverview {
Failed?: number | null;
InProgress?: number | null;
Pending?: number | null;
Ready?: number | null;
Skipped?: number | null;
Succeeded?: number | null;
}

§Properties

§
Failed?: number | null
[src]

The number of instances in the deployment in a failed state.

§
InProgress?: number | null
[src]

The number of instances in which the deployment is in progress.

§
Pending?: number | null
[src]

The number of instances in the deployment in a pending state.

§
Ready?: number | null
[src]

The number of instances in a replacement environment ready to receive traffic in a blue/green deployment.

§
Skipped?: number | null
[src]

The number of instances in the deployment in a skipped state.

§
Succeeded?: number | null
[src]

The number of instances in the deployment to which revisions have been successfully deployed.