From the course: AWS for Developers: DynamoDB

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Scanning data

Scanning data - Amazon Web Services (AWS) Tutorial

From the course: AWS for Developers: DynamoDB

Start my 1-month free trial

Scanning data

- [Instructor] Returning to the AWS Management Console, I've selected my DynamoDB table baseball stats and I've selected the Items tab. If you have any items in your table, go ahead and check the check box and select Actions, Delete, from the drop down and let's clear that table out. We're going to add some rows to this table now. You're going to need the example files for this. So if you have the example folders and look for 02_02, you'll see three .json files, games.json, players.json, and teams.json. The structure of these files isn't important right now, we'll get into that later. Right now we're just going to use these files to see our database. So let's open up a command prompt now that we've configured our AWS instance, and we're going to go ahead and type aws, dynamodb, batch-write-item, minus minus, request-items and we go ahead and select file://, teams.json, I put a dot slash 'cause I want it to run from this folder. And I get UnprocessedItems equals empty which means…

Contents