-
Notifications
You must be signed in to change notification settings - Fork 0
/
state.asl.json
45 lines (45 loc) · 1.11 KB
/
state.asl.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
{
"Comment": "Create/Delete AWS ElasticSearch alarms when an ElasticSearch domain was created/deleted.",
"StartAt": "LoadESProvisionInput",
"States": {
"LoadESProvisionInput": {
"Type": "Task",
"Resource": "${LoadESProvisionInputFunctionArn}",
"InputPath": "$",
"ResultPath": "$",
"Next": "CreatedOrDeleted?"
},
"CreatedOrDeleted?": {
"Type": "Choice",
"Choices": [
{
"Variable": "$.operation",
"StringEquals": "created",
"Next": "CreateESAlarms"
}, {
"Variable": "$.operation",
"StringEquals": "deleted",
"Next": "DeleteESAlarms"
}
],
"Default": "NoActionNeeded"
},
"CreateESAlarms": {
"Type": "Task",
"Resource": "${CreateESAlarmsFunctionArn}",
"InputPath": "$",
"ResultPath": "$",
"End": true
},
"DeleteESAlarms": {
"Type": "Task",
"Resource": "${DeleteESAlarmsFunctionArn}",
"InputPath": "$",
"ResultPath": "$",
"End": true
},
"NoActionNeeded": {
"Type": "Succeed"
}
}
}