cdk-comprehend-s3olap 2.0.490 → 2.0.492

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 (44) 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/README.md +1 -1
  6. package/node_modules/aws-sdk/apis/bedrock-2023-04-20.min.json +234 -50
  7. package/node_modules/aws-sdk/apis/bedrock-2023-04-20.paginators.json +6 -0
  8. package/node_modules/aws-sdk/apis/controlcatalog-2018-05-10.min.json +134 -40
  9. package/node_modules/aws-sdk/apis/controlcatalog-2018-05-10.paginators.json +6 -0
  10. package/node_modules/aws-sdk/apis/controlcatalog-2018-05-10.waiters2.json +5 -0
  11. package/node_modules/aws-sdk/apis/iam-2010-05-08.min.json +7 -1
  12. package/node_modules/aws-sdk/apis/kinesis-2013-12-02.min.json +7 -1
  13. package/node_modules/aws-sdk/apis/metadata.json +4 -0
  14. package/node_modules/aws-sdk/apis/monitoring-2010-08-01.min.json +7 -1
  15. package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +9 -0
  16. package/node_modules/aws-sdk/apis/resiliencehub-2020-04-30.min.json +422 -142
  17. package/node_modules/aws-sdk/apis/resiliencehub-2020-04-30.paginators.json +6 -0
  18. package/node_modules/aws-sdk/apis/route53-2013-04-01.min.json +7 -1
  19. package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +834 -821
  20. package/node_modules/aws-sdk/apis/ssm-quicksetup-2018-05-10.examples.json +5 -0
  21. package/node_modules/aws-sdk/apis/ssm-quicksetup-2018-05-10.min.json +454 -0
  22. package/node_modules/aws-sdk/apis/ssm-quicksetup-2018-05-10.paginators.json +10 -0
  23. package/node_modules/aws-sdk/apis/support-2013-04-15.min.json +4 -1
  24. package/node_modules/aws-sdk/apis/waf-regional-2016-11-28.min.json +7 -1
  25. package/node_modules/aws-sdk/clients/all.d.ts +1 -0
  26. package/node_modules/aws-sdk/clients/all.js +2 -1
  27. package/node_modules/aws-sdk/clients/bedrock.d.ts +226 -12
  28. package/node_modules/aws-sdk/clients/controlcatalog.d.ts +116 -24
  29. package/node_modules/aws-sdk/clients/controlcatalog.js +1 -0
  30. package/node_modules/aws-sdk/clients/memorydb.d.ts +2 -2
  31. package/node_modules/aws-sdk/clients/rds.d.ts +18 -6
  32. package/node_modules/aws-sdk/clients/resiliencehub.d.ts +305 -14
  33. package/node_modules/aws-sdk/clients/sagemaker.d.ts +16 -0
  34. package/node_modules/aws-sdk/clients/ssmquicksetup.d.ts +495 -0
  35. package/node_modules/aws-sdk/clients/ssmquicksetup.js +18 -0
  36. package/node_modules/aws-sdk/clients/support.d.ts +1 -1
  37. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
  38. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +108 -64
  39. package/node_modules/aws-sdk/dist/aws-sdk.js +44 -7
  40. package/node_modules/aws-sdk/dist/aws-sdk.min.js +48 -48
  41. package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
  42. package/node_modules/aws-sdk/lib/core.js +1 -1
  43. package/node_modules/aws-sdk/package.json +1 -1
  44. package/package.json +4 -4
@@ -2,9 +2,14 @@
2
2
  "version": "2.0",
3
3
  "metadata": {
4
4
  "apiVersion": "2023-04-20",
5
+ "auth": [
6
+ "aws.auth#sigv4"
7
+ ],
5
8
  "endpointPrefix": "bedrock",
6
- "jsonVersion": "1.1",
7
9
  "protocol": "rest-json",
10
+ "protocols": [
11
+ "rest-json"
12
+ ],
8
13
  "serviceFullName": "Amazon Bedrock",
9
14
  "serviceId": "Bedrock",
10
15
  "signatureVersion": "v4",
@@ -163,6 +168,40 @@
163
168
  }
164
169
  }
165
170
  },
