My s3 storage settings look like this:
Permissions > Bucket Policy
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowPublicRead",
"Effect": "Allow",
"Principal": {
"AWS": "*"
},
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::my-bucket/*"
}
]
}
every object is public.
I have 3 folders, and would like to add a new folder which is private. How would I ensure it is private?