We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9683a7f commit 7b7ed39Copy full SHA for 7b7ed39
lambda/lambda_function.py
@@ -1,8 +1,7 @@
1
import json
2
-def lamda_handler(event, context):
+
3
+def lambda_handler(event, context):
4
return {
- "statuscode" : 200,
5
- "body" : json.dumps("Hellow Lambda from vscode-1 for my-lambda_test")
+ "statusCode": 200,
6
+ "body": json.dumps("Hello Lambda from VSCode")
7
}
-
8
0 commit comments