DynamoDB Data Model
Learn how data is stored in DynamoDB.
We'll cover the following...
Tables
Tables are the basic store of data. We can have multiple tables in our database. These tables are similar to relational database tables. We store data as items in our tables. However, tables in DynamoDB are schema-less. There is no fixed column structure that we have to specify and follow. We can literally put anything inside our table, as long as the primary key is kept unique.
Items
Items in DynamoDB are similar to the rows in relational databases. An item ...