cdk-lambda-subminute 2.0.297 → 2.0.299
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.
- package/.jsii +3 -3
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/CHANGELOG.md +22 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/backup-2018-11-15.min.json +222 -9
- package/node_modules/aws-sdk/apis/backup-2018-11-15.paginators.json +15 -0
- package/node_modules/aws-sdk/apis/cleanrooms-2022-02-17.min.json +133 -74
- package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +20 -10
- package/node_modules/aws-sdk/apis/dataexchange-2017-07-25.min.json +0 -3
- package/node_modules/aws-sdk/apis/dms-2016-01-01.min.json +20 -2
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +349 -278
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/ecs-2014-11-13.min.json +4 -1
- package/node_modules/aws-sdk/apis/elasticmapreduce-2009-03-31.min.json +1 -2
- package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +538 -304
- package/node_modules/aws-sdk/apis/glue-2017-03-31.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/iot-2015-05-28.min.json +193 -161
- package/node_modules/aws-sdk/apis/pipes-2015-10-07.min.json +136 -53
- package/node_modules/aws-sdk/apis/resource-explorer-2-2022-07-28.min.json +69 -5
- package/node_modules/aws-sdk/apis/resource-explorer-2-2022-07-28.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +1 -3
- package/node_modules/aws-sdk/apis/servicecatalog-appregistry-2020-06-24.min.json +108 -46
- package/node_modules/aws-sdk/apis/states-2016-11-23.min.json +100 -22
- package/node_modules/aws-sdk/clients/backup.d.ts +279 -0
- package/node_modules/aws-sdk/clients/cleanrooms.d.ts +58 -10
- package/node_modules/aws-sdk/clients/connect.d.ts +13 -0
- package/node_modules/aws-sdk/clients/dataexchange.d.ts +1 -1
- package/node_modules/aws-sdk/clients/dms.d.ts +30 -6
- package/node_modules/aws-sdk/clients/ec2.d.ts +175 -97
- package/node_modules/aws-sdk/clients/ecs.d.ts +10 -6
- package/node_modules/aws-sdk/clients/emr.d.ts +1 -1
- package/node_modules/aws-sdk/clients/glue.d.ts +352 -2
- package/node_modules/aws-sdk/clients/iot.d.ts +46 -5
- package/node_modules/aws-sdk/clients/lambda.d.ts +1 -1
- package/node_modules/aws-sdk/clients/pipes.d.ts +143 -18
- package/node_modules/aws-sdk/clients/resourceexplorer2.d.ts +90 -9
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +2 -2
- package/node_modules/aws-sdk/clients/servicecatalogappregistry.d.ts +91 -6
- package/node_modules/aws-sdk/clients/signer.d.ts +35 -35
- package/node_modules/aws-sdk/clients/stepfunctions.d.ts +123 -18
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +20 -20
- package/node_modules/aws-sdk/dist/aws-sdk.js +576 -455
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +79 -79
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +2 -2
@@ -384,6 +384,62 @@
|
|
384
384
|
}
|
385
385
|
}
|
386
386
|
},
|
387
|
+
"BatchGetTableOptimizer": {
|
388
|
+
"input": {
|
389
|
+
"type": "structure",
|
390
|
+
"required": [
|
391
|
+
"Entries"
|
392
|
+
],
|
393
|
+
"members": {
|
394
|
+
"Entries": {
|
395
|
+
"type": "list",
|
396
|
+
"member": {
|
397
|
+
"type": "structure",
|
398
|
+
"members": {
|
399
|
+
"catalogId": {},
|
400
|
+
"databaseName": {},
|
401
|
+
"tableName": {},
|
402
|
+
"type": {}
|
403
|
+
}
|
404
|
+
}
|
405
|
+
}
|
406
|
+
}
|
407
|
+
},
|
408
|
+
"output": {
|
409
|
+
"type": "structure",
|
410
|
+
"members": {
|
411
|
+
"TableOptimizers": {
|
412
|
+
"type": "list",
|
413
|
+
"member": {
|
414
|
+
"type": "structure",
|
415
|
+
"members": {
|
416
|
+
"catalogId": {},
|
417
|
+
"databaseName": {},
|
418
|
+
"tableName": {},
|
419
|
+
"tableOptimizer": {
|
420
|
+
"shape": "Sah"
|
421
|
+
}
|
422
|
+
}
|
423
|
+
}
|
424
|
+
},
|
425
|
+
"Failures": {
|
426
|
+
"type": "list",
|
427
|
+
"member": {
|
428
|
+
"type": "structure",
|
429
|
+
"members": {
|
430
|
+
"error": {
|
431
|
+
"shape": "S14"
|
432
|
+
},
|
433
|
+
"catalogId": {},
|
434
|
+
"databaseName": {},
|
435
|
+
"tableName": {},
|
436
|
+
"type": {}
|
437
|
+
}
|
438
|
+
}
|
439
|
+
}
|
440
|
+
}
|
441
|
+
}
|
442
|
+
},
|
387
443
|
"BatchGetTriggers": {
|
388
444
|
"input": {
|
389
445
|
"type": "structure",
|
@@ -392,7 +448,7 @@
|
|
392
448
|
],
|
393
449
|
"members": {
|
394
450
|
"TriggerNames": {
|
395
|
-
"shape": "
|
451
|
+
"shape": "Sas"
|
396
452
|
}
|
397
453
|
}
|
398
454
|
},
|
@@ -400,10 +456,10 @@
|
|
400
456
|
"type": "structure",
|
401
457
|
"members": {
|
402
458
|
"Triggers": {
|
403
|
-
"shape": "
|
459
|
+
"shape": "Sau"
|
404
460
|
},
|
405
461
|
"TriggersNotFound": {
|
406
|
-
"shape": "
|
462
|
+
"shape": "Sas"
|
407
463
|
}
|
408
464
|
}
|
409
465
|
}
|
@@ -416,7 +472,7 @@
|
|
416
472
|
],
|
417
473
|
"members": {
|
418
474
|
"Names": {
|
419
|
-
"shape": "
|
475
|
+
"shape": "Sbc"
|
420
476
|
},
|
421
477
|
"IncludeGraph": {
|
422
478
|
"type": "boolean"
|
@@ -429,11 +485,11 @@
|
|
429
485
|
"Workflows": {
|
430
486
|
"type": "list",
|
431
487
|
"member": {
|
432
|
-
"shape": "
|
488
|
+
"shape": "Sbf"
|
433
489
|
}
|
434
490
|
},
|
435
491
|
"MissingWorkflows": {
|
436
|
-
"shape": "
|
492
|
+
"shape": "Sbc"
|
437
493
|
}
|
438
494
|
}
|
439
495
|
}
|
@@ -504,7 +560,7 @@
|
|
504
560
|
],
|
505
561
|
"members": {
|
506
562
|
"PartitionValueList": {
|
507
|
-
"shape": "
|
563
|
+
"shape": "Scd"
|
508
564
|
},
|
509
565
|
"PartitionInput": {
|
510
566
|
"shape": "S5"
|
@@ -523,7 +579,7 @@
|
|
523
579
|
"type": "structure",
|
524
580
|
"members": {
|
525
581
|
"PartitionValueList": {
|
526
|
-
"shape": "
|
582
|
+
"shape": "Scd"
|
527
583
|
},
|
528
584
|
"ErrorDetail": {
|
529
585
|
"shape": "S14"
|
@@ -639,7 +695,7 @@
|
|
639
695
|
"Description": {},
|
640
696
|
"BlueprintLocation": {},
|
641
697
|
"Tags": {
|
642
|
-
"shape": "
|
698
|
+
"shape": "Scy"
|
643
699
|
}
|
644
700
|
}
|
645
701
|
},
|
@@ -702,7 +758,7 @@
|
|
702
758
|
"QuoteSymbol": {},
|
703
759
|
"ContainsHeader": {},
|
704
760
|
"Header": {
|
705
|
-
"shape": "
|
761
|
+
"shape": "Sdf"
|
706
762
|
},
|
707
763
|
"DisableValueTrimming": {
|
708
764
|
"type": "boolean"
|
@@ -714,7 +770,7 @@
|
|
714
770
|
"type": "boolean"
|
715
771
|
},
|
716
772
|
"CustomDatatypes": {
|
717
|
-
"shape": "
|
773
|
+
"shape": "Sdg"
|
718
774
|
},
|
719
775
|
"Serde": {}
|
720
776
|
}
|
@@ -735,10 +791,10 @@
|
|
735
791
|
"members": {
|
736
792
|
"CatalogId": {},
|
737
793
|
"ConnectionInput": {
|
738
|
-
"shape": "
|
794
|
+
"shape": "Sdk"
|
739
795
|
},
|
740
796
|
"Tags": {
|
741
|
-
"shape": "
|
797
|
+
"shape": "Scy"
|
742
798
|
}
|
743
799
|
}
|
744
800
|
},
|
@@ -783,7 +839,7 @@
|
|
783
839
|
"Configuration": {},
|
784
840
|
"CrawlerSecurityConfiguration": {},
|
785
841
|
"Tags": {
|
786
|
-
"shape": "
|
842
|
+
"shape": "Scy"
|
787
843
|
}
|
788
844
|
}
|
789
845
|
},
|
@@ -806,7 +862,7 @@
|
|
806
862
|
"shape": "S3v"
|
807
863
|
},
|
808
864
|
"Tags": {
|
809
|
-
"shape": "
|
865
|
+
"shape": "Scy"
|
810
866
|
}
|
811
867
|
}
|
812
868
|
},
|
@@ -829,10 +885,10 @@
|
|
829
885
|
"Description": {},
|
830
886
|
"Ruleset": {},
|
831
887
|
"Tags": {
|
832
|
-
"shape": "
|
888
|
+
"shape": "Scy"
|
833
889
|
},
|
834
890
|
"TargetTable": {
|
835
|
-
"shape": "
|
891
|
+
"shape": "Sdy"
|
836
892
|
},
|
837
893
|
"ClientToken": {}
|
838
894
|
}
|
@@ -854,10 +910,10 @@
|
|
854
910
|
"members": {
|
855
911
|
"CatalogId": {},
|
856
912
|
"DatabaseInput": {
|
857
|
-
"shape": "
|
913
|
+
"shape": "Se1"
|
858
914
|
},
|
859
915
|
"Tags": {
|
860
|
-
"shape": "
|
916
|
+
"shape": "Scy"
|
861
917
|
}
|
862
918
|
}
|
863
919
|
},
|
@@ -896,7 +952,7 @@
|
|
896
952
|
"ExtraJarsS3Path": {},
|
897
953
|
"SecurityConfiguration": {},
|
898
954
|
"Tags": {
|
899
|
-
"shape": "
|
955
|
+
"shape": "Scy"
|
900
956
|
},
|
901
957
|
"Arguments": {
|
902
958
|
"shape": "S4l"
|
@@ -984,7 +1040,7 @@
|
|
984
1040
|
},
|
985
1041
|
"SecurityConfiguration": {},
|
986
1042
|
"Tags": {
|
987
|
-
"shape": "
|
1043
|
+
"shape": "Scy"
|
988
1044
|
},
|
989
1045
|
"NotificationProperty": {
|
990
1046
|
"shape": "S54"
|
@@ -1023,10 +1079,10 @@
|
|
1023
1079
|
"Name": {},
|
1024
1080
|
"Description": {},
|
1025
1081
|
"InputRecordTables": {
|
1026
|
-
"shape": "
|
1082
|
+
"shape": "Sei"
|
1027
1083
|
},
|
1028
1084
|
"Parameters": {
|
1029
|
-
"shape": "
|
1085
|
+
"shape": "Sej"
|
1030
1086
|
},
|
1031
1087
|
"Role": {},
|
1032
1088
|
"GlueVersion": {},
|
@@ -1044,10 +1100,10 @@
|
|
1044
1100
|
"type": "integer"
|
1045
1101
|
},
|
1046
1102
|
"Tags": {
|
1047
|
-
"shape": "
|
1103
|
+
"shape": "Scy"
|
1048
1104
|
},
|
1049
1105
|
"TransformEncryption": {
|
1050
|
-
"shape": "
|
1106
|
+
"shape": "Sen"
|
1051
1107
|
}
|
1052
1108
|
}
|
1053
1109
|
},
|
@@ -1093,7 +1149,7 @@
|
|
1093
1149
|
"DatabaseName": {},
|
1094
1150
|
"TableName": {},
|
1095
1151
|
"PartitionIndex": {
|
1096
|
-
"shape": "
|
1152
|
+
"shape": "Seu"
|
1097
1153
|
}
|
1098
1154
|
}
|
1099
1155
|
},
|
@@ -1112,7 +1168,7 @@
|
|
1112
1168
|
"RegistryName": {},
|
1113
1169
|
"Description": {},
|
1114
1170
|
"Tags": {
|
1115
|
-
"shape": "
|
1171
|
+
"shape": "Scy"
|
1116
1172
|
}
|
1117
1173
|
}
|
1118
1174
|
},
|
@@ -1123,7 +1179,7 @@
|
|
1123
1179
|
"RegistryName": {},
|
1124
1180
|
"Description": {},
|
1125
1181
|
"Tags": {
|
1126
|
-
"shape": "
|
1182
|
+
"shape": "Scy"
|
1127
1183
|
}
|
1128
1184
|
}
|
1129
1185
|
}
|
@@ -1137,14 +1193,14 @@
|
|
1137
1193
|
],
|
1138
1194
|
"members": {
|
1139
1195
|
"RegistryId": {
|
1140
|
-
"shape": "
|
1196
|
+
"shape": "Sf0"
|
1141
1197
|
},
|
1142
1198
|
"SchemaName": {},
|
1143
1199
|
"DataFormat": {},
|
1144
1200
|
"Compatibility": {},
|
1145
1201
|
"Description": {},
|
1146
1202
|
"Tags": {
|
1147
|
-
"shape": "
|
1203
|
+
"shape": "Scy"
|
1148
1204
|
},
|
1149
1205
|
"SchemaDefinition": {}
|
1150
1206
|
}
|
@@ -1170,7 +1226,7 @@
|
|
1170
1226
|
},
|
1171
1227
|
"SchemaStatus": {},
|
1172
1228
|
"Tags": {
|
1173
|
-
"shape": "
|
1229
|
+
"shape": "Scy"
|
1174
1230
|
},
|
1175
1231
|
"SchemaVersionId": {},
|
1176
1232
|
"SchemaVersionStatus": {}
|
@@ -1182,10 +1238,10 @@
|
|
1182
1238
|
"type": "structure",
|
1183
1239
|
"members": {
|
1184
1240
|
"DagNodes": {
|
1185
|
-
"shape": "
|
1241
|
+
"shape": "Sf7"
|
1186
1242
|
},
|
1187
1243
|
"DagEdges": {
|
1188
|
-
"shape": "
|
1244
|
+
"shape": "Sff"
|
1189
1245
|
},
|
1190
1246
|
"Language": {}
|
1191
1247
|
}
|
@@ -1208,7 +1264,7 @@
|
|
1208
1264
|
"members": {
|
1209
1265
|
"Name": {},
|
1210
1266
|
"EncryptionConfiguration": {
|
1211
|
-
"shape": "
|
1267
|
+
"shape": "Sfm"
|
1212
1268
|
}
|
1213
1269
|
}
|
1214
1270
|
},
|
@@ -1235,7 +1291,7 @@
|
|
1235
1291
|
"Description": {},
|
1236
1292
|
"Role": {},
|
1237
1293
|
"Command": {
|
1238
|
-
"shape": "
|
1294
|
+
"shape": "Sfy"
|
1239
1295
|
},
|
1240
1296
|
"Timeout": {
|
1241
1297
|
"type": "integer"
|
@@ -1244,7 +1300,7 @@
|
|
1244
1300
|
"type": "integer"
|
1245
1301
|
},
|
1246
1302
|
"DefaultArguments": {
|
1247
|
-
"shape": "
|
1303
|
+
"shape": "Sfz"
|
1248
1304
|
},
|
1249
1305
|
"Connections": {
|
1250
1306
|
"shape": "S50"
|
@@ -1259,7 +1315,7 @@
|
|
1259
1315
|
"SecurityConfiguration": {},
|
1260
1316
|
"GlueVersion": {},
|
1261
1317
|
"Tags": {
|
1262
|
-
"shape": "
|
1318
|
+
"shape": "Scy"
|
1263
1319
|
},
|
1264
1320
|
"RequestOrigin": {}
|
1265
1321
|
}
|
@@ -1268,7 +1324,7 @@
|
|
1268
1324
|
"type": "structure",
|
1269
1325
|
"members": {
|
1270
1326
|
"Session": {
|
1271
|
-
"shape": "
|
1327
|
+
"shape": "Sg2"
|
1272
1328
|
}
|
1273
1329
|
}
|
1274
1330
|
}
|
@@ -1284,12 +1340,12 @@
|
|
1284
1340
|
"CatalogId": {},
|
1285
1341
|
"DatabaseName": {},
|
1286
1342
|
"TableInput": {
|
1287
|
-
"shape": "
|
1343
|
+
"shape": "Sg7"
|
1288
1344
|
},
|
1289
1345
|
"PartitionIndexes": {
|
1290
1346
|
"type": "list",
|
1291
1347
|
"member": {
|
1292
|
-
"shape": "
|
1348
|
+
"shape": "Seu"
|
1293
1349
|
}
|
1294
1350
|
},
|
1295
1351
|
"TransactionId": {},
|
@@ -1315,6 +1371,31 @@
|
|
1315
1371
|
"members": {}
|
1316
1372
|
}
|
1317
1373
|
},
|
1374
|
+
"CreateTableOptimizer": {
|
1375
|
+
"input": {
|
1376
|
+
"type": "structure",
|
1377
|
+
"required": [
|
1378
|
+
"CatalogId",
|
1379
|
+
"DatabaseName",
|
1380
|
+
"TableName",
|
1381
|
+
"Type",
|
1382
|
+
"TableOptimizerConfiguration"
|
1383
|
+
],
|
1384
|
+
"members": {
|
1385
|
+
"CatalogId": {},
|
1386
|
+
"DatabaseName": {},
|
1387
|
+
"TableName": {},
|
1388
|
+
"Type": {},
|
1389
|
+
"TableOptimizerConfiguration": {
|
1390
|
+
"shape": "Sai"
|
1391
|
+
}
|
1392
|
+
}
|
1393
|
+
},
|
1394
|
+
"output": {
|
1395
|
+
"type": "structure",
|
1396
|
+
"members": {}
|
1397
|
+
}
|
1398
|
+
},
|
1318
1399
|
"CreateTrigger": {
|
1319
1400
|
"input": {
|
1320
1401
|
"type": "structure",
|
@@ -1329,20 +1410,20 @@
|
|
1329
1410
|
"Type": {},
|
1330
1411
|
"Schedule": {},
|
1331
1412
|
"Predicate": {
|
1332
|
-
"shape": "
|
1413
|
+
"shape": "Sb1"
|
1333
1414
|
},
|
1334
1415
|
"Actions": {
|
1335
|
-
"shape": "
|
1416
|
+
"shape": "Saz"
|
1336
1417
|
},
|
1337
1418
|
"Description": {},
|
1338
1419
|
"StartOnCreation": {
|
1339
1420
|
"type": "boolean"
|
1340
1421
|
},
|
1341
1422
|
"Tags": {
|
1342
|
-
"shape": "
|
1423
|
+
"shape": "Scy"
|
1343
1424
|
},
|
1344
1425
|
"EventBatchingCondition": {
|
1345
|
-
"shape": "
|
1426
|
+
"shape": "Sb8"
|
1346
1427
|
}
|
1347
1428
|
}
|
1348
1429
|
},
|
@@ -1364,7 +1445,7 @@
|
|
1364
1445
|
"CatalogId": {},
|
1365
1446
|
"DatabaseName": {},
|
1366
1447
|
"FunctionInput": {
|
1367
|
-
"shape": "
|
1448
|
+
"shape": "Sgm"
|
1368
1449
|
}
|
1369
1450
|
}
|
1370
1451
|
},
|
@@ -1383,10 +1464,10 @@
|
|
1383
1464
|
"Name": {},
|
1384
1465
|
"Description": {},
|
1385
1466
|
"DefaultRunProperties": {
|
1386
|
-
"shape": "
|
1467
|
+
"shape": "Sbg"
|
1387
1468
|
},
|
1388
1469
|
"Tags": {
|
1389
|
-
"shape": "
|
1470
|
+
"shape": "Scy"
|
1390
1471
|
},
|
1391
1472
|
"MaxConcurrentRuns": {
|
1392
1473
|
"type": "integer"
|
@@ -1654,7 +1735,7 @@
|
|
1654
1735
|
],
|
1655
1736
|
"members": {
|
1656
1737
|
"RegistryId": {
|
1657
|
-
"shape": "
|
1738
|
+
"shape": "Sf0"
|
1658
1739
|
}
|
1659
1740
|
}
|
1660
1741
|
},
|
@@ -1791,6 +1872,27 @@
|
|
1791
1872
|
"members": {}
|
1792
1873
|
}
|
1793
1874
|
},
|
1875
|
+
"DeleteTableOptimizer": {
|
1876
|
+
"input": {
|
1877
|
+
"type": "structure",
|
1878
|
+
"required": [
|
1879
|
+
"CatalogId",
|
1880
|
+
"DatabaseName",
|
1881
|
+
"TableName",
|
1882
|
+
"Type"
|
1883
|
+
],
|
1884
|
+
"members": {
|
1885
|
+
"CatalogId": {},
|
1886
|
+
"DatabaseName": {},
|
1887
|
+
"TableName": {},
|
1888
|
+
"Type": {}
|
1889
|
+
}
|
1890
|
+
},
|
1891
|
+
"output": {
|
1892
|
+
"type": "structure",
|
1893
|
+
"members": {}
|
1894
|
+
}
|
1895
|
+
},
|
1794
1896
|
"DeleteTableVersion": {
|
1795
1897
|
"input": {
|
1796
1898
|
"type": "structure",
|
@@ -1904,7 +2006,7 @@
|
|
1904
2006
|
"type": "structure",
|
1905
2007
|
"members": {
|
1906
2008
|
"BlueprintRun": {
|
1907
|
-
"shape": "
|
2009
|
+
"shape": "Sil"
|
1908
2010
|
}
|
1909
2011
|
}
|
1910
2012
|
}
|
@@ -1929,7 +2031,7 @@
|
|
1929
2031
|
"BlueprintRuns": {
|
1930
2032
|
"type": "list",
|
1931
2033
|
"member": {
|
1932
|
-
"shape": "
|
2034
|
+
"shape": "Sil"
|
1933
2035
|
}
|
1934
2036
|
},
|
1935
2037
|
"NextToken": {}
|
@@ -1975,7 +2077,7 @@
|
|
1975
2077
|
"type": "structure",
|
1976
2078
|
"members": {
|
1977
2079
|
"Classifier": {
|
1978
|
-
"shape": "
|
2080
|
+
"shape": "Siy"
|
1979
2081
|
}
|
1980
2082
|
}
|
1981
2083
|
}
|
@@ -1996,7 +2098,7 @@
|
|
1996
2098
|
"Classifiers": {
|
1997
2099
|
"type": "list",
|
1998
2100
|
"member": {
|
1999
|
-
"shape": "
|
2101
|
+
"shape": "Siy"
|
2000
2102
|
}
|
2001
2103
|
},
|
2002
2104
|
"NextToken": {}
|
@@ -2020,7 +2122,7 @@
|
|
2020
2122
|
"shape": "S6"
|
2021
2123
|
},
|
2022
2124
|
"ColumnNames": {
|
2023
|
-
"shape": "
|
2125
|
+
"shape": "Sj8"
|
2024
2126
|
}
|
2025
2127
|
}
|
2026
2128
|
},
|
@@ -2028,10 +2130,10 @@
|
|
2028
2130
|
"type": "structure",
|
2029
2131
|
"members": {
|
2030
2132
|
"ColumnStatisticsList": {
|
2031
|
-
"shape": "
|
2133
|
+
"shape": "Sja"
|
2032
2134
|
},
|
2033
2135
|
"Errors": {
|
2034
|
-
"shape": "
|
2136
|
+
"shape": "Sjs"
|
2035
2137
|
}
|
2036
2138
|
}
|
2037
2139
|
}
|
@@ -2049,7 +2151,7 @@
|
|
2049
2151
|
"DatabaseName": {},
|
2050
2152
|
"TableName": {},
|
2051
2153
|
"ColumnNames": {
|
2052
|
-
"shape": "
|
2154
|
+
"shape": "Sj8"
|
2053
2155
|
}
|
2054
2156
|
}
|
2055
2157
|
},
|
@@ -2057,10 +2159,10 @@
|
|
2057
2159
|
"type": "structure",
|
2058
2160
|
"members": {
|
2059
2161
|
"ColumnStatisticsList": {
|
2060
|
-
"shape": "
|
2162
|
+
"shape": "Sja"
|
2061
2163
|
},
|
2062
2164
|
"Errors": {
|
2063
|
-
"shape": "
|
2165
|
+
"shape": "Sjs"
|
2064
2166
|
}
|
2065
2167
|
}
|
2066
2168
|
}
|
@@ -2083,7 +2185,7 @@
|
|
2083
2185
|
"type": "structure",
|
2084
2186
|
"members": {
|
2085
2187
|
"Connection": {
|
2086
|
-
"shape": "
|
2188
|
+
"shape": "Sjy"
|
2087
2189
|
}
|
2088
2190
|
}
|
2089
2191
|
}
|
@@ -2097,7 +2199,7 @@
|
|
2097
2199
|
"type": "structure",
|
2098
2200
|
"members": {
|
2099
2201
|
"MatchCriteria": {
|
2100
|
-
"shape": "
|
2202
|
+
"shape": "Sdm"
|
2101
2203
|
},
|
2102
2204
|
"ConnectionType": {}
|
2103
2205
|
}
|
@@ -2117,7 +2219,7 @@
|
|
2117
2219
|
"ConnectionList": {
|
2118
2220
|
"type": "list",
|
2119
2221
|
"member": {
|
2120
|
-
"shape": "
|
2222
|
+
"shape": "Sjy"
|
2121
2223
|
}
|
2122
2224
|
},
|
2123
2225
|
"NextToken": {}
|
@@ -2245,7 +2347,7 @@
|
|
2245
2347
|
"type": "structure",
|
2246
2348
|
"members": {
|
2247
2349
|
"DataCatalogEncryptionSettings": {
|
2248
|
-
"shape": "
|
2350
|
+
"shape": "Skf"
|
2249
2351
|
}
|
2250
2352
|
}
|
2251
2353
|
}
|
@@ -2347,7 +2449,7 @@
|
|
2347
2449
|
"Description": {},
|
2348
2450
|
"Ruleset": {},
|
2349
2451
|
"TargetTable": {
|
2350
|
-
"shape": "
|
2452
|
+
"shape": "Sdy"
|
2351
2453
|
},
|
2352
2454
|
"CreatedOn": {
|
2353
2455
|
"type": "timestamp"
|
@@ -2384,7 +2486,7 @@
|
|
2384
2486
|
"type": "integer"
|
2385
2487
|
},
|
2386
2488
|
"AdditionalRunOptions": {
|
2387
|
-
"shape": "
|
2489
|
+
"shape": "Skr"
|
2388
2490
|
},
|
2389
2491
|
"Status": {},
|
2390
2492
|
"ErrorString": {},
|
@@ -2401,14 +2503,14 @@
|
|
2401
2503
|
"type": "integer"
|
2402
2504
|
},
|
2403
2505
|
"RulesetNames": {
|
2404
|
-
"shape": "
|
2506
|
+
"shape": "Sks"
|
2405
2507
|
},
|
2406
2508
|
"ResultIds": {
|
2407
2509
|
"type": "list",
|
2408
2510
|
"member": {}
|
2409
2511
|
},
|
2410
2512
|
"AdditionalDataSources": {
|
2411
|
-
"shape": "
|
2513
|
+
"shape": "Sku"
|
2412
2514
|
}
|
2413
2515
|
}
|
2414
2516
|
}
|
@@ -2428,7 +2530,7 @@
|
|
2428
2530
|
"type": "structure",
|
2429
2531
|
"members": {
|
2430
2532
|
"Database": {
|
2431
|
-
"shape": "
|
2533
|
+
"shape": "Skx"
|
2432
2534
|
}
|
2433
2535
|
}
|
2434
2536
|
}
|
@@ -2454,7 +2556,7 @@
|
|
2454
2556
|
"DatabaseList": {
|
2455
2557
|
"type": "list",
|
2456
2558
|
"member": {
|
2457
|
-
"shape": "
|
2559
|
+
"shape": "Skx"
|
2458
2560
|
}
|
2459
2561
|
},
|
2460
2562
|
"NextToken": {}
|
@@ -2472,10 +2574,10 @@
|
|
2472
2574
|
"type": "structure",
|
2473
2575
|
"members": {
|
2474
2576
|
"DagNodes": {
|
2475
|
-
"shape": "
|
2577
|
+
"shape": "Sf7"
|
2476
2578
|
},
|
2477
2579
|
"DagEdges": {
|
2478
|
-
"shape": "
|
2580
|
+
"shape": "Sff"
|
2479
2581
|
}
|
2480
2582
|
}
|
2481
2583
|
}
|
@@ -2553,7 +2655,7 @@
|
|
2553
2655
|
"type": "structure",
|
2554
2656
|
"members": {
|
2555
2657
|
"JobBookmarkEntry": {
|
2556
|
-
"shape": "
|
2658
|
+
"shape": "Slf"
|
2557
2659
|
}
|
2558
2660
|
}
|
2559
2661
|
}
|
@@ -2577,7 +2679,7 @@
|
|
2577
2679
|
"type": "structure",
|
2578
2680
|
"members": {
|
2579
2681
|
"JobRun": {
|
2580
|
-
"shape": "
|
2682
|
+
"shape": "Sbr"
|
2581
2683
|
}
|
2582
2684
|
}
|
2583
2685
|
}
|
@@ -2600,7 +2702,7 @@
|
|
2600
2702
|
"type": "structure",
|
2601
2703
|
"members": {
|
2602
2704
|
"JobRuns": {
|
2603
|
-
"shape": "
|
2705
|
+
"shape": "Sbq"
|
2604
2706
|
},
|
2605
2707
|
"NextToken": {}
|
2606
2708
|
}
|
@@ -2646,7 +2748,7 @@
|
|
2646
2748
|
"Status": {},
|
2647
2749
|
"LogGroupName": {},
|
2648
2750
|
"Properties": {
|
2649
|
-
"shape": "
|
2751
|
+
"shape": "Slp"
|
2650
2752
|
},
|
2651
2753
|
"ErrorString": {},
|
2652
2754
|
"StartedOn": {
|
@@ -2715,7 +2817,7 @@
|
|
2715
2817
|
"Status": {},
|
2716
2818
|
"LogGroupName": {},
|
2717
2819
|
"Properties": {
|
2718
|
-
"shape": "
|
2820
|
+
"shape": "Slp"
|
2719
2821
|
},
|
2720
2822
|
"ErrorString": {},
|
2721
2823
|
"StartedOn": {
|
@@ -2761,19 +2863,19 @@
|
|
2761
2863
|
"type": "timestamp"
|
2762
2864
|
},
|
2763
2865
|
"InputRecordTables": {
|
2764
|
-
"shape": "
|
2866
|
+
"shape": "Sei"
|
2765
2867
|
},
|
2766
2868
|
"Parameters": {
|
2767
|
-
"shape": "
|
2869
|
+
"shape": "Sej"
|
2768
2870
|
},
|
2769
2871
|
"EvaluationMetrics": {
|
2770
|
-
"shape": "
|
2872
|
+
"shape": "Sm8"
|
2771
2873
|
},
|
2772
2874
|
"LabelCount": {
|
2773
2875
|
"type": "integer"
|
2774
2876
|
},
|
2775
2877
|
"Schema": {
|
2776
|
-
"shape": "
|
2878
|
+
"shape": "Smf"
|
2777
2879
|
},
|
2778
2880
|
"Role": {},
|
2779
2881
|
"GlueVersion": {},
|
@@ -2791,7 +2893,7 @@
|
|
2791
2893
|
"type": "integer"
|
2792
2894
|
},
|
2793
2895
|
"TransformEncryption": {
|
2794
|
-
"shape": "
|
2896
|
+
"shape": "Sen"
|
2795
2897
|
}
|
2796
2898
|
}
|
2797
2899
|
}
|
@@ -2805,10 +2907,10 @@
|
|
2805
2907
|
"type": "integer"
|
2806
2908
|
},
|
2807
2909
|
"Filter": {
|
2808
|
-
"shape": "
|
2910
|
+
"shape": "Smi"
|
2809
2911
|
},
|
2810
2912
|
"Sort": {
|
2811
|
-
"shape": "
|
2913
|
+
"shape": "Smj"
|
2812
2914
|
}
|
2813
2915
|
}
|
2814
2916
|
},
|
@@ -2834,19 +2936,19 @@
|
|
2834
2936
|
"type": "timestamp"
|
2835
2937
|
},
|
2836
2938
|
"InputRecordTables": {
|
2837
|
-
"shape": "
|
2939
|
+
"shape": "Sei"
|
2838
2940
|
},
|
2839
2941
|
"Parameters": {
|
2840
|
-
"shape": "
|
2942
|
+
"shape": "Sej"
|
2841
2943
|
},
|
2842
2944
|
"EvaluationMetrics": {
|
2843
|
-
"shape": "
|
2945
|
+
"shape": "Sm8"
|
2844
2946
|
},
|
2845
2947
|
"LabelCount": {
|
2846
2948
|
"type": "integer"
|
2847
2949
|
},
|
2848
2950
|
"Schema": {
|
2849
|
-
"shape": "
|
2951
|
+
"shape": "Smf"
|
2850
2952
|
},
|
2851
2953
|
"Role": {},
|
2852
2954
|
"GlueVersion": {},
|
@@ -2864,7 +2966,7 @@
|
|
2864
2966
|
"type": "integer"
|
2865
2967
|
},
|
2866
2968
|
"TransformEncryption": {
|
2867
|
-
"shape": "
|
2969
|
+
"shape": "Sen"
|
2868
2970
|
}
|
2869
2971
|
}
|
2870
2972
|
}
|
@@ -2881,13 +2983,13 @@
|
|
2881
2983
|
],
|
2882
2984
|
"members": {
|
2883
2985
|
"Source": {
|
2884
|
-
"shape": "
|
2986
|
+
"shape": "Smp"
|
2885
2987
|
},
|
2886
2988
|
"Sinks": {
|
2887
|
-
"shape": "
|
2989
|
+
"shape": "Smq"
|
2888
2990
|
},
|
2889
2991
|
"Location": {
|
2890
|
-
"shape": "
|
2992
|
+
"shape": "Smr"
|
2891
2993
|
}
|
2892
2994
|
}
|
2893
2995
|
},
|
@@ -2898,7 +3000,7 @@
|
|
2898
3000
|
],
|
2899
3001
|
"members": {
|
2900
3002
|
"Mapping": {
|
2901
|
-
"shape": "
|
3003
|
+
"shape": "Smt"
|
2902
3004
|
}
|
2903
3005
|
}
|
2904
3006
|
}
|
@@ -3008,7 +3110,7 @@
|
|
3008
3110
|
"Expression": {},
|
3009
3111
|
"NextToken": {},
|
3010
3112
|
"Segment": {
|
3011
|
-
"shape": "
|
3113
|
+
"shape": "Snd"
|
3012
3114
|
},
|
3013
3115
|
"MaxResults": {
|
3014
3116
|
"type": "integer"
|
@@ -3041,16 +3143,16 @@
|
|
3041
3143
|
],
|
3042
3144
|
"members": {
|
3043
3145
|
"Mapping": {
|
3044
|
-
"shape": "
|
3146
|
+
"shape": "Smt"
|
3045
3147
|
},
|
3046
3148
|
"Source": {
|
3047
|
-
"shape": "
|
3149
|
+
"shape": "Smp"
|
3048
3150
|
},
|
3049
3151
|
"Sinks": {
|
3050
|
-
"shape": "
|
3152
|
+
"shape": "Smq"
|
3051
3153
|
},
|
3052
3154
|
"Location": {
|
3053
|
-
"shape": "
|
3155
|
+
"shape": "Smr"
|
3054
3156
|
},
|
3055
3157
|
"Language": {},
|
3056
3158
|
"AdditionalPlanOptionsMap": {
|
@@ -3076,7 +3178,7 @@
|
|
3076
3178
|
],
|
3077
3179
|
"members": {
|
3078
3180
|
"RegistryId": {
|
3079
|
-
"shape": "
|
3181
|
+
"shape": "Sf0"
|
3080
3182
|
}
|
3081
3183
|
}
|
3082
3184
|
},
|
@@ -3217,7 +3319,7 @@
|
|
3217
3319
|
},
|
3218
3320
|
"SchemaVersionId": {},
|
3219
3321
|
"SchemaVersionNumber": {
|
3220
|
-
"shape": "
|
3322
|
+
"shape": "So0"
|
3221
3323
|
}
|
3222
3324
|
}
|
3223
3325
|
},
|
@@ -3250,10 +3352,10 @@
|
|
3250
3352
|
"shape": "Sw"
|
3251
3353
|
},
|
3252
3354
|
"FirstSchemaVersionNumber": {
|
3253
|
-
"shape": "
|
3355
|
+
"shape": "So0"
|
3254
3356
|
},
|
3255
3357
|
"SecondSchemaVersionNumber": {
|
3256
|
-
"shape": "
|
3358
|
+
"shape": "So0"
|
3257
3359
|
},
|
3258
3360
|
"SchemaDiffType": {}
|
3259
3361
|
}
|
@@ -3279,7 +3381,7 @@
|
|
3279
3381
|
"type": "structure",
|
3280
3382
|
"members": {
|
3281
3383
|
"SecurityConfiguration": {
|
3282
|
-
"shape": "
|
3384
|
+
"shape": "So9"
|
3283
3385
|
}
|
3284
3386
|
}
|
3285
3387
|
}
|
@@ -3300,7 +3402,7 @@
|
|
3300
3402
|
"SecurityConfigurations": {
|
3301
3403
|
"type": "list",
|
3302
3404
|
"member": {
|
3303
|
-
"shape": "
|
3405
|
+
"shape": "So9"
|
3304
3406
|
}
|
3305
3407
|
},
|
3306
3408
|
"NextToken": {}
|
@@ -3322,7 +3424,7 @@
|
|
3322
3424
|
"type": "structure",
|
3323
3425
|
"members": {
|
3324
3426
|
"Session": {
|
3325
|
-
"shape": "
|
3427
|
+
"shape": "Sg2"
|
3326
3428
|
}
|
3327
3429
|
}
|
3328
3430
|
}
|
@@ -3346,7 +3448,7 @@
|
|
3346
3448
|
"type": "structure",
|
3347
3449
|
"members": {
|
3348
3450
|
"Statement": {
|
3349
|
-
"shape": "
|
3451
|
+
"shape": "Soh"
|
3350
3452
|
}
|
3351
3453
|
}
|
3352
3454
|
}
|
@@ -3372,7 +3474,35 @@
|
|
3372
3474
|
"type": "structure",
|
3373
3475
|
"members": {
|
3374
3476
|
"Table": {
|
3375
|
-
"shape": "
|
3477
|
+
"shape": "Soo"
|
3478
|
+
}
|
3479
|
+
}
|
3480
|
+
}
|
3481
|
+
},
|
3482
|
+
"GetTableOptimizer": {
|
3483
|
+
"input": {
|
3484
|
+
"type": "structure",
|
3485
|
+
"required": [
|
3486
|
+
"CatalogId",
|
3487
|
+
"DatabaseName",
|
3488
|
+
"TableName",
|
3489
|
+
"Type"
|
3490
|
+
],
|
3491
|
+
"members": {
|
3492
|
+
"CatalogId": {},
|
3493
|
+
"DatabaseName": {},
|
3494
|
+
"TableName": {},
|
3495
|
+
"Type": {}
|
3496
|
+
}
|
3497
|
+
},
|
3498
|
+
"output": {
|
3499
|
+
"type": "structure",
|
3500
|
+
"members": {
|
3501
|
+
"CatalogId": {},
|
3502
|
+
"DatabaseName": {},
|
3503
|
+
"TableName": {},
|
3504
|
+
"TableOptimizer": {
|
3505
|
+
"shape": "Sah"
|
3376
3506
|
}
|
3377
3507
|
}
|
3378
3508
|
}
|
@@ -3395,7 +3525,7 @@
|
|
3395
3525
|
"type": "structure",
|
3396
3526
|
"members": {
|
3397
3527
|
"TableVersion": {
|
3398
|
-
"shape": "
|
3528
|
+
"shape": "Sou"
|
3399
3529
|
}
|
3400
3530
|
}
|
3401
3531
|
}
|
@@ -3423,7 +3553,7 @@
|
|
3423
3553
|
"TableVersions": {
|
3424
3554
|
"type": "list",
|
3425
3555
|
"member": {
|
3426
|
-
"shape": "
|
3556
|
+
"shape": "Sou"
|
3427
3557
|
}
|
3428
3558
|
},
|
3429
3559
|
"NextToken": {}
|
@@ -3454,7 +3584,7 @@
|
|
3454
3584
|
"type": "structure",
|
3455
3585
|
"members": {
|
3456
3586
|
"TableList": {
|
3457
|
-
"shape": "
|
3587
|
+
"shape": "Sp1"
|
3458
3588
|
},
|
3459
3589
|
"NextToken": {}
|
3460
3590
|
}
|
@@ -3474,7 +3604,7 @@
|
|
3474
3604
|
"type": "structure",
|
3475
3605
|
"members": {
|
3476
3606
|
"Tags": {
|
3477
|
-
"shape": "
|
3607
|
+
"shape": "Scy"
|
3478
3608
|
}
|
3479
3609
|
}
|
3480
3610
|
}
|
@@ -3493,7 +3623,7 @@
|
|
3493
3623
|
"type": "structure",
|
3494
3624
|
"members": {
|
3495
3625
|
"Trigger": {
|
3496
|
-
"shape": "
|
3626
|
+
"shape": "Sav"
|
3497
3627
|
}
|
3498
3628
|
}
|
3499
3629
|
}
|
@@ -3513,7 +3643,7 @@
|
|
3513
3643
|
"type": "structure",
|
3514
3644
|
"members": {
|
3515
3645
|
"Triggers": {
|
3516
|
-
"shape": "
|
3646
|
+
"shape": "Sau"
|
3517
3647
|
},
|
3518
3648
|
"NextToken": {}
|
3519
3649
|
}
|
@@ -3537,10 +3667,10 @@
|
|
3537
3667
|
"shape": "S6"
|
3538
3668
|
},
|
3539
3669
|
"AuditContext": {
|
3540
|
-
"shape": "
|
3670
|
+
"shape": "Sp9"
|
3541
3671
|
},
|
3542
3672
|
"SupportedPermissionTypes": {
|
3543
|
-
"shape": "
|
3673
|
+
"shape": "Spc"
|
3544
3674
|
}
|
3545
3675
|
}
|
3546
3676
|
},
|
@@ -3574,14 +3704,14 @@
|
|
3574
3704
|
"TableName": {},
|
3575
3705
|
"Expression": {},
|
3576
3706
|
"AuditContext": {
|
3577
|
-
"shape": "
|
3707
|
+
"shape": "Sp9"
|
3578
3708
|
},
|
3579
3709
|
"SupportedPermissionTypes": {
|
3580
|
-
"shape": "
|
3710
|
+
"shape": "Spc"
|
3581
3711
|
},
|
3582
3712
|
"NextToken": {},
|
3583
3713
|
"Segment": {
|
3584
|
-
"shape": "
|
3714
|
+
"shape": "Snd"
|
3585
3715
|
},
|
3586
3716
|
"MaxResults": {
|
3587
3717
|
"type": "integer"
|
@@ -3626,10 +3756,10 @@
|
|
3626
3756
|
"DatabaseName": {},
|
3627
3757
|
"Name": {},
|
3628
3758
|
"AuditContext": {
|
3629
|
-
"shape": "
|
3759
|
+
"shape": "Sp9"
|
3630
3760
|
},
|
3631
3761
|
"SupportedPermissionTypes": {
|
3632
|
-
"shape": "
|
3762
|
+
"shape": "Spc"
|
3633
3763
|
}
|
3634
3764
|
}
|
3635
3765
|
},
|
@@ -3637,7 +3767,7 @@
|
|
3637
3767
|
"type": "structure",
|
3638
3768
|
"members": {
|
3639
3769
|
"Table": {
|
3640
|
-
"shape": "
|
3770
|
+
"shape": "Soo"
|
3641
3771
|
},
|
3642
3772
|
"AuthorizedColumns": {
|
3643
3773
|
"shape": "Sn"
|
@@ -3675,7 +3805,7 @@
|
|
3675
3805
|
"type": "structure",
|
3676
3806
|
"members": {
|
3677
3807
|
"UserDefinedFunction": {
|
3678
|
-
"shape": "
|
3808
|
+
"shape": "Spp"
|
3679
3809
|
}
|
3680
3810
|
}
|
3681
3811
|
}
|
@@ -3702,7 +3832,7 @@
|
|
3702
3832
|
"UserDefinedFunctions": {
|
3703
3833
|
"type": "list",
|
3704
3834
|
"member": {
|
3705
|
-
"shape": "
|
3835
|
+
"shape": "Spp"
|
3706
3836
|
}
|
3707
3837
|
},
|
3708
3838
|
"NextToken": {}
|
@@ -3726,7 +3856,7 @@
|
|
3726
3856
|
"type": "structure",
|
3727
3857
|
"members": {
|
3728
3858
|
"Workflow": {
|
3729
|
-
"shape": "
|
3859
|
+
"shape": "Sbf"
|
3730
3860
|
}
|
3731
3861
|
}
|
3732
3862
|
}
|
@@ -3750,7 +3880,7 @@
|
|
3750
3880
|
"type": "structure",
|
3751
3881
|
"members": {
|
3752
3882
|
"Run": {
|
3753
|
-
"shape": "
|
3883
|
+
"shape": "Sbh"
|
3754
3884
|
}
|
3755
3885
|
}
|
3756
3886
|
}
|
@@ -3771,7 +3901,7 @@
|
|
3771
3901
|
"type": "structure",
|
3772
3902
|
"members": {
|
3773
3903
|
"RunProperties": {
|
3774
|
-
"shape": "
|
3904
|
+
"shape": "Sbg"
|
3775
3905
|
}
|
3776
3906
|
}
|
3777
3907
|
}
|
@@ -3799,7 +3929,7 @@
|
|
3799
3929
|
"Runs": {
|
3800
3930
|
"type": "list",
|
3801
3931
|
"member": {
|
3802
|
-
"shape": "
|
3932
|
+
"shape": "Sbh"
|
3803
3933
|
}
|
3804
3934
|
},
|
3805
3935
|
"NextToken": {}
|
@@ -3827,7 +3957,7 @@
|
|
3827
3957
|
"type": "integer"
|
3828
3958
|
},
|
3829
3959
|
"Tags": {
|
3830
|
-
"shape": "
|
3960
|
+
"shape": "Scy"
|
3831
3961
|
}
|
3832
3962
|
}
|
3833
3963
|
},
|
@@ -3850,7 +3980,7 @@
|
|
3850
3980
|
},
|
3851
3981
|
"NextToken": {},
|
3852
3982
|
"Tags": {
|
3853
|
-
"shape": "
|
3983
|
+
"shape": "Scy"
|
3854
3984
|
}
|
3855
3985
|
}
|
3856
3986
|
},
|
@@ -3929,7 +4059,7 @@
|
|
3929
4059
|
"type": "integer"
|
3930
4060
|
},
|
3931
4061
|
"Tags": {
|
3932
|
-
"shape": "
|
4062
|
+
"shape": "Scy"
|
3933
4063
|
}
|
3934
4064
|
}
|
3935
4065
|
},
|
@@ -4122,12 +4252,12 @@
|
|
4122
4252
|
"type": "timestamp"
|
4123
4253
|
},
|
4124
4254
|
"TargetTable": {
|
4125
|
-
"shape": "
|
4255
|
+
"shape": "Sdy"
|
4126
4256
|
}
|
4127
4257
|
}
|
4128
4258
|
},
|
4129
4259
|
"Tags": {
|
4130
|
-
"shape": "
|
4260
|
+
"shape": "Scy"
|
4131
4261
|
}
|
4132
4262
|
}
|
4133
4263
|
},
|
@@ -4148,7 +4278,7 @@
|
|
4148
4278
|
"type": "timestamp"
|
4149
4279
|
},
|
4150
4280
|
"TargetTable": {
|
4151
|
-
"shape": "
|
4281
|
+
"shape": "Sdy"
|
4152
4282
|
},
|
4153
4283
|
"RecommendationRunId": {},
|
4154
4284
|
"RuleCount": {
|
@@ -4170,7 +4300,7 @@
|
|
4170
4300
|
"type": "integer"
|
4171
4301
|
},
|
4172
4302
|
"Tags": {
|
4173
|
-
"shape": "
|
4303
|
+
"shape": "Scy"
|
4174
4304
|
}
|
4175
4305
|
}
|
4176
4306
|
},
|
@@ -4194,7 +4324,7 @@
|
|
4194
4324
|
"type": "integer"
|
4195
4325
|
},
|
4196
4326
|
"Tags": {
|
4197
|
-
"shape": "
|
4327
|
+
"shape": "Scy"
|
4198
4328
|
}
|
4199
4329
|
}
|
4200
4330
|
},
|
@@ -4217,13 +4347,13 @@
|
|
4217
4347
|
"type": "integer"
|
4218
4348
|
},
|
4219
4349
|
"Filter": {
|
4220
|
-
"shape": "
|
4350
|
+
"shape": "Smi"
|
4221
4351
|
},
|
4222
4352
|
"Sort": {
|
4223
|
-
"shape": "
|
4353
|
+
"shape": "Smj"
|
4224
4354
|
},
|
4225
4355
|
"Tags": {
|
4226
|
-
"shape": "
|
4356
|
+
"shape": "Scy"
|
4227
4357
|
}
|
4228
4358
|
}
|
4229
4359
|
},
|
@@ -4315,7 +4445,7 @@
|
|
4315
4445
|
"type": "structure",
|
4316
4446
|
"members": {
|
4317
4447
|
"RegistryId": {
|
4318
|
-
"shape": "
|
4448
|
+
"shape": "Sf0"
|
4319
4449
|
},
|
4320
4450
|
"MaxResults": {
|
4321
4451
|
"type": "integer"
|
@@ -4354,7 +4484,7 @@
|
|
4354
4484
|
"type": "integer"
|
4355
4485
|
},
|
4356
4486
|
"Tags": {
|
4357
|
-
"shape": "
|
4487
|
+
"shape": "Scy"
|
4358
4488
|
},
|
4359
4489
|
"RequestOrigin": {}
|
4360
4490
|
}
|
@@ -4369,7 +4499,7 @@
|
|
4369
4499
|
"Sessions": {
|
4370
4500
|
"type": "list",
|
4371
4501
|
"member": {
|
4372
|
-
"shape": "
|
4502
|
+
"shape": "Sg2"
|
4373
4503
|
}
|
4374
4504
|
},
|
4375
4505
|
"NextToken": {}
|
@@ -4394,13 +4524,49 @@
|
|
4394
4524
|
"Statements": {
|
4395
4525
|
"type": "list",
|
4396
4526
|
"member": {
|
4397
|
-
"shape": "
|
4527
|
+
"shape": "Soh"
|
4398
4528
|
}
|
4399
4529
|
},
|
4400
4530
|
"NextToken": {}
|
4401
4531
|
}
|
4402
4532
|
}
|
4403
4533
|
},
|
4534
|
+
"ListTableOptimizerRuns": {
|
4535
|
+
"input": {
|
4536
|
+
"type": "structure",
|
4537
|
+
"required": [
|
4538
|
+
"CatalogId",
|
4539
|
+
"DatabaseName",
|
4540
|
+
"TableName",
|
4541
|
+
"Type"
|
4542
|
+
],
|
4543
|
+
"members": {
|
4544
|
+
"CatalogId": {},
|
4545
|
+
"DatabaseName": {},
|
4546
|
+
"TableName": {},
|
4547
|
+
"Type": {},
|
4548
|
+
"MaxResults": {
|
4549
|
+
"type": "integer"
|
4550
|
+
},
|
4551
|
+
"NextToken": {}
|
4552
|
+
}
|
4553
|
+
},
|
4554
|
+
"output": {
|
4555
|
+
"type": "structure",
|
4556
|
+
"members": {
|
4557
|
+
"CatalogId": {},
|
4558
|
+
"DatabaseName": {},
|
4559
|
+
"TableName": {},
|
4560
|
+
"NextToken": {},
|
4561
|
+
"TableOptimizerRuns": {
|
4562
|
+
"type": "list",
|
4563
|
+
"member": {
|
4564
|
+
"shape": "Sak"
|
4565
|
+
}
|
4566
|
+
}
|
4567
|
+
}
|
4568
|
+
}
|
4569
|
+
},
|
4404
4570
|
"ListTriggers": {
|
4405
4571
|
"input": {
|
4406
4572
|
"type": "structure",
|
@@ -4411,7 +4577,7 @@
|
|
4411
4577
|
"type": "integer"
|
4412
4578
|
},
|
4413
4579
|
"Tags": {
|
4414
|
-
"shape": "
|
4580
|
+
"shape": "Scy"
|
4415
4581
|
}
|
4416
4582
|
}
|
4417
4583
|
},
|
@@ -4419,7 +4585,7 @@
|
|
4419
4585
|
"type": "structure",
|
4420
4586
|
"members": {
|
4421
4587
|
"TriggerNames": {
|
4422
|
-
"shape": "
|
4588
|
+
"shape": "Sas"
|
4423
4589
|
},
|
4424
4590
|
"NextToken": {}
|
4425
4591
|
}
|
@@ -4439,7 +4605,7 @@
|
|
4439
4605
|
"type": "structure",
|
4440
4606
|
"members": {
|
4441
4607
|
"Workflows": {
|
4442
|
-
"shape": "
|
4608
|
+
"shape": "Sbc"
|
4443
4609
|
},
|
4444
4610
|
"NextToken": {}
|
4445
4611
|
}
|
@@ -4454,7 +4620,7 @@
|
|
4454
4620
|
"members": {
|
4455
4621
|
"CatalogId": {},
|
4456
4622
|
"DataCatalogEncryptionSettings": {
|
4457
|
-
"shape": "
|
4623
|
+
"shape": "Skf"
|
4458
4624
|
}
|
4459
4625
|
}
|
4460
4626
|
},
|
@@ -4495,11 +4661,11 @@
|
|
4495
4661
|
"shape": "Sw"
|
4496
4662
|
},
|
4497
4663
|
"SchemaVersionNumber": {
|
4498
|
-
"shape": "
|
4664
|
+
"shape": "So0"
|
4499
4665
|
},
|
4500
4666
|
"SchemaVersionId": {},
|
4501
4667
|
"MetadataKeyValue": {
|
4502
|
-
"shape": "
|
4668
|
+
"shape": "Sse"
|
4503
4669
|
}
|
4504
4670
|
}
|
4505
4671
|
},
|
@@ -4533,7 +4699,7 @@
|
|
4533
4699
|
"Name": {},
|
4534
4700
|
"RunId": {},
|
4535
4701
|
"RunProperties": {
|
4536
|
-
"shape": "
|
4702
|
+
"shape": "Sbg"
|
4537
4703
|
}
|
4538
4704
|
}
|
4539
4705
|
},
|
@@ -4550,13 +4716,13 @@
|
|
4550
4716
|
"shape": "Sw"
|
4551
4717
|
},
|
4552
4718
|
"SchemaVersionNumber": {
|
4553
|
-
"shape": "
|
4719
|
+
"shape": "So0"
|
4554
4720
|
},
|
4555
4721
|
"SchemaVersionId": {},
|
4556
4722
|
"MetadataList": {
|
4557
4723
|
"type": "list",
|
4558
4724
|
"member": {
|
4559
|
-
"shape": "
|
4725
|
+
"shape": "Sse"
|
4560
4726
|
}
|
4561
4727
|
},
|
4562
4728
|
"MaxResults": {
|
@@ -4630,11 +4796,11 @@
|
|
4630
4796
|
"shape": "Sw"
|
4631
4797
|
},
|
4632
4798
|
"SchemaVersionNumber": {
|
4633
|
-
"shape": "
|
4799
|
+
"shape": "So0"
|
4634
4800
|
},
|
4635
4801
|
"SchemaVersionId": {},
|
4636
4802
|
"MetadataKeyValue": {
|
4637
|
-
"shape": "
|
4803
|
+
"shape": "Sse"
|
4638
4804
|
}
|
4639
4805
|
}
|
4640
4806
|
},
|
@@ -4671,7 +4837,7 @@
|
|
4671
4837
|
"type": "structure",
|
4672
4838
|
"members": {
|
4673
4839
|
"JobBookmarkEntry": {
|
4674
|
-
"shape": "
|
4840
|
+
"shape": "Slf"
|
4675
4841
|
}
|
4676
4842
|
}
|
4677
4843
|
}
|
@@ -4688,7 +4854,7 @@
|
|
4688
4854
|
"Name": {},
|
4689
4855
|
"RunId": {},
|
4690
4856
|
"NodeIds": {
|
4691
|
-
"shape": "
|
4857
|
+
"shape": "Ssz"
|
4692
4858
|
}
|
4693
4859
|
}
|
4694
4860
|
},
|
@@ -4697,7 +4863,7 @@
|
|
4697
4863
|
"members": {
|
4698
4864
|
"RunId": {},
|
4699
4865
|
"NodeIds": {
|
4700
|
-
"shape": "
|
4866
|
+
"shape": "Ssz"
|
4701
4867
|
}
|
4702
4868
|
}
|
4703
4869
|
}
|
@@ -4763,7 +4929,7 @@
|
|
4763
4929
|
"members": {
|
4764
4930
|
"NextToken": {},
|
4765
4931
|
"TableList": {
|
4766
|
-
"shape": "
|
4932
|
+
"shape": "Sp1"
|
4767
4933
|
}
|
4768
4934
|
}
|
4769
4935
|
}
|
@@ -4869,13 +5035,13 @@
|
|
4869
5035
|
},
|
4870
5036
|
"ClientToken": {},
|
4871
5037
|
"AdditionalRunOptions": {
|
4872
|
-
"shape": "
|
5038
|
+
"shape": "Skr"
|
4873
5039
|
},
|
4874
5040
|
"RulesetNames": {
|
4875
|
-
"shape": "
|
5041
|
+
"shape": "Sks"
|
4876
5042
|
},
|
4877
5043
|
"AdditionalDataSources": {
|
4878
|
-
"shape": "
|
5044
|
+
"shape": "Sku"
|
4879
5045
|
}
|
4880
5046
|
}
|
4881
5047
|
},
|
@@ -5031,7 +5197,7 @@
|
|
5031
5197
|
"members": {
|
5032
5198
|
"Name": {},
|
5033
5199
|
"RunProperties": {
|
5034
|
-
"shape": "
|
5200
|
+
"shape": "Sbg"
|
5035
5201
|
}
|
5036
5202
|
}
|
5037
5203
|
},
|
@@ -5134,7 +5300,7 @@
|
|
5134
5300
|
"members": {
|
5135
5301
|
"ResourceArn": {},
|
5136
5302
|
"TagsToAdd": {
|
5137
|
-
"shape": "
|
5303
|
+
"shape": "Scy"
|
5138
5304
|
}
|
5139
5305
|
}
|
5140
5306
|
},
|
@@ -5231,7 +5397,7 @@
|
|
5231
5397
|
"QuoteSymbol": {},
|
5232
5398
|
"ContainsHeader": {},
|
5233
5399
|
"Header": {
|
5234
|
-
"shape": "
|
5400
|
+
"shape": "Sdf"
|
5235
5401
|
},
|
5236
5402
|
"DisableValueTrimming": {
|
5237
5403
|
"type": "boolean"
|
@@ -5243,7 +5409,7 @@
|
|
5243
5409
|
"type": "boolean"
|
5244
5410
|
},
|
5245
5411
|
"CustomDatatypes": {
|
5246
|
-
"shape": "
|
5412
|
+
"shape": "Sdg"
|
5247
5413
|
},
|
5248
5414
|
"Serde": {}
|
5249
5415
|
}
|
@@ -5272,7 +5438,7 @@
|
|
5272
5438
|
"shape": "S6"
|
5273
5439
|
},
|
5274
5440
|
"ColumnStatisticsList": {
|
5275
|
-
"shape": "
|
5441
|
+
"shape": "Suo"
|
5276
5442
|
}
|
5277
5443
|
}
|
5278
5444
|
},
|
@@ -5280,7 +5446,7 @@
|
|
5280
5446
|
"type": "structure",
|
5281
5447
|
"members": {
|
5282
5448
|
"Errors": {
|
5283
|
-
"shape": "
|
5449
|
+
"shape": "Suq"
|
5284
5450
|
}
|
5285
5451
|
}
|
5286
5452
|
}
|
@@ -5298,7 +5464,7 @@
|
|
5298
5464
|
"DatabaseName": {},
|
5299
5465
|
"TableName": {},
|
5300
5466
|
"ColumnStatisticsList": {
|
5301
|
-
"shape": "
|
5467
|
+
"shape": "Suo"
|
5302
5468
|
}
|
5303
5469
|
}
|
5304
5470
|
},
|
@@ -5306,7 +5472,7 @@
|
|
5306
5472
|
"type": "structure",
|
5307
5473
|
"members": {
|
5308
5474
|
"Errors": {
|
5309
|
-
"shape": "
|
5475
|
+
"shape": "Suq"
|
5310
5476
|
}
|
5311
5477
|
}
|
5312
5478
|
}
|
@@ -5322,7 +5488,7 @@
|
|
5322
5488
|
"CatalogId": {},
|
5323
5489
|
"Name": {},
|
5324
5490
|
"ConnectionInput": {
|
5325
|
-
"shape": "
|
5491
|
+
"shape": "Sdk"
|
5326
5492
|
}
|
5327
5493
|
}
|
5328
5494
|
},
|
@@ -5419,7 +5585,7 @@
|
|
5419
5585
|
"CatalogId": {},
|
5420
5586
|
"Name": {},
|
5421
5587
|
"DatabaseInput": {
|
5422
|
-
"shape": "
|
5588
|
+
"shape": "Se1"
|
5423
5589
|
}
|
5424
5590
|
}
|
5425
5591
|
},
|
@@ -5570,7 +5736,7 @@
|
|
5570
5736
|
"Name": {},
|
5571
5737
|
"Description": {},
|
5572
5738
|
"Parameters": {
|
5573
|
-
"shape": "
|
5739
|
+
"shape": "Sej"
|
5574
5740
|
},
|
5575
5741
|
"Role": {},
|
5576
5742
|
"GlueVersion": {},
|
@@ -5610,7 +5776,7 @@
|
|
5610
5776
|
"DatabaseName": {},
|
5611
5777
|
"TableName": {},
|
5612
5778
|
"PartitionValueList": {
|
5613
|
-
"shape": "
|
5779
|
+
"shape": "Scd"
|
5614
5780
|
},
|
5615
5781
|
"PartitionInput": {
|
5616
5782
|
"shape": "S5"
|
@@ -5631,7 +5797,7 @@
|
|
5631
5797
|
],
|
5632
5798
|
"members": {
|
5633
5799
|
"RegistryId": {
|
5634
|
-
"shape": "
|
5800
|
+
"shape": "Sf0"
|
5635
5801
|
},
|
5636
5802
|
"Description": {}
|
5637
5803
|
}
|
@@ -5655,7 +5821,7 @@
|
|
5655
5821
|
"shape": "Sw"
|
5656
5822
|
},
|
5657
5823
|
"SchemaVersionNumber": {
|
5658
|
-
"shape": "
|
5824
|
+
"shape": "So0"
|
5659
5825
|
},
|
5660
5826
|
"Compatibility": {},
|
5661
5827
|
"Description": {}
|
@@ -5703,7 +5869,7 @@
|
|
5703
5869
|
"CatalogId": {},
|
5704
5870
|
"DatabaseName": {},
|
5705
5871
|
"TableInput": {
|
5706
|
-
"shape": "
|
5872
|
+
"shape": "Sg7"
|
5707
5873
|
},
|
5708
5874
|
"SkipArchive": {
|
5709
5875
|
"type": "boolean"
|
@@ -5717,6 +5883,31 @@
|
|
5717
5883
|
"members": {}
|
5718
5884
|
}
|
5719
5885
|
},
|
5886
|
+
"UpdateTableOptimizer": {
|
5887
|
+
"input": {
|
5888
|
+
"type": "structure",
|
5889
|
+
"required": [
|
5890
|
+
"CatalogId",
|
5891
|
+
"DatabaseName",
|
5892
|
+
"TableName",
|
5893
|
+
"Type",
|
5894
|
+
"TableOptimizerConfiguration"
|
5895
|
+
],
|
5896
|
+
"members": {
|
5897
|
+
"CatalogId": {},
|
5898
|
+
"DatabaseName": {},
|
5899
|
+
"TableName": {},
|
5900
|
+
"Type": {},
|
5901
|
+
"TableOptimizerConfiguration": {
|
5902
|
+
"shape": "Sai"
|
5903
|
+
}
|
5904
|
+
}
|
5905
|
+
},
|
5906
|
+
"output": {
|
5907
|
+
"type": "structure",
|
5908
|
+
"members": {}
|
5909
|
+
}
|
5910
|
+
},
|
5720
5911
|
"UpdateTrigger": {
|
5721
5912
|
"input": {
|
5722
5913
|
"type": "structure",
|
@@ -5733,13 +5924,13 @@
|
|
5733
5924
|
"Description": {},
|
5734
5925
|
"Schedule": {},
|
5735
5926
|
"Actions": {
|
5736
|
-
"shape": "
|
5927
|
+
"shape": "Saz"
|
5737
5928
|
},
|
5738
5929
|
"Predicate": {
|
5739
|
-
"shape": "
|
5930
|
+
"shape": "Sb1"
|
5740
5931
|
},
|
5741
5932
|
"EventBatchingCondition": {
|
5742
|
-
"shape": "
|
5933
|
+
"shape": "Sb8"
|
5743
5934
|
}
|
5744
5935
|
}
|
5745
5936
|
}
|
@@ -5749,7 +5940,7 @@
|
|
5749
5940
|
"type": "structure",
|
5750
5941
|
"members": {
|
5751
5942
|
"Trigger": {
|
5752
|
-
"shape": "
|
5943
|
+
"shape": "Sav"
|
5753
5944
|
}
|
5754
5945
|
}
|
5755
5946
|
}
|
@@ -5767,7 +5958,7 @@
|
|
5767
5958
|
"DatabaseName": {},
|
5768
5959
|
"FunctionName": {},
|
5769
5960
|
"FunctionInput": {
|
5770
|
-
"shape": "
|
5961
|
+
"shape": "Sgm"
|
5771
5962
|
}
|
5772
5963
|
}
|
5773
5964
|
},
|
@@ -5786,7 +5977,7 @@
|
|
5786
5977
|
"Name": {},
|
5787
5978
|
"Description": {},
|
5788
5979
|
"DefaultRunProperties": {
|
5789
|
-
"shape": "
|
5980
|
+
"shape": "Sbg"
|
5790
5981
|
},
|
5791
5982
|
"MaxConcurrentRuns": {
|
5792
5983
|
"type": "integer"
|
@@ -8539,17 +8730,60 @@
|
|
8539
8730
|
"CatalogId": {}
|
8540
8731
|
}
|
8541
8732
|
},
|
8542
|
-
"
|
8733
|
+
"Sah": {
|
8734
|
+
"type": "structure",
|
8735
|
+
"members": {
|
8736
|
+
"type": {},
|
8737
|
+
"configuration": {
|
8738
|
+
"shape": "Sai"
|
8739
|
+
},
|
8740
|
+
"lastRun": {
|
8741
|
+
"shape": "Sak"
|
8742
|
+
}
|
8743
|
+
}
|
8744
|
+
},
|
8745
|
+
"Sai": {
|
8746
|
+
"type": "structure",
|
8747
|
+
"members": {
|
8748
|
+
"roleArn": {},
|
8749
|
+
"enabled": {
|
8750
|
+
"type": "boolean"
|
8751
|
+
}
|
8752
|
+
}
|
8753
|
+
},
|
8754
|
+
"Sak": {
|
8755
|
+
"type": "structure",
|
8756
|
+
"members": {
|
8757
|
+
"eventType": {},
|
8758
|
+
"startTimestamp": {
|
8759
|
+
"type": "timestamp"
|
8760
|
+
},
|
8761
|
+
"endTimestamp": {
|
8762
|
+
"type": "timestamp"
|
8763
|
+
},
|
8764
|
+
"metrics": {
|
8765
|
+
"type": "structure",
|
8766
|
+
"members": {
|
8767
|
+
"NumberOfBytesCompacted": {},
|
8768
|
+
"NumberOfFilesCompacted": {},
|
8769
|
+
"NumberOfDpus": {},
|
8770
|
+
"JobDurationInHour": {}
|
8771
|
+
}
|
8772
|
+
},
|
8773
|
+
"error": {}
|
8774
|
+
}
|
8775
|
+
},
|
8776
|
+
"Sas": {
|
8543
8777
|
"type": "list",
|
8544
8778
|
"member": {}
|
8545
8779
|
},
|
8546
|
-
"
|
8780
|
+
"Sau": {
|
8547
8781
|
"type": "list",
|
8548
8782
|
"member": {
|
8549
|
-
"shape": "
|
8783
|
+
"shape": "Sav"
|
8550
8784
|
}
|
8551
8785
|
},
|
8552
|
-
"
|
8786
|
+
"Sav": {
|
8553
8787
|
"type": "structure",
|
8554
8788
|
"members": {
|
8555
8789
|
"Name": {},
|
@@ -8560,17 +8794,17 @@
|
|
8560
8794
|
"Description": {},
|
8561
8795
|
"Schedule": {},
|
8562
8796
|
"Actions": {
|
8563
|
-
"shape": "
|
8797
|
+
"shape": "Saz"
|
8564
8798
|
},
|
8565
8799
|
"Predicate": {
|
8566
|
-
"shape": "
|
8800
|
+
"shape": "Sb1"
|
8567
8801
|
},
|
8568
8802
|
"EventBatchingCondition": {
|
8569
|
-
"shape": "
|
8803
|
+
"shape": "Sb8"
|
8570
8804
|
}
|
8571
8805
|
}
|
8572
8806
|
},
|
8573
|
-
"
|
8807
|
+
"Saz": {
|
8574
8808
|
"type": "list",
|
8575
8809
|
"member": {
|
8576
8810
|
"type": "structure",
|
@@ -8590,7 +8824,7 @@
|
|
8590
8824
|
}
|
8591
8825
|
}
|
8592
8826
|
},
|
8593
|
-
"
|
8827
|
+
"Sb1": {
|
8594
8828
|
"type": "structure",
|
8595
8829
|
"members": {
|
8596
8830
|
"Logical": {},
|
@@ -8609,7 +8843,7 @@
|
|
8609
8843
|
}
|
8610
8844
|
}
|
8611
8845
|
},
|
8612
|
-
"
|
8846
|
+
"Sb8": {
|
8613
8847
|
"type": "structure",
|
8614
8848
|
"required": [
|
8615
8849
|
"BatchSize"
|
@@ -8623,17 +8857,17 @@
|
|
8623
8857
|
}
|
8624
8858
|
}
|
8625
8859
|
},
|
8626
|
-
"
|
8860
|
+
"Sbc": {
|
8627
8861
|
"type": "list",
|
8628
8862
|
"member": {}
|
8629
8863
|
},
|
8630
|
-
"
|
8864
|
+
"Sbf": {
|
8631
8865
|
"type": "structure",
|
8632
8866
|
"members": {
|
8633
8867
|
"Name": {},
|
8634
8868
|
"Description": {},
|
8635
8869
|
"DefaultRunProperties": {
|
8636
|
-
"shape": "
|
8870
|
+
"shape": "Sbg"
|
8637
8871
|
},
|
8638
8872
|
"CreatedOn": {
|
8639
8873
|
"type": "timestamp"
|
@@ -8642,10 +8876,10 @@
|
|
8642
8876
|
"type": "timestamp"
|
8643
8877
|
},
|
8644
8878
|
"LastRun": {
|
8645
|
-
"shape": "
|
8879
|
+
"shape": "Sbh"
|
8646
8880
|
},
|
8647
8881
|
"Graph": {
|
8648
|
-
"shape": "
|
8882
|
+
"shape": "Sbk"
|
8649
8883
|
},
|
8650
8884
|
"MaxConcurrentRuns": {
|
8651
8885
|
"type": "integer"
|
@@ -8659,19 +8893,19 @@
|
|
8659
8893
|
}
|
8660
8894
|
}
|
8661
8895
|
},
|
8662
|
-
"
|
8896
|
+
"Sbg": {
|
8663
8897
|
"type": "map",
|
8664
8898
|
"key": {},
|
8665
8899
|
"value": {}
|
8666
8900
|
},
|
8667
|
-
"
|
8901
|
+
"Sbh": {
|
8668
8902
|
"type": "structure",
|
8669
8903
|
"members": {
|
8670
8904
|
"Name": {},
|
8671
8905
|
"WorkflowRunId": {},
|
8672
8906
|
"PreviousRunId": {},
|
8673
8907
|
"WorkflowRunProperties": {
|
8674
|
-
"shape": "
|
8908
|
+
"shape": "Sbg"
|
8675
8909
|
},
|
8676
8910
|
"StartedOn": {
|
8677
8911
|
"type": "timestamp"
|
@@ -8711,7 +8945,7 @@
|
|
8711
8945
|
}
|
8712
8946
|
},
|
8713
8947
|
"Graph": {
|
8714
|
-
"shape": "
|
8948
|
+
"shape": "Sbk"
|
8715
8949
|
},
|
8716
8950
|
"StartingEventBatchCondition": {
|
8717
8951
|
"type": "structure",
|
@@ -8726,7 +8960,7 @@
|
|
8726
8960
|
}
|
8727
8961
|
}
|
8728
8962
|
},
|
8729
|
-
"
|
8963
|
+
"Sbk": {
|
8730
8964
|
"type": "structure",
|
8731
8965
|
"members": {
|
8732
8966
|
"Nodes": {
|
@@ -8741,7 +8975,7 @@
|
|
8741
8975
|
"type": "structure",
|
8742
8976
|
"members": {
|
8743
8977
|
"Trigger": {
|
8744
|
-
"shape": "
|
8978
|
+
"shape": "Sav"
|
8745
8979
|
}
|
8746
8980
|
}
|
8747
8981
|
},
|
@@ -8749,7 +8983,7 @@
|
|
8749
8983
|
"type": "structure",
|
8750
8984
|
"members": {
|
8751
8985
|
"JobRuns": {
|
8752
|
-
"shape": "
|
8986
|
+
"shape": "Sbq"
|
8753
8987
|
}
|
8754
8988
|
}
|
8755
8989
|
},
|
@@ -8791,13 +9025,13 @@
|
|
8791
9025
|
}
|
8792
9026
|
}
|
8793
9027
|
},
|
8794
|
-
"
|
9028
|
+
"Sbq": {
|
8795
9029
|
"type": "list",
|
8796
9030
|
"member": {
|
8797
|
-
"shape": "
|
9031
|
+
"shape": "Sbr"
|
8798
9032
|
}
|
8799
9033
|
},
|
8800
|
-
"
|
9034
|
+
"Sbr": {
|
8801
9035
|
"type": "structure",
|
8802
9036
|
"members": {
|
8803
9037
|
"Id": {},
|
@@ -8861,24 +9095,24 @@
|
|
8861
9095
|
"ExecutionClass": {}
|
8862
9096
|
}
|
8863
9097
|
},
|
8864
|
-
"
|
9098
|
+
"Scd": {
|
8865
9099
|
"type": "list",
|
8866
9100
|
"member": {}
|
8867
9101
|
},
|
8868
|
-
"
|
9102
|
+
"Scy": {
|
8869
9103
|
"type": "map",
|
8870
9104
|
"key": {},
|
8871
9105
|
"value": {}
|
8872
9106
|
},
|
8873
|
-
"
|
9107
|
+
"Sdf": {
|
8874
9108
|
"type": "list",
|
8875
9109
|
"member": {}
|
8876
9110
|
},
|
8877
|
-
"
|
9111
|
+
"Sdg": {
|
8878
9112
|
"type": "list",
|
8879
9113
|
"member": {}
|
8880
9114
|
},
|
8881
|
-
"
|
9115
|
+
"Sdk": {
|
8882
9116
|
"type": "structure",
|
8883
9117
|
"required": [
|
8884
9118
|
"Name",
|
@@ -8890,26 +9124,26 @@
|
|
8890
9124
|
"Description": {},
|
8891
9125
|
"ConnectionType": {},
|
8892
9126
|
"MatchCriteria": {
|
8893
|
-
"shape": "
|
9127
|
+
"shape": "Sdm"
|
8894
9128
|
},
|
8895
9129
|
"ConnectionProperties": {
|
8896
|
-
"shape": "
|
9130
|
+
"shape": "Sdn"
|
8897
9131
|
},
|
8898
9132
|
"PhysicalConnectionRequirements": {
|
8899
|
-
"shape": "
|
9133
|
+
"shape": "Sdp"
|
8900
9134
|
}
|
8901
9135
|
}
|
8902
9136
|
},
|
8903
|
-
"
|
9137
|
+
"Sdm": {
|
8904
9138
|
"type": "list",
|
8905
9139
|
"member": {}
|
8906
9140
|
},
|
8907
|
-
"
|
9141
|
+
"Sdn": {
|
8908
9142
|
"type": "map",
|
8909
9143
|
"key": {},
|
8910
9144
|
"value": {}
|
8911
9145
|
},
|
8912
|
-
"
|
9146
|
+
"Sdp": {
|
8913
9147
|
"type": "structure",
|
8914
9148
|
"members": {
|
8915
9149
|
"SubnetId": {},
|
@@ -8920,7 +9154,7 @@
|
|
8920
9154
|
"AvailabilityZone": {}
|
8921
9155
|
}
|
8922
9156
|
},
|
8923
|
-
"
|
9157
|
+
"Sdy": {
|
8924
9158
|
"type": "structure",
|
8925
9159
|
"required": [
|
8926
9160
|
"TableName",
|
@@ -8932,7 +9166,7 @@
|
|
8932
9166
|
"CatalogId": {}
|
8933
9167
|
}
|
8934
9168
|
},
|
8935
|
-
"
|
9169
|
+
"Se1": {
|
8936
9170
|
"type": "structure",
|
8937
9171
|
"required": [
|
8938
9172
|
"Name"
|
@@ -8945,17 +9179,17 @@
|
|
8945
9179
|
"shape": "Se"
|
8946
9180
|
},
|
8947
9181
|
"CreateTableDefaultPermissions": {
|
8948
|
-
"shape": "
|
9182
|
+
"shape": "Se3"
|
8949
9183
|
},
|
8950
9184
|
"TargetDatabase": {
|
8951
|
-
"shape": "
|
9185
|
+
"shape": "Se9"
|
8952
9186
|
},
|
8953
9187
|
"FederatedDatabase": {
|
8954
|
-
"shape": "
|
9188
|
+
"shape": "Sea"
|
8955
9189
|
}
|
8956
9190
|
}
|
8957
9191
|
},
|
8958
|
-
"
|
9192
|
+
"Se3": {
|
8959
9193
|
"type": "list",
|
8960
9194
|
"member": {
|
8961
9195
|
"type": "structure",
|
@@ -8973,7 +9207,7 @@
|
|
8973
9207
|
}
|
8974
9208
|
}
|
8975
9209
|
},
|
8976
|
-
"
|
9210
|
+
"Se9": {
|
8977
9211
|
"type": "structure",
|
8978
9212
|
"members": {
|
8979
9213
|
"CatalogId": {},
|
@@ -8981,20 +9215,20 @@
|
|
8981
9215
|
"Region": {}
|
8982
9216
|
}
|
8983
9217
|
},
|
8984
|
-
"
|
9218
|
+
"Sea": {
|
8985
9219
|
"type": "structure",
|
8986
9220
|
"members": {
|
8987
9221
|
"Identifier": {},
|
8988
9222
|
"ConnectionName": {}
|
8989
9223
|
}
|
8990
9224
|
},
|
8991
|
-
"
|
9225
|
+
"Sei": {
|
8992
9226
|
"type": "list",
|
8993
9227
|
"member": {
|
8994
9228
|
"shape": "S44"
|
8995
9229
|
}
|
8996
9230
|
},
|
8997
|
-
"
|
9231
|
+
"Sej": {
|
8998
9232
|
"type": "structure",
|
8999
9233
|
"required": [
|
9000
9234
|
"TransformType"
|
@@ -9018,7 +9252,7 @@
|
|
9018
9252
|
}
|
9019
9253
|
}
|
9020
9254
|
},
|
9021
|
-
"
|
9255
|
+
"Sen": {
|
9022
9256
|
"type": "structure",
|
9023
9257
|
"members": {
|
9024
9258
|
"MlUserDataEncryption": {
|
@@ -9034,7 +9268,7 @@
|
|
9034
9268
|
"TaskRunSecurityConfigurationName": {}
|
9035
9269
|
}
|
9036
9270
|
},
|
9037
|
-
"
|
9271
|
+
"Seu": {
|
9038
9272
|
"type": "structure",
|
9039
9273
|
"required": [
|
9040
9274
|
"Keys",
|
@@ -9048,14 +9282,14 @@
|
|
9048
9282
|
"IndexName": {}
|
9049
9283
|
}
|
9050
9284
|
},
|
9051
|
-
"
|
9285
|
+
"Sf0": {
|
9052
9286
|
"type": "structure",
|
9053
9287
|
"members": {
|
9054
9288
|
"RegistryName": {},
|
9055
9289
|
"RegistryArn": {}
|
9056
9290
|
}
|
9057
9291
|
},
|
9058
|
-
"
|
9292
|
+
"Sf7": {
|
9059
9293
|
"type": "list",
|
9060
9294
|
"member": {
|
9061
9295
|
"type": "structure",
|
@@ -9068,7 +9302,7 @@
|
|
9068
9302
|
"Id": {},
|
9069
9303
|
"NodeType": {},
|
9070
9304
|
"Args": {
|
9071
|
-
"shape": "
|
9305
|
+
"shape": "Sfb"
|
9072
9306
|
},
|
9073
9307
|
"LineNumber": {
|
9074
9308
|
"type": "integer"
|
@@ -9076,7 +9310,7 @@
|
|
9076
9310
|
}
|
9077
9311
|
}
|
9078
9312
|
},
|
9079
|
-
"
|
9313
|
+
"Sfb": {
|
9080
9314
|
"type": "list",
|
9081
9315
|
"member": {
|
9082
9316
|
"type": "structure",
|
@@ -9093,7 +9327,7 @@
|
|
9093
9327
|
}
|
9094
9328
|
}
|
9095
9329
|
},
|
9096
|
-
"
|
9330
|
+
"Sff": {
|
9097
9331
|
"type": "list",
|
9098
9332
|
"member": {
|
9099
9333
|
"type": "structure",
|
@@ -9108,7 +9342,7 @@
|
|
9108
9342
|
}
|
9109
9343
|
}
|
9110
9344
|
},
|
9111
|
-
"
|
9345
|
+
"Sfm": {
|
9112
9346
|
"type": "structure",
|
9113
9347
|
"members": {
|
9114
9348
|
"S3Encryption": {
|
@@ -9137,19 +9371,19 @@
|
|
9137
9371
|
}
|
9138
9372
|
}
|
9139
9373
|
},
|
9140
|
-
"
|
9374
|
+
"Sfy": {
|
9141
9375
|
"type": "structure",
|
9142
9376
|
"members": {
|
9143
9377
|
"Name": {},
|
9144
9378
|
"PythonVersion": {}
|
9145
9379
|
}
|
9146
9380
|
},
|
9147
|
-
"
|
9381
|
+
"Sfz": {
|
9148
9382
|
"type": "map",
|
9149
9383
|
"key": {},
|
9150
9384
|
"value": {}
|
9151
9385
|
},
|
9152
|
-
"
|
9386
|
+
"Sg2": {
|
9153
9387
|
"type": "structure",
|
9154
9388
|
"members": {
|
9155
9389
|
"Id": {},
|
@@ -9161,10 +9395,10 @@
|
|
9161
9395
|
"Description": {},
|
9162
9396
|
"Role": {},
|
9163
9397
|
"Command": {
|
9164
|
-
"shape": "
|
9398
|
+
"shape": "Sfy"
|
9165
9399
|
},
|
9166
9400
|
"DefaultArguments": {
|
9167
|
-
"shape": "
|
9401
|
+
"shape": "Sfz"
|
9168
9402
|
},
|
9169
9403
|
"Connections": {
|
9170
9404
|
"shape": "S50"
|
@@ -9195,7 +9429,7 @@
|
|
9195
9429
|
}
|
9196
9430
|
}
|
9197
9431
|
},
|
9198
|
-
"
|
9432
|
+
"Sg7": {
|
9199
9433
|
"type": "structure",
|
9200
9434
|
"required": [
|
9201
9435
|
"Name"
|
@@ -9226,11 +9460,11 @@
|
|
9226
9460
|
"shape": "Se"
|
9227
9461
|
},
|
9228
9462
|
"TargetTable": {
|
9229
|
-
"shape": "
|
9463
|
+
"shape": "Sgb"
|
9230
9464
|
}
|
9231
9465
|
}
|
9232
9466
|
},
|
9233
|
-
"
|
9467
|
+
"Sgb": {
|
9234
9468
|
"type": "structure",
|
9235
9469
|
"members": {
|
9236
9470
|
"CatalogId": {},
|
@@ -9239,7 +9473,7 @@
|
|
9239
9473
|
"Region": {}
|
9240
9474
|
}
|
9241
9475
|
},
|
9242
|
-
"
|
9476
|
+
"Sgm": {
|
9243
9477
|
"type": "structure",
|
9244
9478
|
"members": {
|
9245
9479
|
"FunctionName": {},
|
@@ -9247,11 +9481,11 @@
|
|
9247
9481
|
"OwnerName": {},
|
9248
9482
|
"OwnerType": {},
|
9249
9483
|
"ResourceUris": {
|
9250
|
-
"shape": "
|
9484
|
+
"shape": "Sgo"
|
9251
9485
|
}
|
9252
9486
|
}
|
9253
9487
|
},
|
9254
|
-
"
|
9488
|
+
"Sgo": {
|
9255
9489
|
"type": "list",
|
9256
9490
|
"member": {
|
9257
9491
|
"type": "structure",
|
@@ -9261,7 +9495,7 @@
|
|
9261
9495
|
}
|
9262
9496
|
}
|
9263
9497
|
},
|
9264
|
-
"
|
9498
|
+
"Sil": {
|
9265
9499
|
"type": "structure",
|
9266
9500
|
"members": {
|
9267
9501
|
"BlueprintName": {},
|
@@ -9280,7 +9514,7 @@
|
|
9280
9514
|
"RoleArn": {}
|
9281
9515
|
}
|
9282
9516
|
},
|
9283
|
-
"
|
9517
|
+
"Siy": {
|
9284
9518
|
"type": "structure",
|
9285
9519
|
"members": {
|
9286
9520
|
"GrokClassifier": {
|
@@ -9367,7 +9601,7 @@
|
|
9367
9601
|
"QuoteSymbol": {},
|
9368
9602
|
"ContainsHeader": {},
|
9369
9603
|
"Header": {
|
9370
|
-
"shape": "
|
9604
|
+
"shape": "Sdf"
|
9371
9605
|
},
|
9372
9606
|
"DisableValueTrimming": {
|
9373
9607
|
"type": "boolean"
|
@@ -9379,24 +9613,24 @@
|
|
9379
9613
|
"type": "boolean"
|
9380
9614
|
},
|
9381
9615
|
"CustomDatatypes": {
|
9382
|
-
"shape": "
|
9616
|
+
"shape": "Sdg"
|
9383
9617
|
},
|
9384
9618
|
"Serde": {}
|
9385
9619
|
}
|
9386
9620
|
}
|
9387
9621
|
}
|
9388
9622
|
},
|
9389
|
-
"
|
9623
|
+
"Sj8": {
|
9390
9624
|
"type": "list",
|
9391
9625
|
"member": {}
|
9392
9626
|
},
|
9393
|
-
"
|
9627
|
+
"Sja": {
|
9394
9628
|
"type": "list",
|
9395
9629
|
"member": {
|
9396
|
-
"shape": "
|
9630
|
+
"shape": "Sjb"
|
9397
9631
|
}
|
9398
9632
|
},
|
9399
|
-
"
|
9633
|
+
"Sjb": {
|
9400
9634
|
"type": "structure",
|
9401
9635
|
"required": [
|
9402
9636
|
"ColumnName",
|
@@ -9465,10 +9699,10 @@
|
|
9465
9699
|
],
|
9466
9700
|
"members": {
|
9467
9701
|
"MinimumValue": {
|
9468
|
-
"shape": "
|
9702
|
+
"shape": "Sjj"
|
9469
9703
|
},
|
9470
9704
|
"MaximumValue": {
|
9471
|
-
"shape": "
|
9705
|
+
"shape": "Sjj"
|
9472
9706
|
},
|
9473
9707
|
"NumberOfNulls": {
|
9474
9708
|
"type": "long"
|
@@ -9566,7 +9800,7 @@
|
|
9566
9800
|
}
|
9567
9801
|
}
|
9568
9802
|
},
|
9569
|
-
"
|
9803
|
+
"Sjj": {
|
9570
9804
|
"type": "structure",
|
9571
9805
|
"required": [
|
9572
9806
|
"UnscaledValue",
|
@@ -9581,7 +9815,7 @@
|
|
9581
9815
|
}
|
9582
9816
|
}
|
9583
9817
|
},
|
9584
|
-
"
|
9818
|
+
"Sjs": {
|
9585
9819
|
"type": "list",
|
9586
9820
|
"member": {
|
9587
9821
|
"type": "structure",
|
@@ -9593,20 +9827,20 @@
|
|
9593
9827
|
}
|
9594
9828
|
}
|
9595
9829
|
},
|
9596
|
-
"
|
9830
|
+
"Sjy": {
|
9597
9831
|
"type": "structure",
|
9598
9832
|
"members": {
|
9599
9833
|
"Name": {},
|
9600
9834
|
"Description": {},
|
9601
9835
|
"ConnectionType": {},
|
9602
9836
|
"MatchCriteria": {
|
9603
|
-
"shape": "
|
9837
|
+
"shape": "Sdm"
|
9604
9838
|
},
|
9605
9839
|
"ConnectionProperties": {
|
9606
|
-
"shape": "
|
9840
|
+
"shape": "Sdn"
|
9607
9841
|
},
|
9608
9842
|
"PhysicalConnectionRequirements": {
|
9609
|
-
"shape": "
|
9843
|
+
"shape": "Sdp"
|
9610
9844
|
},
|
9611
9845
|
"CreationTime": {
|
9612
9846
|
"type": "timestamp"
|
@@ -9617,7 +9851,7 @@
|
|
9617
9851
|
"LastUpdatedBy": {}
|
9618
9852
|
}
|
9619
9853
|
},
|
9620
|
-
"
|
9854
|
+
"Skf": {
|
9621
9855
|
"type": "structure",
|
9622
9856
|
"members": {
|
9623
9857
|
"EncryptionAtRest": {
|
@@ -9644,7 +9878,7 @@
|
|
9644
9878
|
}
|
9645
9879
|
}
|
9646
9880
|
},
|
9647
|
-
"
|
9881
|
+
"Skr": {
|
9648
9882
|
"type": "structure",
|
9649
9883
|
"members": {
|
9650
9884
|
"CloudWatchMetricsEnabled": {
|
@@ -9653,18 +9887,18 @@
|
|
9653
9887
|
"ResultsS3Prefix": {}
|
9654
9888
|
}
|
9655
9889
|
},
|
9656
|
-
"
|
9890
|
+
"Sks": {
|
9657
9891
|
"type": "list",
|
9658
9892
|
"member": {}
|
9659
9893
|
},
|
9660
|
-
"
|
9894
|
+
"Sku": {
|
9661
9895
|
"type": "map",
|
9662
9896
|
"key": {},
|
9663
9897
|
"value": {
|
9664
9898
|
"shape": "S43"
|
9665
9899
|
}
|
9666
9900
|
},
|
9667
|
-
"
|
9901
|
+
"Skx": {
|
9668
9902
|
"type": "structure",
|
9669
9903
|
"required": [
|
9670
9904
|
"Name"
|
@@ -9680,18 +9914,18 @@
|
|
9680
9914
|
"type": "timestamp"
|
9681
9915
|
},
|
9682
9916
|
"CreateTableDefaultPermissions": {
|
9683
|
-
"shape": "
|
9917
|
+
"shape": "Se3"
|
9684
9918
|
},
|
9685
9919
|
"TargetDatabase": {
|
9686
|
-
"shape": "
|
9920
|
+
"shape": "Se9"
|
9687
9921
|
},
|
9688
9922
|
"CatalogId": {},
|
9689
9923
|
"FederatedDatabase": {
|
9690
|
-
"shape": "
|
9924
|
+
"shape": "Sea"
|
9691
9925
|
}
|
9692
9926
|
}
|
9693
9927
|
},
|
9694
|
-
"
|
9928
|
+
"Slf": {
|
9695
9929
|
"type": "structure",
|
9696
9930
|
"members": {
|
9697
9931
|
"JobName": {},
|
@@ -9709,7 +9943,7 @@
|
|
9709
9943
|
"JobBookmark": {}
|
9710
9944
|
}
|
9711
9945
|
},
|
9712
|
-
"
|
9946
|
+
"Slp": {
|
9713
9947
|
"type": "structure",
|
9714
9948
|
"members": {
|
9715
9949
|
"TaskType": {},
|
@@ -9744,7 +9978,7 @@
|
|
9744
9978
|
}
|
9745
9979
|
}
|
9746
9980
|
},
|
9747
|
-
"
|
9981
|
+
"Sm8": {
|
9748
9982
|
"type": "structure",
|
9749
9983
|
"required": [
|
9750
9984
|
"TransformType"
|
@@ -9799,7 +10033,7 @@
|
|
9799
10033
|
}
|
9800
10034
|
}
|
9801
10035
|
},
|
9802
|
-
"
|
10036
|
+
"Smf": {
|
9803
10037
|
"type": "list",
|
9804
10038
|
"member": {
|
9805
10039
|
"type": "structure",
|
@@ -9809,7 +10043,7 @@
|
|
9809
10043
|
}
|
9810
10044
|
}
|
9811
10045
|
},
|
9812
|
-
"
|
10046
|
+
"Smi": {
|
9813
10047
|
"type": "structure",
|
9814
10048
|
"members": {
|
9815
10049
|
"Name": {},
|
@@ -9829,11 +10063,11 @@
|
|
9829
10063
|
"type": "timestamp"
|
9830
10064
|
},
|
9831
10065
|
"Schema": {
|
9832
|
-
"shape": "
|
10066
|
+
"shape": "Smf"
|
9833
10067
|
}
|
9834
10068
|
}
|
9835
10069
|
},
|
9836
|
-
"
|
10070
|
+
"Smj": {
|
9837
10071
|
"type": "structure",
|
9838
10072
|
"required": [
|
9839
10073
|
"Column",
|
@@ -9844,7 +10078,7 @@
|
|
9844
10078
|
"SortDirection": {}
|
9845
10079
|
}
|
9846
10080
|
},
|
9847
|
-
"
|
10081
|
+
"Smp": {
|
9848
10082
|
"type": "structure",
|
9849
10083
|
"required": [
|
9850
10084
|
"DatabaseName",
|
@@ -9855,27 +10089,27 @@
|
|
9855
10089
|
"TableName": {}
|
9856
10090
|
}
|
9857
10091
|
},
|
9858
|
-
"
|
10092
|
+
"Smq": {
|
9859
10093
|
"type": "list",
|
9860
10094
|
"member": {
|
9861
|
-
"shape": "
|
10095
|
+
"shape": "Smp"
|
9862
10096
|
}
|
9863
10097
|
},
|
9864
|
-
"
|
10098
|
+
"Smr": {
|
9865
10099
|
"type": "structure",
|
9866
10100
|
"members": {
|
9867
10101
|
"Jdbc": {
|
9868
|
-
"shape": "
|
10102
|
+
"shape": "Sfb"
|
9869
10103
|
},
|
9870
10104
|
"S3": {
|
9871
|
-
"shape": "
|
10105
|
+
"shape": "Sfb"
|
9872
10106
|
},
|
9873
10107
|
"DynamoDB": {
|
9874
|
-
"shape": "
|
10108
|
+
"shape": "Sfb"
|
9875
10109
|
}
|
9876
10110
|
}
|
9877
10111
|
},
|
9878
|
-
"
|
10112
|
+
"Smt": {
|
9879
10113
|
"type": "list",
|
9880
10114
|
"member": {
|
9881
10115
|
"type": "structure",
|
@@ -9889,7 +10123,7 @@
|
|
9889
10123
|
}
|
9890
10124
|
}
|
9891
10125
|
},
|
9892
|
-
"
|
10126
|
+
"Snd": {
|
9893
10127
|
"type": "structure",
|
9894
10128
|
"required": [
|
9895
10129
|
"SegmentNumber",
|
@@ -9904,7 +10138,7 @@
|
|
9904
10138
|
}
|
9905
10139
|
}
|
9906
10140
|
},
|
9907
|
-
"
|
10141
|
+
"So0": {
|
9908
10142
|
"type": "structure",
|
9909
10143
|
"members": {
|
9910
10144
|
"LatestVersion": {
|
@@ -9915,7 +10149,7 @@
|
|
9915
10149
|
}
|
9916
10150
|
}
|
9917
10151
|
},
|
9918
|
-
"
|
10152
|
+
"So9": {
|
9919
10153
|
"type": "structure",
|
9920
10154
|
"members": {
|
9921
10155
|
"Name": {},
|
@@ -9923,11 +10157,11 @@
|
|
9923
10157
|
"type": "timestamp"
|
9924
10158
|
},
|
9925
10159
|
"EncryptionConfiguration": {
|
9926
|
-
"shape": "
|
10160
|
+
"shape": "Sfm"
|
9927
10161
|
}
|
9928
10162
|
}
|
9929
10163
|
},
|
9930
|
-
"
|
10164
|
+
"Soh": {
|
9931
10165
|
"type": "structure",
|
9932
10166
|
"members": {
|
9933
10167
|
"Id": {
|
@@ -9966,7 +10200,7 @@
|
|
9966
10200
|
}
|
9967
10201
|
}
|
9968
10202
|
},
|
9969
|
-
"
|
10203
|
+
"Soo": {
|
9970
10204
|
"type": "structure",
|
9971
10205
|
"required": [
|
9972
10206
|
"Name"
|
@@ -10008,7 +10242,7 @@
|
|
10008
10242
|
"type": "boolean"
|
10009
10243
|
},
|
10010
10244
|
"TargetTable": {
|
10011
|
-
"shape": "
|
10245
|
+
"shape": "Sgb"
|
10012
10246
|
},
|
10013
10247
|
"CatalogId": {},
|
10014
10248
|
"VersionId": {},
|
@@ -10022,22 +10256,22 @@
|
|
10022
10256
|
}
|
10023
10257
|
}
|
10024
10258
|
},
|
10025
|
-
"
|
10259
|
+
"Sou": {
|
10026
10260
|
"type": "structure",
|
10027
10261
|
"members": {
|
10028
10262
|
"Table": {
|
10029
|
-
"shape": "
|
10263
|
+
"shape": "Soo"
|
10030
10264
|
},
|
10031
10265
|
"VersionId": {}
|
10032
10266
|
}
|
10033
10267
|
},
|
10034
|
-
"
|
10268
|
+
"Sp1": {
|
10035
10269
|
"type": "list",
|
10036
10270
|
"member": {
|
10037
|
-
"shape": "
|
10271
|
+
"shape": "Soo"
|
10038
10272
|
}
|
10039
10273
|
},
|
10040
|
-
"
|
10274
|
+
"Sp9": {
|
10041
10275
|
"type": "structure",
|
10042
10276
|
"members": {
|
10043
10277
|
"AdditionalAuditContext": {},
|
@@ -10050,11 +10284,11 @@
|
|
10050
10284
|
}
|
10051
10285
|
}
|
10052
10286
|
},
|
10053
|
-
"
|
10287
|
+
"Spc": {
|
10054
10288
|
"type": "list",
|
10055
10289
|
"member": {}
|
10056
10290
|
},
|
10057
|
-
"
|
10291
|
+
"Spp": {
|
10058
10292
|
"type": "structure",
|
10059
10293
|
"members": {
|
10060
10294
|
"FunctionName": {},
|
@@ -10066,35 +10300,35 @@
|
|
10066
10300
|
"type": "timestamp"
|
10067
10301
|
},
|
10068
10302
|
"ResourceUris": {
|
10069
|
-
"shape": "
|
10303
|
+
"shape": "Sgo"
|
10070
10304
|
},
|
10071
10305
|
"CatalogId": {}
|
10072
10306
|
}
|
10073
10307
|
},
|
10074
|
-
"
|
10308
|
+
"Sse": {
|
10075
10309
|
"type": "structure",
|
10076
10310
|
"members": {
|
10077
10311
|
"MetadataKey": {},
|
10078
10312
|
"MetadataValue": {}
|
10079
10313
|
}
|
10080
10314
|
},
|
10081
|
-
"
|
10315
|
+
"Ssz": {
|
10082
10316
|
"type": "list",
|
10083
10317
|
"member": {}
|
10084
10318
|
},
|
10085
|
-
"
|
10319
|
+
"Suo": {
|
10086
10320
|
"type": "list",
|
10087
10321
|
"member": {
|
10088
|
-
"shape": "
|
10322
|
+
"shape": "Sjb"
|
10089
10323
|
}
|
10090
10324
|
},
|
10091
|
-
"
|
10325
|
+
"Suq": {
|
10092
10326
|
"type": "list",
|
10093
10327
|
"member": {
|
10094
10328
|
"type": "structure",
|
10095
10329
|
"members": {
|
10096
10330
|
"ColumnStatistics": {
|
10097
|
-
"shape": "
|
10331
|
+
"shape": "Sjb"
|
10098
10332
|
},
|
10099
10333
|
"Error": {
|
10100
10334
|
"shape": "S14"
|