-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
53 lines (45 loc) · 1013 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
const aws = require('aws-sdk');
const async = require('async');
const bunyan = require('bunyan');
class LambdaFunction {
constructor(event, context, lambdaCallback) {
this.log = bunyan.createLogger({
name: "LetsLog",
level: "info"
});
this.log.info(event);
async.waterfall([
(...args) => {
this.doA(event, ...args);
},
(...args) => {
this.doB(...args);
}
],
(...args) => {
this.finishLambda(lambdaCallback, ...args);
}
);
}
doA(event, callback) {
let example = 1;
if (example === 2) {
callback("We had a problem!");
} else {
callback(null, example);
}
}
doB(example, callback) {
callback(null);
}
finishLambda(lambdaCallback, err) {
if (err === null || err === undefined) {
lambdaCallback(null, "We succeeded.");
} else {
lambdaCallback(err);
}
}
}
exports.handler = (...args) => {
return new LambdaFunction(...args);
};