Skip to content

Instantly share code, notes, and snippets.

@robinvdvleuten
Last active March 22, 2023 12:49
Show Gist options
  • Save robinvdvleuten/26524b5af1b2c295d448c52967e896ae to your computer and use it in GitHub Desktop.
Save robinvdvleuten/26524b5af1b2c295d448c52967e896ae to your computer and use it in GitHub Desktop.
Sample "Hello, World!" Lambda function
/**
* Very simple Lambda which just returns a string on invocation.
*/
exports.handler = function(event, context) {
context.succeed('Hello, World!');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment