Objectives
Lab Details
  1. Install the AWS CLI
  2. Use the aws configure command to create a valid aws credentials file
  3. Download and start a local instance of AWS DynamoDB
  4. Create a table using the following command
    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:8000

    Take a screenshot command line confirmation.

  5. Load BaseballStats seed data for players, games, and teams using the .json starter files named

    Take a screenshot of the command line confirmation.

  6. Running against the local instance of dynamodb, scan the entire table

    Take a screenshot of the results showing the scanned data.

  7. Running against the local instance of dynamodb, query the table for teamID = TEAMINFO_SDP

    Take a screenshot of the results showing the queried data.

What did I learn?