12345678910111213141516171819202122 |
- {
- "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"
- } ]
- }
- }
- }
|