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

InstanceSummary

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

Information about an instance in a deployment.

interface InstanceSummary {
deploymentId?: string | null;
instanceId?: string | null;
instanceType?: InstanceType | null;
lastUpdatedAt?: Date | number | null;
lifecycleEvents?: LifecycleEvent[] | null;
status?: InstanceStatus | null;
}

§Properties

§
deploymentId?: string | null
[src]

The unique ID of a deployment.

§
instanceId?: string | null
[src]

The instance ID.

§
instanceType?: InstanceType | null
[src]

Information about which environment an instance belongs to in a blue/green deployment.

  • BLUE: The instance is part of the original environment.
  • GREEN: The instance is part of the replacement environment.
§
lastUpdatedAt?: Date | number | null
[src]

A timestamp that indicates when the instance information was last updated.

§
lifecycleEvents?: LifecycleEvent[] | null
[src]

A list of lifecycle events for this instance.

§
status?: InstanceStatus | null
[src]

The deployment status for this instance:

  • Pending: The deployment is pending for this instance.
  • In Progress: The deployment is in progress for this instance.
  • Succeeded: The deployment has succeeded for this instance.
  • Failed: The deployment has failed for this instance.
  • Skipped: The deployment has been skipped for this instance.
  • Unknown: The deployment status is unknown for this instance.