-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathstep-definition.json
More file actions
48 lines (47 loc) · 1.4 KB
/
step-definition.json
File metadata and controls
48 lines (47 loc) · 1.4 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
{
"Comment": "Parallel Demo",
"StartAt": "Parallel State",
"States":
{
"Parallel State": {
"Type": "Parallel",
"Next": "combine",
"Branches": [
{
"StartAt": "adam",
"States": {
"adam": {
"Type": "Task",
"Resource": "arn:aws:states:::lambda:invoke",
"Parameters": {
"FunctionName": "arn:aws:lambda:us-east-1:000000000000:function:adam",
"Payload": {"input.$": "$"}},
"OutputPath": "$.Payload",
"End": true}}
},
{
"StartAt": "cole",
"States": {
"cole": {
"Type": "Task",
"Resource": "arn:aws:states:::lambda:invoke",
"Parameters": {
"FunctionName": "arn:aws:lambda:us-east-1:000000000000:function:cole",
"Payload": {"input.$": "$"}},
"OutputPath": "$.Payload",
"End": true
}
}
}
]
},
"combine": {
"Type": "Task",
"Resource": "arn:aws:states:::lambda:invoke",
"Parameters": {
"FunctionName": "arn:aws:lambda:us-east-1:000000000000:function:combine",
"Payload": {"input.$": "$"}},
"OutputPath": "$.Payload",
"End": true}
}
}