Skip to content

Commit 7b7ed39

Browse files
committed
corrected lambda_function
1 parent 9683a7f commit 7b7ed39

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

lambda/lambda_function.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
import json
2-
def lamda_handler(event, context):
2+
3+
def lambda_handler(event, context):
34
return {
4-
"statuscode" : 200,
5-
"body" : json.dumps("Hellow Lambda from vscode-1 for my-lambda_test")
5+
"statusCode": 200,
6+
"body": json.dumps("Hello Lambda from VSCode")
67
}
7-
8-

0 commit comments

Comments
 (0)