How to use aws (amazon) s3

I want to download a file from aws s3 on esp32.
s3 uses https.
Please let me know if there is a suitable library or suitable example for downloading the file.
All methods I have searched on the web so far have failed.
Thank you for your help.

You just need to get the contents of a file via HTTPS? Do examples like

not work?

Thank you for answer.
I saw your link and got the job done.
Compared to other codes, the problem seems to be that aws is blocking the connection if you do not have time using ntp.
It was a difference of ntp, but that part solved the problem.
Thank you.