Which of the following is the correct JSON syntax to allow read-only access to S3 in an IAM policy?
A{"Effect": "Allow", "Action": "s3:PutObject", "Resource": "arn:aws:s3:::example-bucket/*"}
B{"Effect": "Allow", "Action": "s3:GetObject", "Resource": "arn:aws:s3:::example-bucket/*"}
C{"Effect": "Deny", "Action": "s3:GetObject", "Resource": "arn:aws:s3:::example-bucket/*"}
D{"Effect": "Allow", "Action": "s3:DeleteObject", "Resource": "arn:aws:s3:::example-bucket/*"}