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

GetObjectAttributesParts

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

A collection of parts associated with a multipart upload.

interface GetObjectAttributesParts {
IsTruncated?: boolean | null;
MaxParts?: number | null;
NextPartNumberMarker?: number | null;
PartNumberMarker?: number | null;
Parts: ObjectPart[];
TotalPartsCount?: number | null;
}

§Properties

§
IsTruncated?: boolean | null
[src]

Indicates whether the returned list of parts is truncated. A value of true indicates that the list was truncated. A list can be truncated if the number of parts exceeds the limit returned in the MaxParts element.

§
MaxParts?: number | null
[src]

The maximum number of parts allowed in the response.

§
NextPartNumberMarker?: number | null
[src]

When a list is truncated, this element specifies the last part in the list, as well as the value to use for the PartNumberMarker request parameter in a subsequent request.

§
PartNumberMarker?: number | null
[src]

The marker for the current part.

§

A container for elements related to a particular part. A response can contain zero or more Parts elements.

§
TotalPartsCount?: number | null
[src]

The total number of parts.