Services >> Cloud >> AWS >> S3 >> Example of S3 bucket policy

allow public to download and read acl of specific objects in a bucket

{
    "Version": "2012-10-17",
    "Id": "Policy1557511288767",
    "Statement": [
        {
            "Sid": "Stmt1557511286634",
            "Effect": "Allow",
            "Principal": "*",
            "Action": [
                "s3:GetObject",
                "s3:GetObjectAcl"
            ],
            "Resource": "arn:aws:s3:::yourbucketname/*.jpg"
        }
    ]
}