2 Answers
- Newest
- Most votes
- Most comments
0
When calling Athena from a Lambda function, you need to ensure the Lambda function's execution role has permission to access your Amazon S3 buckets. That same logic applies to other ways you can run your code, such as Amazon EC2 or Amazon ECS, and includes both the source bucket and the destination bucket. For example, take a look at the AWS Managed Rule AmazonAthenaFullAccess below. Note that this includes actions like s3:PutObject and s3:AbortMultipartUpload that Athena may use to create temporary files, not just read actions like S3:GetObject or S3:ListBucket.
Relevant Links:
0
Thanks! It was a matter of adding the right permissions to the user's role.
answered 3 years ago
Relevant content
asked 3 years ago
asked 9 years ago
asked 2 years ago
- AWS OFFICIALUpdated 3 months ago

Where is your python (boto3) code being executed? Lambda? EC2? Fargate?