Last active
October 25, 2019 05:35
-
-
Save mannharleen/9b542427737d3e949fc8f58b73e980e1 to your computer and use it in GitHub Desktop.
defaultRouteLambdaAWSELB
This file contains 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
exports.handler = async (event) => { | |
console.log(event) | |
let response = { | |
statusCode: 200, | |
body: JSON.stringify('Hello from Lambda!'), | |
headers: {"content-type": "text/html"} | |
}; | |
return response; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment