Created
May 4, 2017 21:56
-
-
Save richardhyatt/eca404be96b5c8cae8d06b2a0da38649 to your computer and use it in GitHub Desktop.
Basic 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
| 'use strict'; | |
| exports.handler = function( event, context, callback ) { | |
| // Do something here | |
| callback( null, 'success!' ); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment