aws s3 allow public access to all the resources in bucket for all types of actions
{
"Version": "version_id", // user defined identifier
"Statement": [
{
"Sid": "some_id", // user defined identifier
"Effect": "Allow",
"Principal": "*",
"Action": "s3:*",
"Resource": [
"arn:aws:s3:::bucketname",
"arn:aws:s3:::bucketname/*"
]
}
]
}