-
Notifications
You must be signed in to change notification settings - Fork 737
Closed
Labels
guidanceQuestion that needs advice or information.Question that needs advice or information.
Description
Confirm by changing [ ] to [x] below:
- [x ] I've gone though the API reference
- [x ] I've checked AWS Forums and StackOverflow for answers
Describe the question
Wanted to create presigned URL for each part when multipart uploading is being used to upload big file from external.
As Python example
https://github.com/T-Tmnr/aws_s3_multipartupload_with_presigned_url/blob/927685c378c4e929ce606dbec735304a3e49a0bd/aws-multipart-upload.py#L38
signed_url = self.s3.generate_presigned_url(
ClientMethod='upload_part',
Params={'Bucket': self.bucket_name,
'Key': self.key,
'UploadId': self.upload_id,
'PartNumber': part_no},
ExpiresIn=expire)It's able to specify UploadId and PartNumber.
Is that possible to do so in Golang to generate Presigned URL for each part ?
Thank you in advance !
dynastymasra, F21 and Konkrad
Metadata
Metadata
Assignees
Labels
guidanceQuestion that needs advice or information.Question that needs advice or information.