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

Task

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

Task object encapsulating task information.

interface Task {
ProgressPercent?: number | null;
Status: Status;
StatusDetail?: string | null;
}

§Properties

§
ProgressPercent?: number | null
[src]

Indication of the percentage completion of the task.

§
Status: Status
[src]

Status of the task - Not Started, In-Progress, Complete.

§
StatusDetail?: string | null
[src]

Details of task status as notified by a migration tool. A tool might use this field to provide clarifying information about the status that is unique to that tool or that explains an error state.