interface StorageItem {
    eTag?: string;
    key: string;
    lastModified?: Date;
    metadata?: Record<string, string>;
    size?: number;
}

Hierarchy (view full)

Properties

eTag?: string

An entity tag (ETag) is an opaque identifier assigned by a web server to a specific version of a resource found at a URL.

key: string

Key of the object

lastModified?: Date

Creation date of the object.

metadata?: Record<string, string>

The user-defined metadata for the object uploaded to S3.

size?: number

Size of the body in bytes.