Skip to content

Instantly share code, notes, and snippets.

@Rahul91
Created December 31, 2022 15:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Rahul91/38d805830108f5571d9eea52f4aab5f7 to your computer and use it in GitHub Desktop.
Save Rahul91/38d805830108f5571d9eea52f4aab5f7 to your computer and use it in GitHub Desktop.
lamdba python handler
def lambda_handler(event, context):
message = 'Hello, World!'
return {
'statusCode': 200,
'body': message
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment