To upload files larger than 5 GB to an Amazon S3 bucket using presigned URLs, the standard presigned POST method won’t work because it only supports uploads up to 5 GB. But you can multipart upload here. For each part you have generate a generate url. After uploading all parts, send a request to complete the multipart upload with the ETags of each uploaded part.