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

DataRepositoryTaskStatus

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

Provides the task status showing a running total of the total number of files to be processed, the number successfully processed, and the number of files the task failed to process.

interface DataRepositoryTaskStatus {
FailedCount?: number | null;
LastUpdatedTime?: Date | number | null;
ReleasedCapacity?: number | null;
SucceededCount?: number | null;
TotalCount?: number | null;
}

§Properties

§
FailedCount?: number | null
[src]

A running total of the number of files that the task failed to process.

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

The time at which the task status was last updated.

§
ReleasedCapacity?: number | null
[src]

The total amount of data, in GiB, released by an Amazon File Cache AUTO_RELEASE_DATA task that automatically releases files from the cache.

§
SucceededCount?: number | null
[src]

A running total of the number of files that the task has successfully processed.

§
TotalCount?: number | null
[src]

The total number of files that the task will process. While a task is executing, the sum of SucceededCount plus FailedCount may not equal TotalCount. When the task is complete, TotalCount equals the sum of SucceededCount plus FailedCount.