Hi I manually uploaded an image on the newly created S3 Bucket using my AWS Account. My S3 Bucket policy is as follows
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AddPerm",
"Effect": "Allow",
"Principal": "*",
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::s3BucketName/*"
}
]
}
When I click on the S3 link generated for that image for that S3 bucket, I am unable to view or download the uploaded image. When I inspect element on the browser I am getting the following error
Failed to load resource: the server responded with a status of 403 (Forbidden)
My S3 Region is Oregon
. Also my image size is just 3KB
. Can somebody let me know what I am doing wrong?