cdk-comprehend-s3olap 2.0.27 → 2.0.30

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/.jsii +16 -3
  2. package/lib/cdk-comprehend-s3olap.js +2 -2
  3. package/lib/comprehend-lambdas.js +2 -2
  4. package/lib/iam-roles.js +4 -4
  5. package/node_modules/aws-sdk/CHANGELOG.md +12 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/cloudformation-2010-05-15.min.json +50 -49
  8. package/node_modules/aws-sdk/apis/metadata.json +3 -0
  9. package/node_modules/aws-sdk/apis/models.lex.v2-2020-08-07.min.json +112 -111
  10. package/node_modules/aws-sdk/apis/quicksight-2018-04-01.min.json +318 -205
  11. package/node_modules/aws-sdk/apis/rds-2014-10-31.waiters2.json +85 -0
  12. package/node_modules/aws-sdk/apis/rolesanywhere-2018-05-10.examples.json +5 -0
  13. package/node_modules/aws-sdk/apis/rolesanywhere-2018-05-10.min.json +819 -0
  14. package/node_modules/aws-sdk/apis/rolesanywhere-2018-05-10.paginators.json +24 -0
  15. package/node_modules/aws-sdk/apis/ssm-incidents-2018-05-10.min.json +20 -12
  16. package/node_modules/aws-sdk/apis/synthetics-2017-10-11.min.json +272 -39
  17. package/node_modules/aws-sdk/apis/synthetics-2017-10-11.paginators.json +15 -0
  18. package/node_modules/aws-sdk/clients/all.d.ts +1 -0
  19. package/node_modules/aws-sdk/clients/all.js +2 -1
  20. package/node_modules/aws-sdk/clients/cloudformation.d.ts +5 -0
  21. package/node_modules/aws-sdk/clients/configservice.d.ts +12 -12
  22. package/node_modules/aws-sdk/clients/lexmodelsv2.d.ts +5 -0
  23. package/node_modules/aws-sdk/clients/quicksight.d.ts +182 -20
  24. package/node_modules/aws-sdk/clients/rds.d.ts +95 -79
  25. package/node_modules/aws-sdk/clients/rolesanywhere.d.ts +788 -0
  26. package/node_modules/aws-sdk/clients/rolesanywhere.js +18 -0
  27. package/node_modules/aws-sdk/clients/ssmincidents.d.ts +9 -0
  28. package/node_modules/aws-sdk/clients/synthetics.d.ts +270 -30
  29. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
  30. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +48 -11
  31. package/node_modules/aws-sdk/dist/aws-sdk.js +141 -52
  32. package/node_modules/aws-sdk/dist/aws-sdk.min.js +37 -37
  33. package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
  34. package/node_modules/aws-sdk/lib/core.js +1 -1
  35. package/node_modules/aws-sdk/package.json +1 -1
  36. package/package.json +4 -4
@@ -255,6 +255,91 @@
255
255
  "argument": "DBClusterSnapshots[].Status"
256
256
  }
257
257
  ]
258
+ },
259
+ "DBClusterAvailable" : {
260
+ "delay": 30,
261
+ "operation": "DescribeDBClusters",
262
+ "maxAttempts": 60,
263
+ "acceptors": [
264
+ {
265
+ "expected": "available",
266
+ "matcher": "pathAll",
267
+ "state": "success",
268
+ "argument": "DBClusters[].Status"
269
+ },
270
+ {
271
+ "expected": "deleted",
272
+ "matcher": "pathAny",
273
+ "state": "failure",
274
+ "argument": "DBClusters[].Status"
275
+ },
276
+ {
277
+ "expected": "deleting",
278
+ "matcher": "pathAny",
279
+ "state": "failure",
280
+ "argument": "DBClusters[].Status"
281
+ },
282
+ {
283
+ "expected": "failed",
284
+ "matcher": "pathAny",
285
+ "state": "failure",
286
+ "argument": "DBClusters[].Status"
287
+ },
288
+ {
289
+ "expected": "incompatible-restore",
290
+ "matcher": "pathAny",
291
+ "state": "failure",
292
+ "argument": "DBClusters[].Status"
293
+ },
294
+ {
295
+ "expected": "incompatible-parameters",
296
+ "matcher": "pathAny",
297
+ "state": "failure",
298
+ "argument": "DBClusters[].Status"
299
+ }
300
+ ]
301
+ },
302
+ "DBClusterDeleted": {
303
+ "delay": 30,
304
+ "operation": "DescribeDBClusters",
305
+ "maxAttempts": 60,
306
+ "acceptors": [
307
+ {
308
+ "expected": true,
309
+ "matcher": "path",
310
+ "state": "success",
311
+ "argument": "length(DBClusters) == `0`"
312
+ },
313
+ {
314
+ "expected": "DBClusterNotFoundFault",
315
+ "matcher": "error",
316
+ "state": "success"
317
+ },
318
+ {
319
+ "expected": "creating",
320
+ "matcher": "pathAny",
321
+ "state": "failure",
322
+ "argument": "DBClusters[].Status"
323
+ },
324
+ {
325
+ "expected": "modifying",
326
+ "matcher": "pathAny",
327
+ "state": "failure",
328
+ "argument": "DBClusters[].Status"
329
+ },
330
+ {
331
+ "expected": "rebooting",
332
+ "matcher": "pathAny",
333
+ "state": "failure",
334
+ "argument": "DBClusters[].Status"
335
+ },
336
+ {
337
+ "expected": "resetting-master-credentials",
338
+ "matcher": "pathAny",
339
+ "state": "failure",
340
+ "argument": "DBClusters[].Status"
341
+ }
342
+ ]
258
343
  }
259
344
  }
260
345
  }
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }