-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstep-function-template-v1.json
More file actions
41 lines (40 loc) · 1.1 KB
/
Copy pathstep-function-template-v1.json
File metadata and controls
41 lines (40 loc) · 1.1 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
{
"Comment": "Demo a step function for QC parallel processing using lambda functions",
"StartAt": "Start QC",
"States": {
"Start QC": {
"Comment": "A Pass state passes its input to its output, without performing work. Pass states are useful when constructing and debugging state machines.",
"Type": "Pass",
"Next": "Parallel Processing"
},
"Parallel Processing": {
"Comment": "A Parallel state can be used to create parallel branches of execution in your state machine.",
"Type": "Parallel",
"Next": "End QC",
"Branches": [
{
"StartAt": "QC Process 1",
"States": {
"QC Process 1": {
"Type": "Pass",
"End": true
}
}
},
{
"StartAt": "QC Process 2",
"States": {
"QC Process 2": {
"Type": "Pass",
"End": true
}
}
}
]
},
"End QC": {
"Type": "Pass",
"End": true
}
}
}