171
+ "CreateModelCopyJob": {
172
+ "http": {
173
+ "requestUri": "/model-copy-jobs",
174
+ "responseCode": 201
175
+ },
176
+ "input": {
177
+ "type": "structure",
178
+ "required": [
179
+ "sourceModelArn",
180
+ "targetModelName"
181
+ ],
182
+ "members": {
183
+ "sourceModelArn": {},
184
+ "targetModelName": {},
185
+ "modelKmsKeyId": {},
186
+ "targetModelTags": {
187
+ "shape": "S7"
188
+ },
189
+ "clientRequestToken": {
190
+ "idempotencyToken": true
191
+ }
192
+ }
193
+ },
194
+ "output": {
195
+ "type": "structure",
196
+ "required": [
197
+ "jobArn"
198
+ ],
199
+ "members": {
200
+ "jobArn": {}
201
+ }
202
+ },
203
+ "idempotent": true
204
+ },
166
205
  "CreateModelCustomizationJob": {
167
206
  "http": {
168
207
  "requestUri": "/model-customization-jobs",
@@ -196,19 +235,19 @@
196
235
  "shape": "S7"
197
236
  },
198
237
  "trainingDataConfig": {
199
- "shape": "S2k"
238
+ "shape": "S2o"
200
239
  },
201
240
  "validationDataConfig": {
202
- "shape": "S2l"
241
+ "shape": "S2p"
203
242
  },
204
243
  "outputDataConfig": {
205
- "shape": "S2o"
244
+ "shape": "S2s"
206
245
  },
207
246
  "hyperParameters": {
208
- "shape": "S2p"
247
+ "shape": "S2t"
209
248
  },
210
249
  "vpcConfig": {
211
- "shape": "S2r"
250
+ "shape": "S2v"
212
251
  }
213
252
  }
214
253
  },
@@ -391,22 +430,22 @@
391
430
  "customizationType": {},
392
431
  "modelKmsKeyArn": {},
393
432
  "hyperParameters": {
394
- "shape": "S2p"
433
+ "shape": "S2t"
395
434
  },
396
435
  "trainingDataConfig": {
397
- "shape": "S2k"
436
+ "shape": "S2o"
398
437
  },
399
438
  "validationDataConfig": {
400
- "shape": "S2l"
439
+ "shape": "S2p"
401
440
  },
402
441
  "outputDataConfig": {
403
- "shape": "S2o"
442
+ "shape": "S2s"
404
443
  },
405
444
  "trainingMetrics": {
406
- "shape": "S3i"
445
+ "shape": "S3l"
407
446
  },
408
447
  "validationMetrics": {
409
- "shape": "S3k"
448
+ "shape": "S3n"
410
449
  },
411
450
  "creationTime": {
412
451
  "shape": "S2a"
@@ -427,7 +466,7 @@
427
466
  ],
428
467
  "members": {
429
468
  "jobIdentifier": {
430
- "shape": "S3n",
469
+ "shape": "S3q",
431
470
  "location": "uri",
432
471
  "locationName": "jobIdentifier"
433
472
  }
@@ -511,22 +550,22 @@
511
550
  "modelName": {},
512
551
  "providerName": {},
513
552
  "inputModalities": {
514
- "shape": "S3z"
553
+ "shape": "S42"
515
554
  },
516
555
  "outputModalities": {
517
- "shape": "S3z"
556
+ "shape": "S42"
518
557
  },
519
558
  "responseStreamingSupported": {
520
559
  "type": "boolean"
521
560
  },
522
561
  "customizationsSupported": {
523
- "shape": "S42"
562
+ "shape": "S45"
524
563
  },
525
564
  "inferenceTypesSupported": {
526
- "shape": "S44"
565
+ "shape": "S47"
527
566
  },
528
567
  "modelLifecycle": {
529
- "shape": "S46"
568
+ "shape": "S49"
530
569
  }
531
570
  }
532
571
  }
@@ -749,6 +788,53 @@
749
788
  }
750
789
  }
751
790
  },
