1 réponse
- Le plus récent
- Le plus de votes
- La plupart des commentaires
1
Hi,
Please verify that you are using the correct lambda execution role.
Please refer to the below articles for more information: https://aws.amazon.com/premiumsupport/knowledge-center/schedule-query-athena/ https://docs.aws.amazon.com/athena/latest/ug/federated-query-iam-access.html https://docs.aws.amazon.com/quicksight/latest/user/troubleshoot-connect-athena.html
Contenus pertinents
- demandé il y a un an
- demandé il y a 2 ans
- demandé il y a 10 mois
- AWS OFFICIELA mis à jour il y a 2 mois
- AWS OFFICIELA mis à jour il y a 8 mois
Thanks for your information. The issue has been resolved after adding below policy (when trigger athena.startQueryExecution(...), it will invoke a Athena's lambda connector): { "Version": "2012-10-17", "Statement": [ { "Sid": "VisualEditor0", "Effect": "Allow", "Action": [ "lambda:InvokeFunction" ], "Resource": [ "arn:aws:lambda:us-west-2:accountID:function:test-datasource-connector" ] } ] }