This operation lists in-progress multipart uploads.
s3_list_multipart_uploads(Bucket, Delimiter, EncodingType, KeyMarker,
MaxUploads, Prefix, UploadIdMarker)
[required]
Character you use to group keys.
Together with upload-id-marker, this parameter specifies the multipart upload after which listing should begin.
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.
Lists in-progress uploads only for those keys that begin with the specified prefix.
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.
svc$list_multipart_uploads( Bucket = "string", Delimiter = "string", EncodingType = "url", KeyMarker = "string", MaxUploads = 123, Prefix = "string", UploadIdMarker = "string" )
# 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 {
# The following example lists in-progress multipart uploads on a specific
# bucket.
# }
# NOT RUN {
svc$list_multipart_uploads(
Bucket = "examplebucket"
)
# }
# NOT RUN {
# }
Run the code above in your browser using DataLab