Serverless Applications with AWS Lambda
Claudio Canales
Senior DevOps Engineer


Cold start
Warm start



import boto3
sts = boto3.client("sts")
def handler(event, context):
return sts.get_caller_identity()

/tmp for small temporary files.








Serverless Applications with AWS Lambda