[AWS -Python] DynamoDB with Boto3

Let’s work with DynamoDB with the Python Boto3 library.

We can

  • list tables
  • retrieve table information including keys and indexes
  • create a table
  • read, write, and delete items
  • delete a table

https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html

Continue reading “[AWS -Python] DynamoDB with Boto3”

[AWS Lab] API Gateway – Request Validation – Query Strings

In this lab, we will learn how to validate an API request.

Overview

  • Source: API Gateway – REST API
    • Route: GET /greet?name=abc
  • Target: Mock
  • Returns the validation error when the required query string ‘name’ does not exist
Continue reading “[AWS Lab] API Gateway – Request Validation – Query Strings”