Skip to content

Instantly share code, notes, and snippets.

@mannharleen
Last active October 25, 2019 05:35
Show Gist options
  • Save mannharleen/9b542427737d3e949fc8f58b73e980e1 to your computer and use it in GitHub Desktop.
Save mannharleen/9b542427737d3e949fc8f58b73e980e1 to your computer and use it in GitHub Desktop.
defaultRouteLambdaAWSELB
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