cdk-comprehend-s3olap 2.0.230 → 2.0.232

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 (46) hide show
  1. package/.jsii +4 -4
  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 +23 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/amplifyuibuilder-2021-08-11.min.json +40 -9
  8. package/node_modules/aws-sdk/apis/autoscaling-2011-01-01.examples.json +73 -10
  9. package/node_modules/aws-sdk/apis/autoscaling-2011-01-01.min.json +61 -52
  10. package/node_modules/aws-sdk/apis/cleanrooms-2022-02-17.min.json +601 -85
  11. package/node_modules/aws-sdk/apis/cleanrooms-2022-02-17.paginators.json +12 -0
  12. package/node_modules/aws-sdk/apis/dms-2016-01-01.min.json +60 -16
  13. package/node_modules/aws-sdk/apis/dms-2016-01-01.paginators.json +5 -0
  14. package/node_modules/aws-sdk/apis/inspector2-2020-06-08.min.json +291 -192
  15. package/node_modules/aws-sdk/apis/internetmonitor-2021-06-03.min.json +37 -19
  16. package/node_modules/aws-sdk/apis/lookoutequipment-2020-12-15.min.json +337 -23
  17. package/node_modules/aws-sdk/apis/lookoutequipment-2020-12-15.paginators.json +5 -0
  18. package/node_modules/aws-sdk/apis/medialive-2017-10-14.min.json +12 -0
  19. package/node_modules/aws-sdk/apis/omics-2022-11-28.min.json +32 -29
  20. package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +295 -177
  21. package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +571 -556
  22. package/node_modules/aws-sdk/apis/scheduler-2021-06-30.min.json +15 -12
  23. package/node_modules/aws-sdk/clients/amplifyuibuilder.d.ts +48 -4
  24. package/node_modules/aws-sdk/clients/autoscaling.d.ts +13 -2
  25. package/node_modules/aws-sdk/clients/batch.d.ts +9 -9
  26. package/node_modules/aws-sdk/clients/cleanrooms.d.ts +516 -9
  27. package/node_modules/aws-sdk/clients/codestarconnections.d.ts +10 -10
  28. package/node_modules/aws-sdk/clients/dms.d.ts +65 -1
  29. package/node_modules/aws-sdk/clients/drs.d.ts +1 -1
  30. package/node_modules/aws-sdk/clients/inspector2.d.ts +101 -2
  31. package/node_modules/aws-sdk/clients/internetmonitor.d.ts +49 -26
  32. package/node_modules/aws-sdk/clients/lookoutequipment.d.ts +522 -15
  33. package/node_modules/aws-sdk/clients/medialive.d.ts +16 -0
  34. package/node_modules/aws-sdk/clients/omics.d.ts +13 -0
  35. package/node_modules/aws-sdk/clients/polly.d.ts +2 -2
  36. package/node_modules/aws-sdk/clients/rds.d.ts +194 -8
  37. package/node_modules/aws-sdk/clients/route53.d.ts +9 -9
  38. package/node_modules/aws-sdk/clients/sagemaker.d.ts +33 -8
  39. package/node_modules/aws-sdk/clients/scheduler.d.ts +16 -3
  40. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  41. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +16 -16
  42. package/node_modules/aws-sdk/dist/aws-sdk.js +359 -232
  43. package/node_modules/aws-sdk/dist/aws-sdk.min.js +49 -49
  44. package/node_modules/aws-sdk/lib/core.js +1 -1
  45. package/node_modules/aws-sdk/package.json +1 -1
  46. package/package.json +5 -5
@@ -1,5 +1,17 @@
1
1
  {
2
2
  "pagination": {
3
+ "ListAnalysisTemplates": {
4
+ "input_token": "nextToken",
5
+ "output_token": "nextToken",
6
+ "limit_key": "maxResults",
7
+ "result_key": "analysisTemplateSummaries"
8
+ },
9
+ "ListCollaborationAnalysisTemplates": {
10
+ "input_token": "nextToken",
11
+ "output_token": "nextToken",
12
+ "limit_key": "maxResults",
13
+ "result_key": "collaborationAnalysisTemplateSummaries"
14
+ },
3
15
  "ListCollaborations": {
4
16
  "input_token": "nextToken",
5
17
  "output_token": "nextToken",
@@ -837,6 +837,50 @@
837
837
  }
838
838
  }
839
839
  },
