You can use this AWS cli command to download entire S3 bucket content to local folder
aws s3 sync s3://your-bucket-name "Local Folder Path"
If you see error like this
fatal error: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:581)
--no-verify-ssl (boolean)
By default, the AWS CLI uses SSL when communicating with AWS services. For each SSL connection, the AWS CLI will verify SSL certificates. This option overrides the default behavior of verifying SSL certificates. reference
Use this tag with command --no-verify-ssl
aws s3 sync s3://your-bucket-name "Local Folder Path" --no-verify-ssl