Skip to content

Instantly share code, notes, and snippets.

@excenter
Created October 30, 2018 17:08
Show Gist options
  • Save excenter/54dfcdec3157734838eadc4bcf99dd03 to your computer and use it in GitHub Desktop.
Save excenter/54dfcdec3157734838eadc4bcf99dd03 to your computer and use it in GitHub Desktop.
a lambda that just logs everything.
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