Reputation: 3907
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
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