Skip to content

Instantly share code, notes, and snippets.

@richardhyatt
Created May 4, 2017 21:56
Show Gist options
  • Select an option

  • Save richardhyatt/eca404be96b5c8cae8d06b2a0da38649 to your computer and use it in GitHub Desktop.

Select an option

Save richardhyatt/eca404be96b5c8cae8d06b2a0da38649 to your computer and use it in GitHub Desktop.
Basic Lambda Function
'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