Home > front end >  Importing table values with Cloudformation in DynamoDB
Importing table values with Cloudformation in DynamoDB

Time:04-15

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

CodePudding user response:

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.

  • Related