Create Dynamodb

In this step we will learn how to create a Dynamodb databases
The following step will help you create a Dynamodb databases with the right configuration :

Creating a Dynamodb databases EmployeesDataBases

  1. First go to your AWS console:
  • click on the search bar and type dynamoDB
  • click on dynamoDB dynamodb-1
  1. on Dynamodb click on create table dynamodb-2

  2. on the Dynamodb creation form :

  • fill in the table name as EmployeesDataBases
  • Partition key as PhoneNumEmp
  • and leave the sort key empty dynamodb-3
  • on the table setting click Customize Setting
  • on the table class click Dynamodb standard
  • on the read/write capacity click on On-demand

    we need to click on demand because we do not know the amount of time we write to the databases, but this is not recommend because it will cause us to lose a money if there is many people calling the application

    dynamodb-4
  • on the last step click on create table dynamodb-5
  1. Check if the table have been created this usually take 1 minute : dynamodb-6
  2. If the table status = active congratulation you have successfully created the dynamodb databases for employees