After the user saves the contact information in the Contact Organizer, they should be able to retrieve this information. Retrieving data requires data persistence.
In Contact Organizer, we will be leveraging AWS DynamoDB, a highly scalable NoSQL database in the cloud. DynamoDB fits well with our serverless architecture because developers do not need to manage database servers. Instead, developers can create tables that scale with demand automatically. We will be storing and retrieving contact information using a DynamoDB table.
Let's create a Contacts table using the AWS Web Console:
- Go to the DynamoDB dashboard page and click on the Create table button:
- On the Create DynamoDB table page, set ...