git-off

git off handles large files in git repos
git clone https://noulin.net/git/git-off.git
Log | Files | Refs | README

dynamodb-2012-08-10.waiters2.json (727B)


      1 {
      2   "version": 2,
      3   "waiters": {
      4     "TableExists": {
      5       "delay": 20,
      6       "operation": "DescribeTable",
      7       "maxAttempts": 25,
      8       "acceptors": [
      9         {
     10           "expected": "ACTIVE",
     11           "matcher": "path",
     12           "state": "success",
     13           "argument": "Table.TableStatus"
     14         },
     15         {
     16           "expected": "ResourceNotFoundException",
     17           "matcher": "error",
     18           "state": "retry"
     19         }
     20       ]
     21     },
     22     "TableNotExists": {
     23       "delay": 20,
     24       "operation": "DescribeTable",
     25       "maxAttempts": 25,
     26       "acceptors": [
     27         {
     28           "expected": "ResourceNotFoundException",
     29           "matcher": "error",
     30           "state": "success"
     31         }
     32       ]
     33     }
     34   }
     35 }