This returns an S3 Presigned URL which is active for 60 minutes. You can use this url to download this file.
Below is an example for how to do this in python
Copy
import requestsresponse = requests.get('https://xxx.s3.amazonaws.com/xxxxxxx')with open('output.pdf', 'wb') as f: f.write(response.content)