The ETag is provided for the correctness check upon completion of the whole upload. Value for the ETag is provided by AWS S3 service when uploading the file in the ETag header.
upload_complete_part( token = NULL, upload_id = NULL, part_number = NULL, e_tag = NULL, ... )
token | auth token |
---|---|
upload_id | ID of the upload |
part_number | ID of the part you wish to report as completed |
e_tag | Value of the ETag header returned by AWS S3 when uploading part of the file. |
... | parameters passed to api function |
parsed list of the returned json
token <- "your_token" if (FALSE) { req <- upload_complete_part( token, upload_id = "your_upload_id", part_number = "1", e_tag = "your_e_tag" )}