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

LifecycleEvent

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

Information about a deployment lifecycle event.

interface LifecycleEvent {
diagnostics?: Diagnostics | null;
endTime?: Date | number | null;
lifecycleEventName?: string | null;
startTime?: Date | number | null;
status?: LifecycleEventStatus | null;
}

§Properties

§
diagnostics?: Diagnostics | null
[src]

Diagnostic information about the deployment lifecycle event.

§
endTime?: Date | number | null
[src]

A timestamp that indicates when the deployment lifecycle event ended.

§
lifecycleEventName?: string | null
[src]

The deployment lifecycle event name, such as ApplicationStop, BeforeInstall, AfterInstall, ApplicationStart, or ValidateService.

§
startTime?: Date | number | null
[src]

A timestamp that indicates when the deployment lifecycle event started.

§

The deployment lifecycle event status:

  • Pending: The deployment lifecycle event is pending.
  • InProgress: The deployment lifecycle event is in progress.
  • Succeeded: The deployment lifecycle event ran successfully.
  • Failed: The deployment lifecycle event has failed.
  • Skipped: The deployment lifecycle event has been skipped.
  • Unknown: The deployment lifecycle event is unknown.