Skip to content

Instantly share code, notes, and snippets.

@ox1111
Created February 12, 2019 02:56
Show Gist options
  • Save ox1111/54af165eab3e3ffec1e8e9da1b09e1e2 to your computer and use it in GitHub Desktop.
Save ox1111/54af165eab3e3ffec1e8e9da1b09e1e2 to your computer and use it in GitHub Desktop.
console.log("test for lambda")
exports.handler = async( event ) => {
console.log("async ...");
var name = event.name || 'Anonymous';
console.log("name = " + name );
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