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

UpgradeHistory

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

History of the last 10 Upgrades and Upgrade Eligibility Checks.

interface UpgradeHistory {
StartTimestamp?: Date | number | null;
StepsList?: UpgradeStepItem[] | null;
UpgradeName?: string | null;
UpgradeStatus?: UpgradeStatus | null;
}

§Properties

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

UTC Timestamp at which the Upgrade API call was made in "yyyy-MM-ddTHH:mm:ssZ" format.

§
StepsList?: UpgradeStepItem[] | null
[src]

A list of "UpgradeStepItem" s representing information about each step performed as pard of a specific Upgrade or Upgrade Eligibility Check.

§
UpgradeName?: string | null
[src]

A string that describes the update briefly

§
UpgradeStatus?: UpgradeStatus | null
[src]

The overall status of the update. The status can take one of the following values:

  • In Progress
  • Succeeded
  • Succeeded with Issues
  • Failed