blob: c0080e29c58fdde079c7eca85f378ec59c933c14 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{
"version" : 2,
"waiters" : {
"ContactScheduled" : {
"description" : "Waits until a contact has been scheduled",
"delay" : 5,
"maxAttempts" : 180,
"operation" : "DescribeContact",
"acceptors" : [ {
"matcher" : "path",
"argument" : "contactStatus",
"state" : "failure",
"expected" : "FAILED_TO_SCHEDULE"
}, {
"matcher" : "path",
"argument" : "contactStatus",
"state" : "success",
"expected" : "SCHEDULED"
} ]
}
}
}
|