123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- {
- "version": 2,
- "waiters": {
- "EnvironmentExists": {
- "delay": 20,
- "maxAttempts": 20,
- "operation": "DescribeEnvironments",
- "acceptors": [
- {
- "state": "success",
- "matcher": "pathAll",
- "argument": "Environments[].Status",
- "expected": "Ready"
- },
- {
- "state": "retry",
- "matcher": "pathAll",
- "argument": "Environments[].Status",
- "expected": "Launching"
- }
- ]
- },
- "EnvironmentUpdated": {
- "delay": 20,
- "maxAttempts": 20,
- "operation": "DescribeEnvironments",
- "acceptors": [
- {
- "state": "success",
- "matcher": "pathAll",
- "argument": "Environments[].Status",
- "expected": "Ready"
- },
- {
- "state": "retry",
- "matcher": "pathAll",
- "argument": "Environments[].Status",
- "expected": "Updating"
- }
- ]
- },
- "EnvironmentTerminated": {
- "delay": 20,
- "maxAttempts": 20,
- "operation": "DescribeEnvironments",
- "acceptors": [
- {
- "state": "success",
- "matcher": "pathAll",
- "argument": "Environments[].Status",
- "expected": "Terminated"
- },
- {
- "state": "retry",
- "matcher": "pathAll",
- "argument": "Environments[].Status",
- "expected": "Terminating"
- }
- ]
- }
- }
- }
|