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

GetObjectAttributesOutput

import type { GetObjectAttributesOutput } from "https://aws-api.deno.dev/v0.4/services/s3.ts?docs=full";
interface GetObjectAttributesOutput {
Checksum?: Checksum | null;
DeleteMarker?: boolean | null;
ETag?: string | null;
LastModified?: Date | number | null;
ObjectParts?: GetObjectAttributesParts | null;
ObjectSize?: number | null;
RequestCharged?: RequestCharged | null;
StorageClass?: StorageClass | null;
VersionId?: string | null;
}

§Properties

§
Checksum?: Checksum | null
[src]

The checksum or digest of the object.

§
DeleteMarker?: boolean | null
[src]

Specifies whether the object retrieved was (true) or was not (false) a delete marker. If false, this response header does not appear in the response.

§
ETag?: string | null
[src]

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

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

The creation date of the object.

§
ObjectParts?: GetObjectAttributesParts | null
[src]

A collection of parts associated with a multipart upload.

§
ObjectSize?: number | null
[src]

The size of the object in bytes.

§
RequestCharged?: RequestCharged | null
[src]
§
StorageClass?: StorageClass | null
[src]

Provides the storage class information of the object. Amazon S3 returns this header for all objects except for S3 Standard storage class objects.

For more information, see Storage Classes.

§
VersionId?: string | null
[src]

The version ID of the object.