This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
import boto3 | |
dynamodb = boto3.resource("dynamodb") | |
def _qs(event): | |
return event.get("queryStringParameters") or {} | |
def lambda_handler(event, context): | |
qs = _qs(event) |