UNPKG
awsm-examples
Version:
latest (0.0.5)
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
AWSM module with basic examples
github.com/remicastaing/awsm-examples
remicastaing/awsm-examples
awsm-examples
/
awsm
/
testget1
/
index.js
14 lines
(11 loc)
•
263 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/** * 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
{ test:
event
.test}; };