-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.js
More file actions
51 lines (44 loc) · 1.08 KB
/
index.js
File metadata and controls
51 lines (44 loc) · 1.08 KB
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
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"
});
async.waterfall([
(...args) => {
this.invokeStepFunction(...args);
}
],
(...args) => {
this.finishLambda(lambdaCallback, ...args);
}
);
}
invokeStepFunction(callback) {
const stepFunction = new aws.StepFunctions();
const params = {
stateMachineArn: `arn:aws:states:us-east-1:975366878261:stateMachine:HelloWorld`,
input: JSON.stringify({})
};
stepFunction.startExecution(params, (err, data) => {
if (err) {
callback(err);
} else {
callback(null);
}
});
}
finishLambda(lambdaCallback, err) {
if (err === null || err === undefined) {
lambdaCallback(null, "We succeeded.");
} else {
lambdaCallback(err);
}
}
}
exports.handler = (...args) => {
return new LambdaFunction(...args);
};