How To Create And Delete DynamoDB On AWS

To Create And Delete DynamoDB On AWS

Introduction:

Amazon DynamoDB is a completely controlled proprietary NoSQL database service that supports key-value and document data structures and is administered by Amazon.com as part of the Amazon Web Services portfolio. DynamoDB exposes a comparable data model to derive its name from Dynamo but has a different underlying implementation.

Procedure of the DB creation:

Step 1: Login to the AWS Management Console by using below image.

Step 2: Go to click services then go databases and click DynamoDB by using below image.

Step 3: Go to click Create Table to Create DynamoDB Table by using below image.

Step 4: Give the Table Details and click Create Table by using below image.

Step 5: Now you able to see the table, then go to click Table Name by using below image.

Step 6: Go to click Explore table items by using below image.

Step 7: Scroll down and then click Create item by using below image.

Step 8: Now give the value of Attribute name and then click Create item by using below image.

Step 9: In item dashboard can able to see item, Now go to Actions then click delete to delete the item by using below image.

Step 10: Go to Tables Dashboard, here you can select table and click delete DynamoDB Table by using below image.

Step 11. Type confirm then Click Delete by using below image.

Conclusion:

We have reached the end of this article. In this guide, we have walked you through the steps required to Create DynamoDB on AWS. Your feedback is much welcome.

FAQ
Q
What are ACID transactions?
A
DynamoDB transactions provide developers atomicity, consistency, isolation, and durability (ACID) across one or more tables within a single AWS account and region.
Q
What is the consistency model of DynamoDB?
A
Eventually consistent reads (the default) – The eventual consistency option maximizes your read throughput.
Q
Can DynamoDB be used by applications running on any operating system?
A
Yes. DynamoDB is a fully managed cloud service that you access via API. Applications running on any operating system (such as Linux, Windows, iOS, Android, Solaris, AIX, and HP-UX) can use DynamoDB. We recommend using the AWS SDKs to get started with DynamoDB.
Q
How do I update and query data items with DynamoDB?
A
After you have created a table using the DynamoDB console or CreateTable API, you can use the PutItem or BatchWriteItem APIs to insert items. Then, you can use the GetItem, BatchGetItem, or, if composite primary keys are enabled and in use in your table, the Query API to retrieve the items you added to the table.
Q
What is dynamoDB?
A
Amazon DynamoDB is a fully managed proprietary NoSQL database service that supports key-value and document data structures and is offered by Amazon.com as part of the Amazon Web Services portfolio. DynamoDB exposes a similar data model to and derives its name from Dynamo, but has a different underlying implementation.