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

FileSystemSize

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

The latest known metered size (in bytes) of data stored in the file system, in its Value field, and the time at which that size was determined in its Timestamp field. The value doesn't represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value represents the actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not necessarily the exact size the file system was at any instant in time.

interface FileSystemSize {
Timestamp?: Date | number | null;
Value: number;
ValueInIA?: number | null;
ValueInStandard?: number | null;
}

§Properties

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

The time at which the size of data, returned in the Value field, was determined. The value is the integer number of seconds since 1970-01-01T00:00:00Z.

§
Value: number
[src]

The latest known metered size (in bytes) of data stored in the file system.

§
ValueInIA?: number | null
[src]

The latest known metered size (in bytes) of data stored in the Infrequent Access storage class.

§
ValueInStandard?: number | null
[src]

The latest known metered size (in bytes) of data stored in the Standard storage class.