Search code examples
amazon-dynamodbdynamo-localnosql

DynamoDB tables programatic creation


Is there a framework/tool which I could use in order to separate the database table creation from the business logic for DynamoDB? In the RDBMS world a tool like Liquibase would do the trick.

Any thoughts ?

Many thanks


Solution

  • You can use AWS CloudFormation to create the DynamoDB table. Here is the link which has the DynamoDB create template.

    AWS CloudFormation simplifies provisioning and management on AWS.

    AWS CloudFormation gives developers and systems administrators an easy way to create and manage a collection of related AWS resources, provisioning and updating them in an orderly and predictable fashion.