UNPKG

awsm-examples

Version:
14 lines (11 loc) 270 B
/** * AWS Module: Action: Modularized Code */ // Export For Lambda Handler module.exports.run = function(event, context, cb) { return cb(null, action(event, context)); }; // Your Code var action = function(event, context) { return {'status of' : event.var3}; };