1{ 2 "version" : 2, 3 "waiters" : { 4 "ServerOffline" : { 5 "delay" : 30, 6 "maxAttempts" : 120, 7 "operation" : "DescribeServer", 8 "acceptors" : [ { 9 "matcher" : "path", 10 "argument" : "Server.State", 11 "state" : "success", 12 "expected" : "OFFLINE" 13 }, { 14 "matcher" : "path", 15 "argument" : "Server.State", 16 "state" : "failure", 17 "expected" : "STOP_FAILED" 18 } ] 19 }, 20 "ServerOnline" : { 21 "delay" : 30, 22 "maxAttempts" : 120, 23 "operation" : "DescribeServer", 24 "acceptors" : [ { 25 "matcher" : "path", 26 "argument" : "Server.State", 27 "state" : "success", 28 "expected" : "ONLINE" 29 }, { 30 "matcher" : "path", 31 "argument" : "Server.State", 32 "state" : "failure", 33 "expected" : "START_FAILED" 34 } ] 35 } 36 } 37}