paws.storage (version 0.1.0)

s3_list_parts: Lists the parts that have been uploaded for a specific multipart upload

Description

Lists the parts that have been uploaded for a specific multipart upload.

Usage

s3_list_parts(Bucket, Key, MaxParts, PartNumberMarker, UploadId,
  RequestPayer)

Arguments

Bucket

[required]

Key

[required]

MaxParts

Sets the maximum number of parts to return.

PartNumberMarker

Specifies the part after which listing should begin. Only parts with higher part numbers will be listed.

UploadId

[required] Upload ID identifying the multipart upload whose parts are being listed.

RequestPayer

Request syntax

svc$list_parts(
  Bucket = "string",
  Key = "string",
  MaxParts = 123,
  PartNumberMarker = 123,
  UploadId = "string",
  RequestPayer = "requester"
)

Examples

Run this code
# NOT RUN {
# The following example lists parts uploaded for a specific multipart
# upload.
# }
# NOT RUN {
svc$list_parts(
  Bucket = "examplebucket",
  Key = "bigobject",
  UploadId = "example7YPBOJuoFiQ9cz4P3Pe6FIZwO4f7wN93uHsNBEw97pl5eNwzExg0LAT2dUN91cOmrEQHDsP..."
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataCamp Workspace