使用 AWS Lambda 构建无服务器应用
Claudio Canales
Senior DevOps Engineer
冷启动
热启动
import boto3 sts = boto3.client("sts") def handler(event, context): return sts.get_caller_identity()
/tmp