791
+ "GetModelCopyJob": {
792
+ "http": {
793
+ "method": "GET",
794
+ "requestUri": "/model-copy-jobs/{jobArn}",
795
+ "responseCode": 200
796
+ },
797
+ "input": {
798
+ "type": "structure",
799
+ "required": [
800
+ "jobArn"
801
+ ],
802
+ "members": {
803
+ "jobArn": {
804
+ "location": "uri",
805
+ "locationName": "jobArn"
806
+ }
807
+ }
808
+ },
809
+ "output": {
810
+ "type": "structure",
811
+ "required": [
812
+ "jobArn",
813
+ "status",
814
+ "creationTime",
815
+ "targetModelArn",
816
+ "sourceAccountId",
817
+ "sourceModelArn"
818
+ ],
819
+ "members": {
820
+ "jobArn": {},
821
+ "status": {},
822
+ "creationTime": {
823
+ "shape": "S2a"
824
+ },
825
+ "targetModelArn": {},
826
+ "targetModelName": {},
827
+ "sourceAccountId": {},
828
+ "sourceModelArn": {},
829
+ "targetModelKmsKeyArn": {},
830
+ "targetModelTags": {
831
+ "shape": "S7"
832
+ },
833
+ "failureMessage": {},
834
+ "sourceModelName": {}
835
+ }
836
+ }
837
+ },
752
838
  "GetModelCustomizationJob": {
753
839
  "http": {
754
840
  "method": "GET",
@@ -801,27 +887,27 @@
801
887
  },
802
888
  "baseModelArn": {},
803
889
  "hyperParameters": {
804
- "shape": "S2p"
890
+ "shape": "S2t"
805
891
  },
806
892
  "trainingDataConfig": {
807
- "shape": "S2k"
893
+ "shape": "S2o"
808
894
  },
809
895
  "validationDataConfig": {
810
- "shape": "S2l"
896
+ "shape": "S2p"
811
897
  },
812
898
  "outputDataConfig": {
813
- "shape": "S2o"
899
+ "shape": "S2s"
814
900
  },
815
901
  "customizationType": {},
816
902
  "outputModelKmsKeyArn": {},
817
903
  "trainingMetrics": {
818
- "shape": "S3i"
904
+ "shape": "S3l"
819
905
  },
820
906
  "validationMetrics": {
821
- "shape": "S3k"
907
+ "shape": "S3n"
822
908
  },
823
909
  "vpcConfig": {
824
- "shape": "S2r"
910
+ "shape": "S2v"
825
911
  }
826
912
  }
827
913
  }
@@ -840,7 +926,7 @@
840
926
  "type": "structure",
841
927
  "members": {
842
928
  "loggingConfig": {
843
- "shape": "S5b"
929
+ "shape": "S5i"
844
930
  }
845
931
  }
846
932
  }
@@ -951,6 +1037,11 @@
951
1037
  "sortOrder": {
952
1038
  "location": "querystring",
953
1039
  "locationName": "sortOrder"
1040
+ },
1041
+ "isOwned": {
1042
+ "location": "querystring",
1043
+ "locationName": "isOwned",
1044
+ "type": "boolean"
954
1045
  }
955
1046
  }
956
1047
  },
@@ -977,7 +1068,8 @@
977
1068
  },
978
1069
  "baseModelArn": {},
979
1070
  "baseModelName": {},
980
- "customizationType": {}
1071
+ "customizationType": {},
1072
+ "ownerAccountId": {}
981
1073
  }
982
1074
  }
983
1075
  }
@@ -1113,22 +1205,22 @@
1113
1205
  "modelName": {},
1114
1206
  "providerName": {},
1115
1207
  "inputModalities": {
1116
- "shape": "S3z"
1208
+ "shape": "S42"
1117
1209
  },
1118
1210
  "outputModalities": {
1119
- "shape": "S3z"
1211
+ "shape": "S42"
1120
1212
  },
1121
1213
  "responseStreamingSupported": {
1122
1214
  "type": "boolean"
1123
1215
  },
1124
1216
  "customizationsSupported": {
1125
- "shape": "S42"
1217
+ "shape": "S45"
1126
1218
  },
1127
1219
  "inferenceTypesSupported": {
1128
- "shape": "S44"
1220
+ "shape": "S47"
1129
1221
  },
1130
1222
  "modelLifecycle": {
1131
- "shape": "S46"
1223
+ "shape": "S49"
1132
1224
  }
