paws.storage (version 0.1.0)

s3_list_multipart_uploads: This operation lists in-progress multipart uploads

Description

This operation lists in-progress multipart uploads.

Usage

s3_list_multipart_uploads(Bucket, Delimiter, EncodingType, KeyMarker,
  MaxUploads, Prefix, UploadIdMarker)

Arguments

Bucket

[required]

Delimiter

Character you use to group keys.

EncodingType
KeyMarker

Together with upload-id-marker, this parameter specifies the multipart upload after which listing should begin.

MaxUploads

Sets the maximum number of multipart uploads, from 1 to 1,000, to return in the response body. 1,000 is the maximum number of uploads that can be returned in a response.

Prefix

Lists in-progress uploads only for those keys that begin with the specified prefix.

UploadIdMarker

Together with key-marker, specifies the multipart upload after which listing should begin. If key-marker is not specified, the upload-id-marker parameter is ignored.

Request syntax

svc$list_multipart_uploads(
  Bucket = "string",
  Delimiter = "string",
  EncodingType = "url",
  KeyMarker = "string",
  MaxUploads = 123,
  Prefix = "string",
  UploadIdMarker = "string"
)

Examples

Run this code
# NOT RUN {
# The following example lists in-progress multipart uploads on a specific
# bucket.
# }
# NOT RUN {
svc$list_multipart_uploads(
  Bucket = "examplebucket"
)
# }
# NOT RUN {
# The following example specifies the upload-id-marker and key-marker from
# previous truncated response to retrieve next setup of multipart uploads.
# }
# NOT RUN {
svc$list_multipart_uploads(
  Bucket = "examplebucket",
  KeyMarker = "nextkeyfrompreviousresponse",
  MaxUploads = "2",
  UploadIdMarker = "valuefrompreviousresponse"
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab