-
-
Save walmsles/463d2a953cdfaa351af6dc3c473ad8bb to your computer and use it in GitHub Desktop.
This file contains 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 boto3 | |
import os | |
from aws_lambda_powertools import Logger, Tracer | |
from aws_lambda_powertools.event_handler import APIGatewayRestResolver | |
tracer = Tracer() | |
logger = Logger() | |
app = APIGatewayRestResolver() | |
@app.get("/hello/<name>") | |
@tracer.capture_method | |
def get_hello_universe(name): | |
if name == "michael": | |
name = "michael, go away!" | |
return {"message": f"hello {name}"} | |
# You can continue to use other utilities just as before | |
@logger.inject_lambda_context() | |
@tracer.capture_lambda_handler | |
def lambda_handler(event, context): | |
return app.resolve(event, context) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment