AWSDynamoDb

aws

Read and Write Capacity Modes in AWS DynamoDB

Reading Time: 4 minutes The read/write capacity modes for processing reads and writes on the tables determine AWS DynamoDB throughput capacity. There are two read/write capacity modes that DynamoDB supports: Provisioned (default) On-demand Provisioned Mode In provisioned mode, we must specify the number of reads and writes per second that the application requires. Provisioned throughput is the most storage capacity a table or index will let an application to Continue Reading

boto3 aws

 How to upload data on AWS DynamoDB using Boto3

Reading Time: 4 minutes Hello Readers! In this blog we will see how to upload data on AWS DynamoDB using Boto3 in a few easy steps. So, let’s not waste any time. We have some following prerequisites for starting it: You must have installed Python3 on your system. You must have installed Boto3 on your system. Do prefer this blog for the setup of Boto3: https://blog.knoldus.com/introduction-to-boto3-and-its-installation/ Install AWS CLI Continue Reading

How to generate AWS Signature with Postman

Reading Time: 4 minutes Hello folks, I hope you are having a productive day in this pandemic of COVID-19. Let’s move on to our next blog in the series of API automation. Most of us are doing automation using the tool Postman. So while performing automation with postman we have to integrate many other tools and APIs with Postman. Similarly to use the AWS APIs we need to create Continue Reading

DynamoDB Core Components

Amazon DynamoDB: Core Components

Reading Time: 4 minutes   DynamoDB is a part of Amazon Web Services. It is a NoSQL database, which supports key-value and document data structures. In this blog, we will be discussing Core components of DynamoDb. Features of DynamoDb: It is a fully managed NoSQL database. It can store & retrieve any amount of data, and can serve any amount of traffic. To maintain fast performance, it distributes data Continue Reading