Prepare the Database

Learn to create the database for ingredients.

We'll cover the following...

In our sweets factory scenario, we use DynamoDB to store the inventory of ingredients needed for sweets production. The table schema we'll create represents the inventory data and its structure.

Press + to interact
Database schema
Database schema

We'll use one attribute called ingredient. This attribute represents the name of the ingredient in the inventory. It's used as the primary key (partition key) for the ...