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

MultipartUpload

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

Container for the MultipartUpload for the Amazon S3 object.

interface MultipartUpload {
ChecksumAlgorithm?: ChecksumAlgorithm | null;
Initiated?: Date | number | null;
Initiator?: Initiator | null;
Key?: string | null;
Owner?: Owner | null;
StorageClass?: StorageClass | null;
UploadId?: string | null;
}

§Properties

§
ChecksumAlgorithm?: ChecksumAlgorithm | null
[src]

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

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

Date and time at which the multipart upload was initiated.

§
Initiator?: Initiator | null
[src]

Identifies who initiated the multipart upload.

§
Key?: string | null
[src]

Key of the object for which the multipart upload was initiated.

§
Owner?: Owner | null
[src]

Specifies the owner of the object that is part of the multipart upload.

§
StorageClass?: StorageClass | null
[src]

The class of storage used to store the object.

§
UploadId?: string | null
[src]

Upload ID that identifies the multipart upload.