1133
1225
  }
1134
1226
  }
@@ -1203,6 +1295,98 @@
1203
1295
  }
1204
1296
  }
1205
1297
  },
1298
+ "ListModelCopyJobs": {
1299
+ "http": {
1300
+ "method": "GET",
1301
+ "requestUri": "/model-copy-jobs",
1302
+ "responseCode": 200
1303
+ },
1304
+ "input": {
1305
+ "type": "structure",
1306
+ "members": {
1307
+ "creationTimeAfter": {
1308
+ "shape": "S2a",
1309
+ "location": "querystring",
1310
+ "locationName": "creationTimeAfter"
1311
+ },
1312
+ "creationTimeBefore": {
1313
+ "shape": "S2a",
1314
+ "location": "querystring",
1315
+ "locationName": "creationTimeBefore"
1316
+ },
1317
+ "statusEquals": {
1318
+ "location": "querystring",
1319
+ "locationName": "statusEquals"
1320
+ },
1321
+ "sourceAccountEquals": {
1322
+ "location": "querystring",
1323
+ "locationName": "sourceAccountEquals"
1324
+ },
1325
+ "sourceModelArnEquals": {
1326
+ "location": "querystring",
1327
+ "locationName": "sourceModelArnEquals"
1328
+ },
1329
+ "targetModelNameContains": {
1330
+ "location": "querystring",
1331
+ "locationName": "outputModelNameContains"
1332
+ },
1333
+ "maxResults": {
1334
+ "location": "querystring",
1335
+ "locationName": "maxResults",
1336
+ "type": "integer"
1337
+ },
1338
+ "nextToken": {
1339
+ "location": "querystring",
1340
+ "locationName": "nextToken"
1341
+ },
1342
+ "sortBy": {
1343
+ "location": "querystring",
1344
+ "locationName": "sortBy"
1345
+ },
1346
+ "sortOrder": {
1347
+ "location": "querystring",
1348
+ "locationName": "sortOrder"
1349
+ }
1350
+ }
1351
+ },
1352
+ "output": {
1353
+ "type": "structure",
1354
+ "members": {
1355
+ "nextToken": {},
1356
+ "modelCopyJobSummaries": {
1357
+ "type": "list",
1358
+ "member": {
1359
+ "type": "structure",
1360
+ "required": [
1361
+ "jobArn",
1362
+ "status",
1363
+ "creationTime",
1364
+ "targetModelArn",
1365
+ "sourceAccountId",
1366
+ "sourceModelArn"
1367
+ ],
1368
+ "members": {
1369
+ "jobArn": {},
1370
+ "status": {},
1371
+ "creationTime": {
1372
+ "shape": "S2a"
1373
+ },
1374
+ "targetModelArn": {},
1375
+ "targetModelName": {},
1376
+ "sourceAccountId": {},
1377
+ "sourceModelArn": {},
1378
+ "targetModelKmsKeyArn": {},
1379
+ "targetModelTags": {
1380
+ "shape": "S7"
1381
+ },
1382
+ "failureMessage": {},
1383
+ "sourceModelName": {}
1384
+ }
1385
+ }
1386
+ }
1387
+ }
1388
+ }
1389
+ },
1206
1390
  "ListModelCustomizationJobs": {
1207
1391
  "http": {
1208
1392
  "method": "GET",
@@ -1422,7 +1606,7 @@
1422
1606
  ],
1423
1607
  "members": {
1424
1608
  "loggingConfig": {
1425
- "shape": "S5b"
1609
+ "shape": "S5i"
1426
1610
  }
1427
1611
  }
1428
1612
  },
@@ -1444,7 +1628,7 @@
1444
1628
  ],
1445
1629
  "members": {
1446
1630
  "jobIdentifier": {
1447
- "shape": "S3n",
1631
+ "shape": "S3q",
1448
1632
  "location": "uri",
1449
1633
  "locationName": "jobIdentifier"
1450
1634
  }
@@ -1956,7 +2140,7 @@
1956
2140
  "type": "timestamp",
1957
2141
  "timestampFormat": "iso8601"
1958
2142
  },
