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

_Object

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

An object consists of data and its descriptive metadata.

interface _Object {
ChecksumAlgorithm: ChecksumAlgorithm[];
ETag?: string | null;
Key?: string | null;
LastModified?: Date | number | null;
Owner?: Owner | null;
Size?: number | null;
StorageClass?: ObjectStorageClass | 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 a hash of the object. The ETag reflects changes only to the contents of an object, not its metadata. The ETag may or may not be an MD5 digest of the object data. Whether or not it is depends on how the object was created and how it is encrypted as described below:

  • Objects created by the PUT Object, POST Object, or Copy operation, or through the Amazon Web Services Management Console, and are encrypted by SSE-S3 or plaintext, have ETags that are an MD5 digest of their object data.
  • Objects created by the PUT Object, POST Object, or Copy operation, or through the Amazon Web Services Management Console, and are encrypted by SSE-C or SSE-KMS, have ETags that are not an MD5 digest of their object data.
  • If an object is created by either the Multipart Upload or Part Copy operation, the ETag is not an MD5 digest, regardless of the method of encryption. If an object is larger than 16 MB, the Amazon Web Services Management Console will upload or copy that object as a Multipart Upload, and therefore the ETag will not be an MD5 digest.
§
Key?: string | null
[src]

The name that you assign to an object. You use the object key to retrieve the object.

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

Creation date of the object.

§
Owner?: Owner | null
[src]

The owner of the object

§
Size?: number | null
[src]

Size in bytes of the object

§
StorageClass?: ObjectStorageClass | null
[src]

The class of storage used to store the object.