1 Answers
0
Please check if you have any bucket policies restricting the same. You need to allow s3:GetObject in your IAM policy or S3 bucket policy. Below is an example.
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:GetObject"
],
"Resource": [
"arn:aws:s3:::mybucket",
"arn:aws:s3:::mybucket/*"
]
}
]
}
How do I troubleshoot 403 Access Denied errors from Amazon S3? https://aws.amazon.com/premiumsupport/knowledge-center/s3-troubleshoot-403/?nc1=h_ls
If you still face issue after this, check CloudTrail for the corresponding API call from quicksight and you will be able to identify the hurdle.
Relevant questions
Access denied using cyberduck or s3 Browser to upload object into s3 bucket
asked 3 years agoS3 Block Public Access + Bucket Policy - Access Denied
asked 5 months ago403 Access denied error from S3 in Glue
Accepted Answerasked 5 years agoS3 Access Denied issue
asked 25 days agoAccess denied error uploading to s3 bucket
asked 2 months agoAccess Denied error when accessing Cloudfront url image link
asked 4 months agoS3 presigned url access Denied
Accepted Answerasked 6 months agoAccess denied when deleting S3 bucket
Accepted Answerasked 2 months agoHow can I resolve AWS::S3::Errors:: Access Denied?
Accepted Answerasked 18 days agoAWS, Elasticbeanstalk, Linux 2, Access to S3; 403, Access denied
asked 10 months ago
thanks for the quick respond. yes it has AmazonS3fullaccess policy.