Last active
March 22, 2023 12:49
-
-
Save robinvdvleuten/26524b5af1b2c295d448c52967e896ae to your computer and use it in GitHub Desktop.
Sample "Hello, World!" Lambda function
This file contains hidden or 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
/** | |
* 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