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

ObjectVersion

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

The version of an object.

interface ObjectVersion {
ChecksumAlgorithm: ChecksumAlgorithm[];
ETag?: string | null;
IsLatest?: boolean | null;
Key?: string | null;
LastModified?: Date | number | null;
Owner?: Owner | null;
Size?: number | null;
StorageClass?: ObjectVersionStorageClass | null;
VersionId?: string | null;
}

§Properties

§
ChecksumAlgorithm: ChecksumAlgorithm[]
[src]

The algorithm that was used to create a checksum of the object.

§
ETag?: string | null
[src]

The entity tag is an MD5 hash of that version of the object.

§
IsLatest?: boolean | null
[src]

Specifies whether the object is (true) or is not (false) the latest version of an object.

§
Key?: string | null
[src]

The object key.

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

Date and time the object was last modified.

§
Owner?: Owner | null
[src]

Specifies the owner of the object.

§
Size?: number | null
[src]

Size in bytes of the object.

§
StorageClass?: ObjectVersionStorageClass | null
[src]

The class of storage used to store the object.

§
VersionId?: string | null
[src]

Version ID of an object.