paws.storage (version 0.1.0)

s3_abort_multipart_upload: Aborts a multipart upload

Description

Aborts a multipart upload.

Usage

s3_abort_multipart_upload(Bucket, Key, UploadId, RequestPayer)

Arguments

Bucket

[required]

Key

[required]

UploadId

[required]

RequestPayer

Request syntax

svc$abort_multipart_upload(
  Bucket = "string",
  Key = "string",
  UploadId = "string",
  RequestPayer = "requester"
)

Details

To verify that all parts have been removed, so you don't get charged for the part storage, you should call the List Parts operation and ensure the parts list is empty.

Examples

Run this code
# NOT RUN {
# The following example aborts a multipart upload.
# }
# NOT RUN {
svc$abort_multipart_upload(
  Bucket = "examplebucket",
  Key = "bigobject",
  UploadId = "xadcOB_7YPBOJuoFiQ9cz4P3Pe6FIZwO4f7wN93uHsNBEw97pl5eNwzExg0LAT2dUN91cOmrEQHDsP..."
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab