advapi
advapi

Reputation: 3907

Importing table values with Cloudformation in DynamoDB

I've created a CloudFormation stack to create a DynamoDB set of tables I need. For a specific one, I also need to restore its values... how can I achieve that?

I've searched online but have found not a solution

Upvotes: 1

Views: 504

Answers (1)

Marcin
Marcin

Reputation: 238189

This can only be done through a custom resource. The resource would be a lambda function which would perform the insertion of your data into the newly created table using AWS SDK.

Upvotes: 1

Related Questions