Skip to content

Instantly share code, notes, and snippets.

@lakshmantgld
Created October 27, 2017 15:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lakshmantgld/1d61bec7ed98216973b18e5087127bef to your computer and use it in GitHub Desktop.
Save lakshmantgld/1d61bec7ed98216973b18e5087127bef to your computer and use it in GitHub Desktop.
module.exports.hello = (event, context, callback) => {
const response = {
message: "Success!! You invoked a sleeping Lambda"
};
callback(null, response);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment