Files
aws-lambda-container/lambda_function.py
2023-08-24 17:49:47 -05:00

4 lines
108 B
Python

import sys
def handler(event, context):
return 'Hello from AWS Lambda using Python' + sys.version + '!'