Creating Items in Bulk Using CLI
Write the request file and use BatchWriteItem API for creating items.
We'll cover the following...
We'll cover the following...
We can perform two operations on a bulk of items, using this API. These operations are:
1. Write
2. Delete
These operations work similarly to the individual put and delete operations. In this lesson, we will discuss how to put items using batch-write-item
. I would highly recommend that we figure out how to delete items on our own.
Creating a request file
Although you don’t need a request file, it is a ...