Code Challenge #5:
Send 1000 Items to Amazon DynamoDB
Instructions:
Write code that will put 1000 items into an Amazon DynamoDB table in the us-west-2 region, scan that table, and finally delete that table.
Go here for more information on participating in the AWS re:Invent Code Challenge and prizes.
Services Used:
- Amazon DynamoDB
Your code should include:
- Code for creating a table
- Code for putting items
- Code for scanning the table and counting the items
- Code for deleting the table
Your output should include:
The output should declare the operations you are performing to make it clear what your code is doing when it is run. For example:
Creating the CodeChallenge table... Complete. Putting 25 items into the table... Complete. Putting 25 items into the table... Complete. [...] Putting 25 items into the table... Complete. Scanning the table to count items... Complete. There are 1000 items in the table. Deleting the table ... Complete.
