Created
July 22, 2022 19:53
-
-
Save nhammad/7aeae185fc3aa10adea24232a153c5f2 to your computer and use it in GitHub Desktop.
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 logging | |
import os | |
import boto3 | |
logger = logging.getLogger() | |
logger.setLevel(logging.INFO) | |
def lambda_handler(event, context): | |
logger.info(f'Hello World!') | |
logger.info(f'## ENVIRONMENT VARIABLES: {os.environ}') | |
logger.info(f'## EVENT: {event}') | |
return { | |
'statusCode': 200, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment