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

UpgradeStepItem

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

Represents a single step of the Upgrade or Upgrade Eligibility Check workflow.

interface UpgradeStepItem {
Issues?: string[] | null;
ProgressPercent?: number | null;
UpgradeStep?: UpgradeStep | null;
UpgradeStepStatus?: UpgradeStatus | null;
}

§Properties

§
Issues?: string[] | null
[src]

A list of strings containing detailed information about the errors encountered in a particular step.

§
ProgressPercent?: number | null
[src]

The Floating point value representing progress percentage of a particular step.

§
UpgradeStep?: UpgradeStep | null
[src]

Represents one of 3 steps that an Upgrade or Upgrade Eligibility Check does through:

  • PreUpgradeCheck
  • Snapshot
  • Upgrade
§
UpgradeStepStatus?: UpgradeStatus | null
[src]

The status of a particular step during an upgrade. The status can take one of the following values:

  • In Progress
  • Succeeded
  • Succeeded with Issues
  • Failed