12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- {
- "version": 2,
- "waiters": {
- "FleetStarted": {
- "delay": 30,
- "maxAttempts": 40,
- "operation": "DescribeFleets",
- "acceptors": [
- {
- "state": "success",
- "matcher": "pathAll",
- "argument": "Fleets[].State",
- "expected": "RUNNING"
- },
- {
- "state": "failure",
- "matcher": "pathAny",
- "argument": "Fleets[].State",
- "expected": "STOPPING"
- },
- {
- "state": "failure",
- "matcher": "pathAny",
- "argument": "Fleets[].State",
- "expected": "STOPPED"
- }
- ]
- },
- "FleetStopped": {
- "delay": 30,
- "maxAttempts": 40,
- "operation": "DescribeFleets",
- "acceptors": [
- {
- "state": "success",
- "matcher": "pathAll",
- "argument": "Fleets[].State",
- "expected": "STOPPED"
- },
- {
- "state": "failure",
- "matcher": "pathAny",
- "argument": "Fleets[].State",
- "expected": "STARTING"
- },
- {
- "state": "failure",
- "matcher": "pathAny",
- "argument": "Fleets[].State",
- "expected": "RUNNING"
- }
- ]
- }
- }
- }
|