-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstep_function_setup.json
55 lines (55 loc) · 2.13 KB
/
step_function_setup.json
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
54
55
{
"Comment": "Step function to run imba process",
"StartAt": "remove_feature_files",
"States": {
"remove_feature_files": {
"Type": "Task",
"Resource": "arn:aws:lambda:ap-southeast-2:xxxxxxx:function:remove_feature_files:$LATEST",
"ResultPath": "$.remove_feature_files",
"Next": "exe_query_order_prior",
"TimeoutSeconds": 60
},
"exe_query_order_prior": {
"Type": "Task",
"Resource": "arn:aws:lambda:ap-southeast-2:xxxxxxx:function:exe_query_order_prior:$LATEST",
"ResultPath": "$.exe_query_order_prior",
"Next": "exe_query_user_features_1",
"TimeoutSeconds": 60
},
"exe_query_user_features_1": {
"Type": "Task",
"Resource": "arn:aws:lambda:ap-southeast-2:xxxxxxx:function:exe_query_user_features_1:$LATEST",
"ResultPath": "$.exe_query_user_features_1",
"Next": "exe_query_user_features_2",
"TimeoutSeconds": 60
},
"exe_query_user_features_2": {
"Type": "Task",
"Resource": "arn:aws:lambda:ap-southeast-2:xxxxxxx:function:exe_query_user_features_2:$LATEST",
"ResultPath": "$.exe_query_user_features_2",
"Next": "exe_query_up_features",
"TimeoutSeconds": 60
},
"exe_query_up_features": {
"Type": "Task",
"Resource": "arn:aws:lambda:ap-southeast-2:xxxxxxx:function:exe_query_up_features:$LATEST",
"ResultPath": "$.exe_query_up_features",
"Next": "exe_query_prd_features",
"TimeoutSeconds": 60
},
"exe_query_prd_features": {
"Type": "Task",
"Resource": "arn:aws:lambda:ap-southeast-2:xxxxxxx:function:exe_query_prd_features:$LATEST",
"ResultPath": "$.exe_query_prd_features",
"Next": "exe_trigger_glue_job",
"TimeoutSeconds": 60
},
"exe_trigger_glue_job": {
"Type": "Task",
"Resource": "arn:aws:lambda:ap-southeast-2:xxxxxxx:function:exe_trigger_glue_job:$LATEST",
"ResultPath": "$.exe_trigger_glue_job",
"TimeoutSeconds": 60,
"End": true
}
}
}