1959
- "S2k": {
2143
+ "S2o": {
1960
2144
  "type": "structure",
1961
2145
  "required": [
1962
2146
  "s3Uri"
@@ -1965,7 +2149,7 @@
1965
2149
  "s3Uri": {}
1966
2150
  }
1967
2151
  },
1968
- "S2l": {
2152
+ "S2p": {
1969
2153
  "type": "structure",
1970
2154
  "required": [
1971
2155
  "validators"
@@ -1985,7 +2169,7 @@
1985
2169
  }
1986
2170
  }
1987
2171
  },
1988
- "S2o": {
2172
+ "S2s": {
1989
2173
  "type": "structure",
1990
2174
  "required": [
1991
2175
  "s3Uri"
@@ -1994,12 +2178,12 @@
1994
2178
  "s3Uri": {}
1995
2179
  }
1996
2180
  },
1997
- "S2p": {
2181
+ "S2t": {
1998
2182
  "type": "map",
1999
2183
  "key": {},
2000
2184
  "value": {}
2001
2185
  },
2002
- "S2r": {
2186
+ "S2v": {
2003
2187
  "type": "structure",
2004
2188
  "required": [
2005
2189
  "subnetIds",
@@ -2016,7 +2200,7 @@
2016
2200
  }
2017
2201
  }
2018
2202
  },
2019
- "S3i": {
2203
+ "S3l": {
2020
2204
  "type": "structure",
2021
2205
  "members": {
2022
2206
  "trainingLoss": {
@@ -2024,7 +2208,7 @@
2024
2208
  }
2025
2209
  }
2026
2210
  },
2027
- "S3k": {
2211
+ "S3n": {
2028
2212
  "type": "list",
2029
2213
  "member": {
2030
2214
  "type": "structure",
@@ -2035,23 +2219,23 @@
2035
2219
  }
2036
2220
  }
2037
2221
  },
2038
- "S3n": {
2222
+ "S3q": {
2039
2223
  "type": "string",
2040
2224
  "sensitive": true
2041
2225
  },
2042
- "S3z": {
2226
+ "S42": {
2043
2227
  "type": "list",
2044
2228
  "member": {}
2045
2229
  },
2046
- "S42": {
2230
+ "S45": {
2047
2231
  "type": "list",
2048
2232
  "member": {}
2049
2233
  },
2050
- "S44": {
2234
+ "S47": {
2051
2235
  "type": "list",
2052
2236
  "member": {}
2053
2237
  },
2054
- "S46": {
2238
+ "S49": {
2055
2239
  "type": "structure",
2056
2240
  "required": [
2057
2241
  "status"
@@ -2060,7 +2244,7 @@
2060
2244
  "status": {}
2061
2245
  }
2062
2246
  },
2063
- "S5b": {
2247
+ "S5i": {
2064
2248
  "type": "structure",
2065
2249
  "members": {
2066
2250
  "cloudWatchConfig": {
@@ -2073,12 +2257,12 @@
2073
2257
  "logGroupName": {},
2074
2258
  "roleArn": {},
2075
2259
  "largeDataDeliveryS3Config": {
2076
- "shape": "S5e"
2260
+ "shape": "S5l"
2077
2261
  }
2078
2262
  }
2079
2263
  },
2080
2264
  "s3Config": {
2081
- "shape": "S5e"
2265
+ "shape": "S5l"
2082
2266
  },
2083
2267
  "textDataDeliveryEnabled": {
2084
2268
  "type": "boolean"
@@ -2091,7 +2275,7 @@
2091
2275
  }
2092
2276
  }
2093
2277
  },
2094
- "S5e": {
2278
+ "S5l": {
2095
2279
  "type": "structure",
2096
2280
  "required": [
2097
2281
  "bucketName"
@@ -18,6 +18,12 @@
18
18
  "limit_key": "maxResults",
19
19
  "result_key": "guardrails"
20
20
  },
21
+ "ListModelCopyJobs": {
22
+ "input_token": "nextToken",
23
+ "output_token": "nextToken",
24
+ "limit_key": "maxResults",
25
+ "result_key": "modelCopyJobSummaries"
26
+ },
21
27
  "ListModelCustomizationJobs": {
22
28
  "input_token": "nextToken",
23
29
  "output_token": "nextToken",