123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- {
- "version": 2,
- "waiters": {
- "LoadBalancerExists": {
- "delay": 15,
- "operation": "DescribeLoadBalancers",
- "maxAttempts": 40,
- "acceptors": [
- {
- "matcher": "status",
- "expected": 200,
- "state": "success"
- },
- {
- "matcher": "error",
- "expected": "LoadBalancerNotFound",
- "state": "retry"
- }
- ]
- },
- "LoadBalancerAvailable": {
- "delay": 15,
- "operation": "DescribeLoadBalancers",
- "maxAttempts": 40,
- "acceptors": [
- {
- "state": "success",
- "matcher": "pathAll",
- "argument": "LoadBalancers[].State.Code",
- "expected": "active"
- },
- {
- "state": "retry",
- "matcher": "pathAny",
- "argument": "LoadBalancers[].State.Code",
- "expected": "provisioning"
- },
- {
- "state": "retry",
- "matcher": "error",
- "expected": "LoadBalancerNotFound"
- }
- ]
- },
- "LoadBalancersDeleted": {
- "delay": 15,
- "operation": "DescribeLoadBalancers",
- "maxAttempts": 40,
- "acceptors": [
- {
- "state": "retry",
- "matcher": "pathAll",
- "argument": "LoadBalancers[].State.Code",
- "expected": "active"
- },
- {
- "matcher": "error",
- "expected": "LoadBalancerNotFound",
- "state": "success"
- }
- ]
- },
- "TargetInService":{
- "delay":15,
- "maxAttempts":40,
- "operation":"DescribeTargetHealth",
- "acceptors":[
- {
- "argument":"TargetHealthDescriptions[].TargetHealth.State",
- "expected":"healthy",
- "matcher":"pathAll",
- "state":"success"
- },
- {
- "matcher": "error",
- "expected": "InvalidInstance",
- "state": "retry"
- }
- ]
- },
- "TargetDeregistered": {
- "delay": 15,
- "maxAttempts": 40,
- "operation": "DescribeTargetHealth",
- "acceptors": [
- {
- "matcher": "error",
- "expected": "InvalidTarget",
- "state": "success"
- },
- {
- "argument":"TargetHealthDescriptions[].TargetHealth.State",
- "expected":"unused",
- "matcher":"pathAll",
- "state":"success"
- }
- ]
- }
- }
- }
|