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

JobProgressSummary

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

Describes the total number of tasks that the specified job has started, the number of tasks that succeeded, and the number of tasks that failed.

interface JobProgressSummary {
NumberOfTasksFailed?: number | null;
NumberOfTasksSucceeded?: number | null;
Timers?: JobTimers | null;
TotalNumberOfTasks?: number | null;
}

§Properties

§
NumberOfTasksFailed?: number | null
[src]
§
NumberOfTasksSucceeded?: number | null
[src]
§
Timers?: JobTimers | null
[src]

The JobTimers attribute of a job's progress summary.

§
TotalNumberOfTasks?: number | null
[src]