Open In App

DynamoDB – Tables, Items, and Attributes

In DynamoDB the Tables, Items, and Attributes are among the core components, and we will be discussing them in detail in this article.

Tables

A table in DynamoDB is a collection of items. The key factors that make it unique are listed below: 



Items

Items in DynamoDB are a collection of attributes which uniquely identify an item among all of the other items. The fundamental data element of DynamoDB. 

Attributes

Attributes are the fundamental data element of DynamoDB. All items comprise one or more attributes. As being the fundamental data element attributes cannot be further broken down. Attributes in DynamoDB are similar in many ways to fields or columns in other database systems. 



Now let’s look below for an example depicting a sample database of People: 
 

In the above example image, 

Notice the below points in the above diagram: 

Article Tags :