Objectives
- Install and configure AWS CLI
 - Install AWS DynamoDB locally
 - Create a local AWS DynamoDB table
 - Load seed data into a local table
 - Scan local data
 - Query local data
 
aws dynamodb create-table --table-name BaseballStats --attribute-definitions AttributeName=TeamID,AttributeType=S AttributeName=SK,AttributeType=S --key-schema AttributeName=TeamID,KeyType=HASH AttributeName=SK,KeyType=RANGE --provisioned-throughput ReadCapacityUnits=5,WriteCapacityUnits=5 --endpoint-url http://localhost:8000Take a screenshot command line confirmation.
Take a screenshot of the command line confirmation.
Take a screenshot of the results showing the scanned data.
Take a screenshot of the results showing the queried data.