The DynamoDB Scan API accesses every items in a table (or secondary index). It is the equivalent of a select * from
query. One of the things I will cover in this blog is how to use Scan API with the DynamoDB Go SDK.
To scan a table, we need some data to begin with! So in the process, I will also go into how to use the Batch
API to write bulk data in DynamoDB
. You can use the BatchWriteItem API to create or delete items in batches (of twenty five) and it’s possible to you can combine these operations across multiple tables.