schemas-2019-12-02.waiters2.json 824 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "version": 2,
  3. "waiters": {
  4. "CodeBindingExists": {
  5. "description": "Wait until code binding is generated",
  6. "delay": 2,
  7. "operation": "DescribeCodeBinding",
  8. "maxAttempts": 30,
  9. "acceptors": [
  10. {
  11. "expected": "CREATE_COMPLETE",
  12. "matcher": "path",
  13. "state": "success",
  14. "argument": "Status"
  15. },
  16. {
  17. "expected": "CREATE_IN_PROGRESS",
  18. "matcher": "path",
  19. "state": "retry",
  20. "argument": "Status"
  21. },
  22. {
  23. "expected": "CREATE_FAILED",
  24. "matcher": "path",
  25. "state": "failure",
  26. "argument": "Status"
  27. },
  28. {
  29. "matcher": "error",
  30. "expected": "NotFoundException",
  31. "state": "failure"
  32. }
  33. ]
  34. }
  35. }
  36. }