840
+ "DescribeEngineVersions": {
841
+ "input": {
842
+ "type": "structure",
843
+ "members": {
844
+ "MaxRecords": {
845
+ "type": "integer"
846
+ },
847
+ "Marker": {}
848
+ }
849
+ },
850
+ "output": {
851
+ "type": "structure",
852
+ "members": {
853
+ "EngineVersions": {
854
+ "type": "list",
855
+ "member": {
856
+ "type": "structure",
857
+ "members": {
858
+ "Version": {},
859
+ "Lifecycle": {},
860
+ "ReleaseStatus": {},
861
+ "LaunchDate": {
862
+ "type": "timestamp"
863
+ },
864
+ "AutoUpgradeDate": {
865
+ "type": "timestamp"
866
+ },
867
+ "DeprecationDate": {
868
+ "type": "timestamp"
869
+ },
870
+ "ForceUpgradeDate": {
871
+ "type": "timestamp"
872
+ },
873
+ "AvailableUpgrades": {
874
+ "type": "list",
875
+ "member": {}
876
+ }
877
+ }
878
+ }
879
+ },
880
+ "Marker": {}
881
+ }
882
+ }
883
+ },
840
884
  "DescribeEventCategories": {
841
885
  "input": {
842
886
  "type": "structure",
@@ -1036,7 +1080,7 @@
1036
1080
  "type": "long"
1037
1081
  },
1038
1082
  "Server": {
1039
- "shape": "S5a"
1083
+ "shape": "S5g"
1040
1084
  },
1041
1085
  "SoftwareDetails": {
1042
1086
  "type": "structure",
@@ -1164,7 +1208,7 @@
1164
1208
  },
1165
1209
  "Complexity": {},
1166
1210
  "Server": {
1167
- "shape": "S5a"
1211
+ "shape": "S5g"
1168
1212
  },
1169
1213
  "DatabaseInstance": {
1170
1214
  "type": "structure",
@@ -1407,7 +1451,7 @@
1407
1451
  "type": "structure",
1408
1452
  "members": {
1409
1453
  "RefreshSchemasStatus": {
1410
- "shape": "S6g"
1454
+ "shape": "S6l"
1411
1455
  }
1412
1456
  }
1413
1457
  }
@@ -1550,7 +1594,7 @@
1550
1594
  "ReplicationTableStatistics": {
1551
1595
  "type": "list",
1552
1596
  "member": {
1553
- "shape": "S6y"
1597
+ "shape": "S73"
1554
1598
  }
1555
1599
  }
1556
1600
  }
@@ -1702,7 +1746,7 @@
1702
1746
  "Replications": {
1703
1747
  "type": "list",
1704
1748
  "member": {
1705
- "shape": "S7g"
1749
+ "shape": "S7l"
1706
1750
  }
1707
1751
  }
1708
1752
  }
@@ -1757,7 +1801,7 @@
1757
1801
  "TableStatistics": {
1758
1802
  "type": "list",
1759
1803
  "member": {
1760
- "shape": "S6y"
1804
+ "shape": "S73"
1761
1805
  }
1762
1806
  },
1763
1807
  "Marker": {}
@@ -2121,7 +2165,7 @@
2121
2165
  "type": "structure",
2122
2166
  "members": {
2123
2167
  "RefreshSchemasStatus": {
2124
- "shape": "S6g"
2168
+ "shape": "S6l"
2125
2169
  }
2126
2170
  }
2127
2171
  }
@@ -2136,7 +2180,7 @@
2136
2180
  "members": {
2137
2181
  "ReplicationConfigArn": {},
2138
2182
  "TablesToReload": {
2139
- "shape": "S8d"
2183
+ "shape": "S8i"
2140
2184
  },
2141
2185
  "ReloadOption": {}
2142
2186
  }
@@ -2158,7 +2202,7 @@
2158
2202
  "members": {
2159
2203
  "ReplicationTaskArn": {},
2160
2204
  "TablesToReload": {
2161
- "shape": "S8d"
2205
+ "shape": "S8i"
2162
2206
  },
2163
2207
  "ReloadOption": {}
2164
2208
  }
@@ -2235,7 +2279,7 @@
2235
2279
  "type": "structure",
2236
2280
  "members": {
2237
2281
  "Replication": {
2238
- "shape": "S7g"
2282
+ "shape": "S7l"
2239
2283
  }
2240
2284
  }
2241
2285
  }
@@ -2335,7 +2379,7 @@
2335
2379
  "type": "structure",
2336
2380
  "members": {
2337
2381
  "Replication": {
2338
- "shape": "S7g"
2382
+ "shape": "S7l"
2339
2383
  }
2340
2384
  }
2341
2385
  }
@@ -3560,7 +3604,7 @@
3560
3604
  }
3561
3605
  }
3562
3606
  },
3563
- "S5a": {
3607
+ "S5g": {
3564
3608
  "type": "structure",
3565
3609
  "members": {
3566
3610
  "ServerId": {},
@@ -3568,7 +3612,7 @@
3568
3612
  "ServerName": {}
3569
3613
  }
3570
3614
  },
3571
- "S6g": {
3615
+ "S6l": {
3572
3616
  "type": "structure",
3573
3617
  "members": {
3574
3618
  "EndpointArn": {},
@@ -3580,7 +3624,7 @@
3580
3624
  "LastFailureMessage": {}
3581
3625
  }
3582
3626
  },
3583
- "S6y": {
3627
+ "S73": {
3584
3628
  "type": "structure",
3585
3629
  "members": {
3586
3630
  "SchemaName": {},
@@ -3644,7 +3688,7 @@
3644
3688
  "ValidationStateDetails": {}
3645
3689
  }
3646
3690
  },
3647
- "S7g": {
3691
+ "S7l": {
3648
3692
  "type": "structure",
3649
3693
  "members": {
3650
3694
  "ReplicationConfigIdentifier": {},
@@ -3732,7 +3776,7 @@
3732
3776
  }
3733
3777
  }
3734
3778
  },
3735
- "S8d": {
3779
+ "S8i": {
3736
3780
  "type": "list",
3737
3781
  "member": {
3738
3782
  "type": "structure",
@@ -30,6 +30,11 @@
30
30
  "output_token": "Marker",
31
31
  "limit_key": "MaxRecords"
32
32
  },
33
+ "DescribeEngineVersions": {
34
+ "input_token": "Marker",
35
+ "output_token": "Marker",
36
+ "limit_key": "MaxRecords"
37
+ },
33
38
  "DescribeEventSubscriptions": {
34
39
  "input_token": "Marker",
35
40
  "output_token": "Marker",