Data.Cloud.AmazonAPI.TAmazonStorageService.ListMultipartUploadPartsXML

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function ListMultipartUploadPartsXML(const BucketName, ObjectName, UploadId: string;  MaxParts: Integer = 0; PartNumberMarker: Integer = 0; ResponseInfo: TCloudResponseInfo = nil; BucketRegion: TAmazonRegion = amzrNotSpecified): string;

C++

System::UnicodeString __fastcall ListMultipartUploadPartsXML(const System::UnicodeString BucketName, const System::UnicodeString ObjectName, const System::UnicodeString UploadId, int MaxParts = 0x0, int PartNumberMarker = 0x0, Data::Cloud::Cloudapi::TCloudResponseInfo* ResponseInfo = (Data::Cloud::Cloudapi::TCloudResponseInfo*)(0x0), TAmazonRegion BucketRegion = (TAmazonRegion)(0x0));

Properties

Type Visibility Source Unit Parent
function public
Data.Cloud.AmazonAPI.pas
Data.Cloud.AmazonAPI.hpp
Data.Cloud.AmazonAPI TAmazonStorageService

Description

Lists the currently uploaded parts for a multipart upload with the given ID.

MaxParts can be set to a number in the range from 2 through 1000. Set it to 0 to use the server default value.

PartNumberMarker is the continuation token returned from a previous call, in the XML element with the same name.

The method returns the XML representation of the multipart upload parts.

The following table shows the significance of the parameters:

Parameter Description

BucketName

The name of the bucket the object is in.

ObjectName

The object the multipart upload is for.

UploadId

The multipart upload's unique ID.

MaxParts

The maximum number of parts to return, or 0 for server default.

PartNumberMarker

The part number to continue population from, or 0 to start from the beginning.

ResponseInfo

The optional class for storing response info into.

See Also