Just start to work with AWS lambda and DynamoDB, and can't understand is it possible to setup some kind of migration tool like liquibase or flyway. My goal is upload lambda function to cloud, and be sure that my dynamodb instance contain latest changes, or will create all required tables.
For now I can find only ways how to create table in dynamodb, and I suppose that create and update is similar operations. But I can't understand how to run this code with lambda update. Also, I will have many lambda functions, and most probably all of them will use same tables. Is there way, how to configure it? How to manage state of dynamodb? Or I should just adjust dynamodb instance from aws UI?
Any suggestions appreciated.