Created
October 30, 2018 17:08
-
-
Save excenter/54dfcdec3157734838eadc4bcf99dd03 to your computer and use it in GitHub Desktop.
a lambda that just logs everything.
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) | |
// TODO implement | |
const response = { | |
statusCode: 200, | |
body: JSON.stringify('Hello from Lambda!') | |
}; | |
return response; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment