cdk-comprehend-s3olap 2.0.43 → 2.0.46

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 (41) hide show
  1. package/.jsii +3 -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 +19 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/account-2021-02-01.min.json +101 -0
  8. package/node_modules/aws-sdk/apis/athena-2017-05-18.min.json +117 -6
  9. package/node_modules/aws-sdk/apis/athena-2017-05-18.paginators.json +5 -0
  10. package/node_modules/aws-sdk/apis/docdb-2014-10-31.min.json +11 -0
  11. package/node_modules/aws-sdk/apis/frauddetector-2019-11-15.min.json +249 -94
  12. package/node_modules/aws-sdk/apis/iotdeviceadvisor-2020-09-18.min.json +33 -12
  13. package/node_modules/aws-sdk/apis/iotsitewise-2019-12-02.min.json +260 -59
  14. package/node_modules/aws-sdk/apis/iotsitewise-2019-12-02.paginators.json +6 -0
  15. package/node_modules/aws-sdk/apis/kendra-2019-02-03.min.json +73 -72
  16. package/node_modules/aws-sdk/apis/medialive-2017-10-14.min.json +50 -3
  17. package/node_modules/aws-sdk/apis/monitoring-2010-08-01.min.json +54 -29
  18. package/node_modules/aws-sdk/apis/network-firewall-2020-11-12.min.json +91 -48
  19. package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +143 -119
  20. package/node_modules/aws-sdk/apis/transcribe-2017-10-26.min.json +2 -1
  21. package/node_modules/aws-sdk/clients/account.d.ts +104 -6
  22. package/node_modules/aws-sdk/clients/athena.d.ts +127 -0
  23. package/node_modules/aws-sdk/clients/cloudwatch.d.ts +40 -1
  24. package/node_modules/aws-sdk/clients/dms.d.ts +2 -2
  25. package/node_modules/aws-sdk/clients/docdb.d.ts +20 -0
  26. package/node_modules/aws-sdk/clients/ec2.d.ts +1 -1
  27. package/node_modules/aws-sdk/clients/frauddetector.d.ts +176 -5
  28. package/node_modules/aws-sdk/clients/iotdeviceadvisor.d.ts +49 -0
  29. package/node_modules/aws-sdk/clients/iotsitewise.d.ts +192 -0
  30. package/node_modules/aws-sdk/clients/kendra.d.ts +12 -7
  31. package/node_modules/aws-sdk/clients/medialive.d.ts +37 -0
  32. package/node_modules/aws-sdk/clients/networkfirewall.d.ts +53 -2
  33. package/node_modules/aws-sdk/clients/rds.d.ts +137 -87
  34. package/node_modules/aws-sdk/clients/transcribeservice.d.ts +2 -2
  35. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  36. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +15 -15
  37. package/node_modules/aws-sdk/dist/aws-sdk.js +322 -157
  38. package/node_modules/aws-sdk/dist/aws-sdk.min.js +93 -93
  39. package/node_modules/aws-sdk/lib/core.js +1 -1
  40. package/node_modules/aws-sdk/package.json +1 -1
  41. package/package.json +3 -3
@@ -472,6 +472,67 @@
472
472
  }
473
473
  }
474
474
  },
475
+ "GetQueryRuntimeStatistics": {
476
+ "input": {
477
+ "type": "structure",
478
+ "required": [
479
+ "QueryExecutionId"
480
+ ],
481
+ "members": {
482
+ "QueryExecutionId": {}
483
+ }
484
+ },
485
+ "output": {
486
+ "type": "structure",
487
+ "members": {
488
+ "QueryRuntimeStatistics": {
489
+ "type": "structure",
490
+ "members": {
491
+ "Timeline": {
492
+ "type": "structure",
493
+ "members": {
494
+ "QueryQueueTimeInMillis": {
495
+ "type": "long"
496
+ },
497
+ "QueryPlanningTimeInMillis": {
498
+ "type": "long"
499
+ },
500
+ "EngineExecutionTimeInMillis": {
501
+ "type": "long"
502
+ },
503
+ "ServiceProcessingTimeInMillis": {
504
+ "type": "long"
505
+ },
506
+ "TotalExecutionTimeInMillis": {
507
+ "type": "long"
508
+ }
509
+ }
510
+ },
511
+ "Rows": {
512
+ "type": "structure",
513
+ "members": {
514
+ "InputRows": {
515
+ "type": "long"
516
+ },
517
+ "InputBytes": {
518
+ "type": "long"
519
+ },
520
+ "OutputBytes": {
521
+ "type": "long"
522
+ },
523
+ "OutputRows": {
524
+ "type": "long"
525
+ }
526
+ }
527
+ },
528
+ "OutputStage": {
529
+ "shape": "S38"
530
+ }
531
+ }
532
+ }
533
+ }
534
+ }
535
+ },
475
536
  "GetTableMetadata": {
476
537
  "input": {
477
538
  "type": "structure",
@@ -490,7 +551,7 @@
490
551
  "type": "structure",
491
552
  "members": {
492
553
  "TableMetadata": {
493
- "shape": "S35"
554
+ "shape": "S3f"
494
555
  }
495
556
  }
496
557
  }
@@ -703,7 +764,7 @@
703
764
  "TableMetadataList": {
704
765
  "type": "list",
705
766
  "member": {
706
- "shape": "S35"
767
+ "shape": "S3f"
707
768
  }
708
769
  },
709
770
  "NextToken": {}
@@ -1195,7 +1256,57 @@
1195
1256
  }
1196
1257
  }
1197
1258
  },
1198
- "S35": {
1259
+ "S38": {
1260
+ "type": "structure",
1261
+ "members": {
1262
+ "StageId": {
1263
+ "type": "long"
1264
+ },
1265
+ "State": {},
1266
+ "OutputBytes": {
1267
+ "type": "long"
1268
+ },
1269
+ "OutputRows": {
1270
+ "type": "long"
1271
+ },
1272
+ "InputBytes": {
1273
+ "type": "long"
1274
+ },
1275
+ "InputRows": {
1276
+ "type": "long"
1277
+ },
1278
+ "ExecutionTime": {
1279
+ "type": "long"
1280
+ },
1281
+ "QueryStagePlan": {
1282
+ "shape": "S39"
1283
+ },
1284
+ "SubStages": {
1285
+ "type": "list",
1286
+ "member": {
1287
+ "shape": "S38"
1288
+ }
1289
+ }
1290
+ }
1291
+ },
1292
+ "S39": {
1293
+ "type": "structure",
1294
+ "members": {
1295
+ "Name": {},
1296
+ "Identifier": {},
1297
+ "Children": {
1298
+ "type": "list",
1299
+ "member": {
1300
+ "shape": "S39"
1301
+ }
1302
+ },
1303
+ "RemoteSources": {
1304
+ "type": "list",
1305
+ "member": {}
1306
+ }
1307
+ }
1308
+ },
1309
+ "S3f": {
1199
1310
  "type": "structure",
1200
1311
  "required": [
1201
1312
  "Name"
@@ -1210,17 +1321,17 @@
1210
1321
  },
1211
1322
  "TableType": {},
1212
1323
  "Columns": {
1213
- "shape": "S38"
1324
+ "shape": "S3i"
1214
1325
  },
1215
1326
  "PartitionKeys": {
1216
- "shape": "S38"
1327
+ "shape": "S3i"
1217
1328
  },
1218
1329
  "Parameters": {
1219
1330
  "shape": "S1l"
1220
1331
  }
1221
1332
  }
1222
1333
  },
1223
- "S38": {
1334
+ "S3i": {
1224
1335
  "type": "list",
1225
1336
  "member": {
1226
1337
  "type": "structure",
@@ -17,6 +17,11 @@
17
17
  "output_token": "NextToken",
18
18
  "result_key": "DatabaseList"
19
19
  },
20
+ "ListEngineVersions": {
21
+ "input_token": "NextToken",
22
+ "limit_key": "MaxResults",
23
+ "output_token": "NextToken"
24
+ },
20
25
  "ListNamedQueries": {
21
26
  "input_token": "NextToken",
22
27
  "limit_key": "MaxResults",
@@ -261,6 +261,9 @@
261
261
  "shape": "S9"
262
262
  },
263
263
  "DBClusterIdentifier": {},
264
+ "CopyTagsToSnapshot": {
265
+ "type": "boolean"
266
+ },
264
267
  "PromotionTier": {
265
268
  "type": "integer"
266
269
  },
@@ -1235,6 +1238,9 @@
1235
1238
  },
1236
1239
  "NewDBInstanceIdentifier": {},
1237
1240
  "CACertificateIdentifier": {},
1241
+ "CopyTagsToSnapshot": {
1242
+ "type": "boolean"
1243
+ },
1238
1244
  "PromotionTier": {
1239
1245
  "type": "integer"
1240
1246
  },
@@ -1489,6 +1495,7 @@
1489
1495
  ],
1490
1496
  "members": {
1491
1497
  "DBClusterIdentifier": {},
1498
+ "RestoreType": {},
1492
1499
  "SourceDBClusterIdentifier": {},
1493
1500
  "RestoreToTime": {
1494
1501
  "type": "timestamp"
@@ -1780,6 +1787,7 @@
1780
1787
  }
1781
1788
  }
1782
1789
  },
1790
+ "CloneGroupId": {},
1783
1791
  "ClusterCreateTime": {
1784
1792
  "type": "timestamp"
1785
1793
  },
@@ -1906,6 +1914,9 @@
1906
1914
  "KmsKeyId": {},
1907
1915
  "DbiResourceId": {},
1908
1916
  "CACertificateIdentifier": {},
1917
+ "CopyTagsToSnapshot": {
1918
+ "type": "boolean"
1919
+ },
1909
1920
  "PromotionTier": {
1910
1921
  "type": "integer"
1911
1922
  },