Soya
Soya

Reputation: 1

AWS dynamoDB to Athena Cross Account

I've just started to use AWS, I have a question. I'm trying to send data from DynamoDB (Account A) to Athena (Account B).

What I would like to do is,

Do you have any solution ? Thanks a lot !

Upvotes: 0

Views: 516

Answers (2)

Shubham Joshi
Shubham Joshi

Reputation: 215

It is supported now. Please see this aws official page

Upvotes: 0

shimo
shimo

Reputation: 2285

Note that we can not transfer data to Athena, which does not hold data itself.

If the query data source is in the same account, Athena Federated Query would be useful, but it does not seem to be supported cross-account yet.

So for your case, export DynamoDB table to S3 like this aws blog.

Then query S3 data using Athena.

Amazon EventBridge can be used for everyday scheduled actions.

Upvotes: 1

Related Questions