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

ListPartsOutput

import type { ListPartsOutput } from "https://aws-api.deno.dev/v0.3/services/glacier.ts?docs=full";

Contains the Amazon S3 Glacier response to your request.

interface ListPartsOutput {
ArchiveDescription?: string | null;
CreationDate?: string | null;
Marker?: string | null;
MultipartUploadId?: string | null;
Parts?: PartListElement[] | null;
PartSizeInBytes?: number | null;
VaultARN?: string | null;
}

§Properties

§
ArchiveDescription?: string | null
[src]

The description of the archive that was specified in the Initiate Multipart Upload request.

§
CreationDate?: string | null
[src]

The UTC time at which the multipart upload was initiated.

§
Marker?: string | null
[src]

An opaque string that represents where to continue pagination of the results. You use the marker in a new List Parts request to obtain more jobs in the list. If there are no more parts, this value is null.

§
MultipartUploadId?: string | null
[src]

The ID of the upload to which the parts are associated.

§
Parts?: PartListElement[] | null
[src]

A list of the part sizes of the multipart upload. Each object in the array contains a RangeBytes and sha256-tree-hash name/value pair.

§
PartSizeInBytes?: number | null
[src]

The part size in bytes. This is the same value that you specified in the Initiate Multipart Upload request.

§
VaultARN?: string | null
[src]

The Amazon Resource Name (ARN) of the vault to which the multipart upload was initiated.