Bulk Generate Pre-Signed URLs boto3
问题 I am currently using the following to create a pre-signed url for a bucket resource: bucket_name = ... key = ... s3_client = ... s3_client.generate_presigned_url( ClientMethod="get_object", Params={ "Bucket": bucket_name, "Key": key }, ExpiresIn=100 ) This works fine. However, I was wondering if it was possible to generate pre-signed urls for multiple keys in one request? Or is it required to make one request for each key? I didn't find anything useful in the docs regarding this topic. I'm