aws-sdk-glue 1.149.0

AWS SDK for AWS Glue
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
pub(crate) fn type_erase_result<O, E>(
    result: ::std::result::Result<O, E>,
) -> ::std::result::Result<
    ::aws_smithy_runtime_api::client::interceptors::context::Output,
    ::aws_smithy_runtime_api::client::orchestrator::OrchestratorError<::aws_smithy_runtime_api::client::interceptors::context::Error>,
>
where
    O: ::std::fmt::Debug + ::std::marker::Send + ::std::marker::Sync + 'static,
    E: ::std::error::Error + std::fmt::Debug + ::std::marker::Send + ::std::marker::Sync + 'static,
{
    result
        .map(|output| ::aws_smithy_runtime_api::client::interceptors::context::Output::erase(output))
        .map_err(|error| ::aws_smithy_runtime_api::client::interceptors::context::Error::erase(error))
        .map_err(::std::convert::Into::into)
}

pub fn parse_http_error_metadata(
    _response_status: u16,
    response_headers: &::aws_smithy_runtime_api::http::Headers,
    response_body: &[u8],
) -> ::std::result::Result<::aws_smithy_types::error::metadata::Builder, ::aws_smithy_json::deserialize::error::DeserializeError> {
    crate::json_errors::parse_error_metadata(response_body, response_headers)
}

pub(crate) mod shape_batch_create_partition;

pub(crate) mod shape_batch_delete_connection;

pub(crate) mod shape_batch_delete_partition;

pub(crate) mod shape_batch_delete_table;

pub(crate) mod shape_batch_delete_table_version;

pub(crate) mod shape_batch_get_blueprints;

pub(crate) mod shape_batch_get_crawlers;

pub(crate) mod shape_batch_get_custom_entity_types;

pub(crate) mod shape_batch_get_data_quality_result;

pub(crate) mod shape_batch_get_dev_endpoints;

pub(crate) mod shape_batch_get_jobs;

pub(crate) mod shape_batch_get_partition;

pub(crate) mod shape_batch_get_table_optimizer;

pub(crate) mod shape_batch_get_triggers;

pub(crate) mod shape_batch_get_workflows;

pub(crate) mod shape_batch_put_data_quality_statistic_annotation;

pub(crate) mod shape_batch_stop_job_run;

pub(crate) mod shape_batch_update_partition;

pub(crate) mod shape_cancel_data_quality_rule_recommendation_run;

pub(crate) mod shape_cancel_data_quality_ruleset_evaluation_run;

pub(crate) mod shape_cancel_ml_task_run;

pub(crate) mod shape_cancel_statement;

pub(crate) mod shape_check_schema_version_validity;

pub(crate) mod shape_create_blueprint;

pub(crate) mod shape_create_catalog;

pub(crate) mod shape_create_classifier;

pub(crate) mod shape_create_column_statistics_task_settings;

pub(crate) mod shape_create_connection;

pub(crate) mod shape_create_crawler;

pub(crate) mod shape_create_custom_entity_type;

pub(crate) mod shape_create_data_quality_ruleset;

pub(crate) mod shape_create_database;

pub(crate) mod shape_create_dev_endpoint;

pub(crate) mod shape_create_glue_identity_center_configuration;

pub(crate) mod shape_create_integration;

pub(crate) mod shape_create_integration_resource_property;

pub(crate) mod shape_create_integration_table_properties;

pub(crate) mod shape_create_job;

pub(crate) mod shape_create_ml_transform;

pub(crate) mod shape_create_partition;

pub(crate) mod shape_create_partition_index;

pub(crate) mod shape_create_registry;

pub(crate) mod shape_create_schema;

pub(crate) mod shape_create_script;

pub(crate) mod shape_create_security_configuration;

pub(crate) mod shape_create_session;

pub(crate) mod shape_create_table;

pub(crate) mod shape_create_table_optimizer;

pub(crate) mod shape_create_trigger;

pub(crate) mod shape_create_usage_profile;

pub(crate) mod shape_create_user_defined_function;

pub(crate) mod shape_create_workflow;

pub(crate) mod shape_delete_blueprint;

pub(crate) mod shape_delete_catalog;

pub(crate) mod shape_delete_classifier;

pub(crate) mod shape_delete_column_statistics_for_partition;

pub(crate) mod shape_delete_column_statistics_for_table;

pub(crate) mod shape_delete_column_statistics_task_settings;

pub(crate) mod shape_delete_connection;

pub(crate) mod shape_delete_connection_type;

pub(crate) mod shape_delete_crawler;

pub(crate) mod shape_delete_custom_entity_type;

pub(crate) mod shape_delete_data_quality_ruleset;

pub(crate) mod shape_delete_database;

pub(crate) mod shape_delete_dev_endpoint;

pub(crate) mod shape_delete_glue_identity_center_configuration;

pub(crate) mod shape_delete_integration;

pub(crate) mod shape_delete_integration_resource_property;

pub(crate) mod shape_delete_integration_table_properties;

pub(crate) mod shape_delete_job;

pub(crate) mod shape_delete_ml_transform;

pub(crate) mod shape_delete_partition;

pub(crate) mod shape_delete_partition_index;

pub(crate) mod shape_delete_registry;

pub(crate) mod shape_delete_resource_policy;

pub(crate) mod shape_delete_schema;

pub(crate) mod shape_delete_schema_versions;

pub(crate) mod shape_delete_security_configuration;

pub(crate) mod shape_delete_session;

pub(crate) mod shape_delete_table;

pub(crate) mod shape_delete_table_optimizer;

pub(crate) mod shape_delete_table_version;

pub(crate) mod shape_delete_trigger;

pub(crate) mod shape_delete_usage_profile;

pub(crate) mod shape_delete_user_defined_function;

pub(crate) mod shape_delete_workflow;

pub(crate) mod shape_describe_connection_type;

pub(crate) mod shape_describe_entity;

pub(crate) mod shape_describe_inbound_integrations;

pub(crate) mod shape_describe_integrations;

pub(crate) mod shape_get_blueprint;

pub(crate) mod shape_get_blueprint_run;

pub(crate) mod shape_get_blueprint_runs;

pub(crate) mod shape_get_catalog;

pub(crate) mod shape_get_catalog_import_status;

pub(crate) mod shape_get_catalogs;

pub(crate) mod shape_get_classifier;

pub(crate) mod shape_get_classifiers;

pub(crate) mod shape_get_column_statistics_for_partition;

pub(crate) mod shape_get_column_statistics_for_table;

pub(crate) mod shape_get_column_statistics_task_run;

pub(crate) mod shape_get_column_statistics_task_runs;

pub(crate) mod shape_get_column_statistics_task_settings;

pub(crate) mod shape_get_connection;

pub(crate) mod shape_get_connections;

pub(crate) mod shape_get_crawler;

pub(crate) mod shape_get_crawler_metrics;

pub(crate) mod shape_get_crawlers;

pub(crate) mod shape_get_custom_entity_type;

pub(crate) mod shape_get_dashboard_url;

pub(crate) mod shape_get_data_catalog_encryption_settings;

pub(crate) mod shape_get_data_quality_model;

pub(crate) mod shape_get_data_quality_model_result;

pub(crate) mod shape_get_data_quality_result;

pub(crate) mod shape_get_data_quality_rule_recommendation_run;

pub(crate) mod shape_get_data_quality_ruleset;

pub(crate) mod shape_get_data_quality_ruleset_evaluation_run;

pub(crate) mod shape_get_database;

pub(crate) mod shape_get_databases;

pub(crate) mod shape_get_dataflow_graph;

pub(crate) mod shape_get_dev_endpoint;

pub(crate) mod shape_get_dev_endpoints;

pub(crate) mod shape_get_entity_records;

pub(crate) mod shape_get_glue_identity_center_configuration;

pub(crate) mod shape_get_integration_resource_property;

pub(crate) mod shape_get_integration_table_properties;

pub(crate) mod shape_get_job;

pub(crate) mod shape_get_job_bookmark;

pub(crate) mod shape_get_job_run;

pub(crate) mod shape_get_job_runs;

pub(crate) mod shape_get_jobs;

pub(crate) mod shape_get_mapping;

pub(crate) mod shape_get_materialized_view_refresh_task_run;

pub(crate) mod shape_get_ml_task_run;

pub(crate) mod shape_get_ml_task_runs;

pub(crate) mod shape_get_ml_transform;

pub(crate) mod shape_get_ml_transforms;

pub(crate) mod shape_get_partition;

pub(crate) mod shape_get_partition_indexes;

pub(crate) mod shape_get_partitions;

pub(crate) mod shape_get_plan;

pub(crate) mod shape_get_registry;

pub(crate) mod shape_get_resource_policies;

pub(crate) mod shape_get_resource_policy;

pub(crate) mod shape_get_schema;

pub(crate) mod shape_get_schema_by_definition;

pub(crate) mod shape_get_schema_version;

pub(crate) mod shape_get_schema_versions_diff;

pub(crate) mod shape_get_security_configuration;

pub(crate) mod shape_get_security_configurations;

pub(crate) mod shape_get_session;

pub(crate) mod shape_get_session_endpoint;

pub(crate) mod shape_get_statement;

pub(crate) mod shape_get_table;

pub(crate) mod shape_get_table_optimizer;

pub(crate) mod shape_get_table_version;

pub(crate) mod shape_get_table_versions;

pub(crate) mod shape_get_tables;

pub(crate) mod shape_get_tags;

pub(crate) mod shape_get_trigger;

pub(crate) mod shape_get_triggers;

pub(crate) mod shape_get_unfiltered_partition_metadata;

pub(crate) mod shape_get_unfiltered_partitions_metadata;

pub(crate) mod shape_get_unfiltered_table_metadata;

pub(crate) mod shape_get_usage_profile;

pub(crate) mod shape_get_user_defined_function;

pub(crate) mod shape_get_user_defined_functions;

pub(crate) mod shape_get_workflow;

pub(crate) mod shape_get_workflow_run;

pub(crate) mod shape_get_workflow_run_properties;

pub(crate) mod shape_get_workflow_runs;

pub(crate) mod shape_import_catalog_to_glue;

pub(crate) mod shape_list_blueprints;

pub(crate) mod shape_list_column_statistics_task_runs;

pub(crate) mod shape_list_connection_types;

pub(crate) mod shape_list_crawlers;

pub(crate) mod shape_list_crawls;

pub(crate) mod shape_list_custom_entity_types;

pub(crate) mod shape_list_data_quality_results;

pub(crate) mod shape_list_data_quality_rule_recommendation_runs;

pub(crate) mod shape_list_data_quality_ruleset_evaluation_runs;

pub(crate) mod shape_list_data_quality_rulesets;

pub(crate) mod shape_list_data_quality_statistic_annotations;

pub(crate) mod shape_list_data_quality_statistics;

pub(crate) mod shape_list_dev_endpoints;

pub(crate) mod shape_list_entities;

pub(crate) mod shape_list_integration_resource_properties;

pub(crate) mod shape_list_jobs;

pub(crate) mod shape_list_materialized_view_refresh_task_runs;

pub(crate) mod shape_list_ml_transforms;

pub(crate) mod shape_list_registries;

pub(crate) mod shape_list_schema_versions;

pub(crate) mod shape_list_schemas;

pub(crate) mod shape_list_sessions;

pub(crate) mod shape_list_statements;

pub(crate) mod shape_list_table_optimizer_runs;

pub(crate) mod shape_list_triggers;

pub(crate) mod shape_list_usage_profiles;

pub(crate) mod shape_list_workflows;

pub(crate) mod shape_modify_integration;

pub(crate) mod shape_put_data_catalog_encryption_settings;

pub(crate) mod shape_put_data_quality_profile_annotation;

pub(crate) mod shape_put_resource_policy;

pub(crate) mod shape_put_schema_version_metadata;

pub(crate) mod shape_put_workflow_run_properties;

pub(crate) mod shape_query_schema_version_metadata;

pub(crate) mod shape_register_connection_type;

pub(crate) mod shape_register_schema_version;

pub(crate) mod shape_remove_schema_version_metadata;

pub(crate) mod shape_reset_job_bookmark;

pub(crate) mod shape_resume_workflow_run;

pub(crate) mod shape_run_statement;

pub(crate) mod shape_search_tables;

pub(crate) mod shape_start_blueprint_run;

pub(crate) mod shape_start_column_statistics_task_run;

pub(crate) mod shape_start_column_statistics_task_run_schedule;

pub(crate) mod shape_start_crawler;

pub(crate) mod shape_start_crawler_schedule;

pub(crate) mod shape_start_data_quality_rule_recommendation_run;

pub(crate) mod shape_start_data_quality_ruleset_evaluation_run;

pub(crate) mod shape_start_export_labels_task_run;

pub(crate) mod shape_start_import_labels_task_run;

pub(crate) mod shape_start_job_run;

pub(crate) mod shape_start_materialized_view_refresh_task_run;

pub(crate) mod shape_start_ml_evaluation_task_run;

pub(crate) mod shape_start_ml_labeling_set_generation_task_run;

pub(crate) mod shape_start_trigger;

pub(crate) mod shape_start_workflow_run;

pub(crate) mod shape_stop_column_statistics_task_run;

pub(crate) mod shape_stop_column_statistics_task_run_schedule;

pub(crate) mod shape_stop_crawler;

pub(crate) mod shape_stop_crawler_schedule;

pub(crate) mod shape_stop_materialized_view_refresh_task_run;

pub(crate) mod shape_stop_session;

pub(crate) mod shape_stop_trigger;

pub(crate) mod shape_stop_workflow_run;

pub(crate) mod shape_tag_resource;

pub(crate) mod shape_test_connection;

pub(crate) mod shape_untag_resource;

pub(crate) mod shape_update_blueprint;

pub(crate) mod shape_update_catalog;

pub(crate) mod shape_update_classifier;

pub(crate) mod shape_update_column_statistics_for_partition;

pub(crate) mod shape_update_column_statistics_for_table;

pub(crate) mod shape_update_column_statistics_task_settings;

pub(crate) mod shape_update_connection;

pub(crate) mod shape_update_crawler;

pub(crate) mod shape_update_crawler_schedule;

pub(crate) mod shape_update_data_quality_ruleset;

pub(crate) mod shape_update_database;

pub(crate) mod shape_update_dev_endpoint;

pub(crate) mod shape_update_glue_identity_center_configuration;

pub(crate) mod shape_update_integration_resource_property;

pub(crate) mod shape_update_integration_table_properties;

pub(crate) mod shape_update_job;

pub(crate) mod shape_update_job_from_source_control;

pub(crate) mod shape_update_ml_transform;

pub(crate) mod shape_update_partition;

pub(crate) mod shape_update_registry;

pub(crate) mod shape_update_schema;

pub(crate) mod shape_update_source_control_from_job;

pub(crate) mod shape_update_table;

pub(crate) mod shape_update_table_optimizer;

pub(crate) mod shape_update_trigger;

pub(crate) mod shape_update_usage_profile;

pub(crate) mod shape_update_user_defined_function;

pub(crate) mod shape_update_workflow;

pub(crate) fn or_empty_doc(data: &[u8]) -> &[u8] {
    if data.is_empty() {
        b"{}"
    } else {
        data
    }
}

pub(crate) mod shape_access_denied_exception;

pub(crate) mod shape_already_exists_exception;

pub(crate) mod shape_batch_create_partition_input;

pub(crate) mod shape_batch_delete_connection_input;

pub(crate) mod shape_batch_delete_partition_input;

pub(crate) mod shape_batch_delete_table_input;

pub(crate) mod shape_batch_delete_table_version_input;

pub(crate) mod shape_batch_get_blueprints_input;

pub(crate) mod shape_batch_get_crawlers_input;

pub(crate) mod shape_batch_get_custom_entity_types_input;

pub(crate) mod shape_batch_get_data_quality_result_input;

pub(crate) mod shape_batch_get_dev_endpoints_input;

pub(crate) mod shape_batch_get_jobs_input;

pub(crate) mod shape_batch_get_partition_input;

pub(crate) mod shape_batch_get_table_optimizer_input;

pub(crate) mod shape_batch_get_triggers_input;

pub(crate) mod shape_batch_get_workflows_input;

pub(crate) mod shape_batch_put_data_quality_statistic_annotation_input;

pub(crate) mod shape_batch_stop_job_run_input;

pub(crate) mod shape_batch_update_partition_input;

pub(crate) mod shape_cancel_data_quality_rule_recommendation_run_input;

pub(crate) mod shape_cancel_data_quality_ruleset_evaluation_run_input;

pub(crate) mod shape_cancel_ml_task_run_input;

pub(crate) mod shape_cancel_statement_input;

pub(crate) mod shape_check_schema_version_validity_input;

pub(crate) mod shape_column_statistics_task_not_running_exception;

pub(crate) mod shape_column_statistics_task_running_exception;

pub(crate) mod shape_column_statistics_task_stopping_exception;

pub(crate) mod shape_concurrent_modification_exception;

pub(crate) mod shape_concurrent_runs_exceeded_exception;

pub(crate) mod shape_condition_check_failure_exception;

pub(crate) mod shape_conflict_exception;

pub(crate) mod shape_crawler_not_running_exception;

pub(crate) mod shape_crawler_running_exception;

pub(crate) mod shape_crawler_stopping_exception;

pub(crate) mod shape_create_blueprint_input;

pub(crate) mod shape_create_catalog_input;

pub(crate) mod shape_create_classifier_input;

pub(crate) mod shape_create_column_statistics_task_settings_input;

pub(crate) mod shape_create_connection_input;

pub(crate) mod shape_create_crawler_input;

pub(crate) mod shape_create_custom_entity_type_input;

pub(crate) mod shape_create_data_quality_ruleset_input;

pub(crate) mod shape_create_database_input;

pub(crate) mod shape_create_dev_endpoint_input;

pub(crate) mod shape_create_glue_identity_center_configuration_input;

pub(crate) mod shape_create_integration_input;

pub(crate) mod shape_create_integration_resource_property_input;

pub(crate) mod shape_create_integration_table_properties_input;

pub(crate) mod shape_create_job_input;

pub(crate) mod shape_create_ml_transform_input;

pub(crate) mod shape_create_partition_index_input;

pub(crate) mod shape_create_partition_input;

pub(crate) mod shape_create_registry_input;

pub(crate) mod shape_create_schema_input;

pub(crate) mod shape_create_script_input;

pub(crate) mod shape_create_security_configuration_input;

pub(crate) mod shape_create_session_input;

pub(crate) mod shape_create_table_input;

pub(crate) mod shape_create_table_optimizer_input;

pub(crate) mod shape_create_trigger_input;

pub(crate) mod shape_create_usage_profile_input;

pub(crate) mod shape_create_user_defined_function_input;

pub(crate) mod shape_create_workflow_input;

pub(crate) mod shape_delete_blueprint_input;

pub(crate) mod shape_delete_catalog_input;

pub(crate) mod shape_delete_classifier_input;

pub(crate) mod shape_delete_column_statistics_for_partition_input;

pub(crate) mod shape_delete_column_statistics_for_table_input;

pub(crate) mod shape_delete_column_statistics_task_settings_input;

pub(crate) mod shape_delete_connection_input;

pub(crate) mod shape_delete_connection_type_input;

pub(crate) mod shape_delete_crawler_input;

pub(crate) mod shape_delete_custom_entity_type_input;

pub(crate) mod shape_delete_data_quality_ruleset_input;

pub(crate) mod shape_delete_database_input;

pub(crate) mod shape_delete_dev_endpoint_input;

pub(crate) mod shape_delete_integration_input;

pub(crate) mod shape_delete_integration_resource_property_input;

pub(crate) mod shape_delete_integration_table_properties_input;

pub(crate) mod shape_delete_job_input;

pub(crate) mod shape_delete_ml_transform_input;

pub(crate) mod shape_delete_partition_index_input;

pub(crate) mod shape_delete_partition_input;

pub(crate) mod shape_delete_registry_input;

pub(crate) mod shape_delete_resource_policy_input;

pub(crate) mod shape_delete_schema_input;

pub(crate) mod shape_delete_schema_versions_input;

pub(crate) mod shape_delete_security_configuration_input;

pub(crate) mod shape_delete_session_input;

pub(crate) mod shape_delete_table_input;

pub(crate) mod shape_delete_table_optimizer_input;

pub(crate) mod shape_delete_table_version_input;

pub(crate) mod shape_delete_trigger_input;

pub(crate) mod shape_delete_usage_profile_input;

pub(crate) mod shape_delete_user_defined_function_input;

pub(crate) mod shape_delete_workflow_input;

pub(crate) mod shape_describe_connection_type_input;

pub(crate) mod shape_describe_entity_input;

pub(crate) mod shape_describe_inbound_integrations_input;

pub(crate) mod shape_describe_integrations_input;

pub(crate) mod shape_entity_not_found_exception;

pub(crate) mod shape_federated_resource_already_exists_exception;

pub(crate) mod shape_federation_source_exception;

pub(crate) mod shape_federation_source_retryable_exception;

pub(crate) mod shape_get_blueprint_input;

pub(crate) mod shape_get_blueprint_run_input;

pub(crate) mod shape_get_blueprint_runs_input;

pub(crate) mod shape_get_catalog_import_status_input;

pub(crate) mod shape_get_catalog_input;

pub(crate) mod shape_get_catalogs_input;

pub(crate) mod shape_get_classifier_input;

pub(crate) mod shape_get_classifiers_input;

pub(crate) mod shape_get_column_statistics_for_partition_input;

pub(crate) mod shape_get_column_statistics_for_table_input;

pub(crate) mod shape_get_column_statistics_task_run_input;

pub(crate) mod shape_get_column_statistics_task_runs_input;

pub(crate) mod shape_get_column_statistics_task_settings_input;

pub(crate) mod shape_get_connection_input;

pub(crate) mod shape_get_connections_input;

pub(crate) mod shape_get_crawler_input;

pub(crate) mod shape_get_crawler_metrics_input;

pub(crate) mod shape_get_crawlers_input;

pub(crate) mod shape_get_custom_entity_type_input;

pub(crate) mod shape_get_dashboard_url_input;

pub(crate) mod shape_get_data_catalog_encryption_settings_input;

pub(crate) mod shape_get_data_quality_model_input;

pub(crate) mod shape_get_data_quality_model_result_input;

pub(crate) mod shape_get_data_quality_result_input;

pub(crate) mod shape_get_data_quality_rule_recommendation_run_input;

pub(crate) mod shape_get_data_quality_ruleset_evaluation_run_input;

pub(crate) mod shape_get_data_quality_ruleset_input;

pub(crate) mod shape_get_database_input;

pub(crate) mod shape_get_databases_input;

pub(crate) mod shape_get_dataflow_graph_input;

pub(crate) mod shape_get_dev_endpoint_input;

pub(crate) mod shape_get_dev_endpoints_input;

pub(crate) mod shape_get_entity_records_input;

pub(crate) mod shape_get_integration_resource_property_input;

pub(crate) mod shape_get_integration_table_properties_input;

pub(crate) mod shape_get_job_bookmark_input;

pub(crate) mod shape_get_job_input;

pub(crate) mod shape_get_job_run_input;

pub(crate) mod shape_get_job_runs_input;

pub(crate) mod shape_get_jobs_input;

pub(crate) mod shape_get_mapping_input;

pub(crate) mod shape_get_materialized_view_refresh_task_run_input;

pub(crate) mod shape_get_ml_task_run_input;

pub(crate) mod shape_get_ml_task_runs_input;

pub(crate) mod shape_get_ml_transform_input;

pub(crate) mod shape_get_ml_transforms_input;

pub(crate) mod shape_get_partition_indexes_input;

pub(crate) mod shape_get_partition_input;

pub(crate) mod shape_get_partitions_input;

pub(crate) mod shape_get_plan_input;

pub(crate) mod shape_get_registry_input;

pub(crate) mod shape_get_resource_policies_input;

pub(crate) mod shape_get_resource_policy_input;

pub(crate) mod shape_get_schema_by_definition_input;

pub(crate) mod shape_get_schema_input;

pub(crate) mod shape_get_schema_version_input;

pub(crate) mod shape_get_schema_versions_diff_input;

pub(crate) mod shape_get_security_configuration_input;

pub(crate) mod shape_get_security_configurations_input;

pub(crate) mod shape_get_session_endpoint_input;

pub(crate) mod shape_get_session_input;

pub(crate) mod shape_get_statement_input;

pub(crate) mod shape_get_table_input;

pub(crate) mod shape_get_table_optimizer_input;

pub(crate) mod shape_get_table_version_input;

pub(crate) mod shape_get_table_versions_input;

pub(crate) mod shape_get_tables_input;

pub(crate) mod shape_get_tags_input;

pub(crate) mod shape_get_trigger_input;

pub(crate) mod shape_get_triggers_input;

pub(crate) mod shape_get_unfiltered_partition_metadata_input;

pub(crate) mod shape_get_unfiltered_partitions_metadata_input;

pub(crate) mod shape_get_unfiltered_table_metadata_input;

pub(crate) mod shape_get_usage_profile_input;

pub(crate) mod shape_get_user_defined_function_input;

pub(crate) mod shape_get_user_defined_functions_input;

pub(crate) mod shape_get_workflow_input;

pub(crate) mod shape_get_workflow_run_input;

pub(crate) mod shape_get_workflow_run_properties_input;

pub(crate) mod shape_get_workflow_runs_input;

pub(crate) mod shape_glue_encryption_exception;

pub(crate) mod shape_idempotent_parameter_mismatch_exception;

pub(crate) mod shape_illegal_blueprint_state_exception;

pub(crate) mod shape_illegal_session_state_exception;

pub(crate) mod shape_illegal_workflow_state_exception;

pub(crate) mod shape_import_catalog_to_glue_input;

pub(crate) mod shape_integration_conflict_operation_fault;

pub(crate) mod shape_integration_not_found_fault;

pub(crate) mod shape_integration_quota_exceeded_fault;

pub(crate) mod shape_internal_server_exception;

pub(crate) mod shape_internal_service_exception;

pub(crate) mod shape_invalid_input_exception;

pub(crate) mod shape_invalid_integration_state_fault;

pub(crate) mod shape_invalid_state_exception;

pub(crate) mod shape_kms_key_not_accessible_fault;

pub(crate) mod shape_list_blueprints_input;

pub(crate) mod shape_list_column_statistics_task_runs_input;

pub(crate) mod shape_list_connection_types_input;

pub(crate) mod shape_list_crawlers_input;

pub(crate) mod shape_list_crawls_input;

pub(crate) mod shape_list_custom_entity_types_input;

pub(crate) mod shape_list_data_quality_results_input;

pub(crate) mod shape_list_data_quality_rule_recommendation_runs_input;

pub(crate) mod shape_list_data_quality_ruleset_evaluation_runs_input;

pub(crate) mod shape_list_data_quality_rulesets_input;

pub(crate) mod shape_list_data_quality_statistic_annotations_input;

pub(crate) mod shape_list_data_quality_statistics_input;

pub(crate) mod shape_list_dev_endpoints_input;

pub(crate) mod shape_list_entities_input;

pub(crate) mod shape_list_integration_resource_properties_input;

pub(crate) mod shape_list_jobs_input;

pub(crate) mod shape_list_materialized_view_refresh_task_runs_input;

pub(crate) mod shape_list_ml_transforms_input;

pub(crate) mod shape_list_registries_input;

pub(crate) mod shape_list_schema_versions_input;

pub(crate) mod shape_list_schemas_input;

pub(crate) mod shape_list_sessions_input;

pub(crate) mod shape_list_statements_input;

pub(crate) mod shape_list_table_optimizer_runs_input;

pub(crate) mod shape_list_triggers_input;

pub(crate) mod shape_list_usage_profiles_input;

pub(crate) mod shape_list_workflows_input;

pub(crate) mod shape_materialized_view_refresh_task_not_running_exception;

pub(crate) mod shape_materialized_view_refresh_task_running_exception;

pub(crate) mod shape_materialized_view_refresh_task_stopping_exception;

pub(crate) mod shape_ml_transform_not_ready_exception;

pub(crate) mod shape_modify_integration_input;

pub(crate) mod shape_no_schedule_exception;

pub(crate) mod shape_operation_not_supported_exception;

pub(crate) mod shape_operation_timeout_exception;

pub(crate) mod shape_permission_type_mismatch_exception;

pub(crate) mod shape_put_data_catalog_encryption_settings_input;

pub(crate) mod shape_put_data_quality_profile_annotation_input;

pub(crate) mod shape_put_resource_policy_input;

pub(crate) mod shape_put_schema_version_metadata_input;

pub(crate) mod shape_put_workflow_run_properties_input;

pub(crate) mod shape_query_schema_version_metadata_input;

pub(crate) mod shape_register_connection_type_input;

pub(crate) mod shape_register_schema_version_input;

pub(crate) mod shape_remove_schema_version_metadata_input;

pub(crate) mod shape_reset_job_bookmark_input;

pub(crate) mod shape_resource_not_found_exception;

pub(crate) mod shape_resource_not_ready_exception;

pub(crate) mod shape_resource_number_limit_exceeded_exception;

pub(crate) mod shape_resume_workflow_run_input;

pub(crate) mod shape_run_statement_input;

pub(crate) mod shape_scheduler_not_running_exception;

pub(crate) mod shape_scheduler_running_exception;

pub(crate) mod shape_scheduler_transitioning_exception;

pub(crate) mod shape_search_tables_input;

pub(crate) mod shape_session_busy_exception;

pub(crate) mod shape_start_blueprint_run_input;

pub(crate) mod shape_start_column_statistics_task_run_input;

pub(crate) mod shape_start_column_statistics_task_run_schedule_input;

pub(crate) mod shape_start_crawler_input;

pub(crate) mod shape_start_crawler_schedule_input;

pub(crate) mod shape_start_data_quality_rule_recommendation_run_input;

pub(crate) mod shape_start_data_quality_ruleset_evaluation_run_input;

pub(crate) mod shape_start_export_labels_task_run_input;

pub(crate) mod shape_start_import_labels_task_run_input;

pub(crate) mod shape_start_job_run_input;

pub(crate) mod shape_start_materialized_view_refresh_task_run_input;

pub(crate) mod shape_start_ml_evaluation_task_run_input;

pub(crate) mod shape_start_ml_labeling_set_generation_task_run_input;

pub(crate) mod shape_start_trigger_input;

pub(crate) mod shape_start_workflow_run_input;

pub(crate) mod shape_stop_column_statistics_task_run_input;

pub(crate) mod shape_stop_column_statistics_task_run_schedule_input;

pub(crate) mod shape_stop_crawler_input;

pub(crate) mod shape_stop_crawler_schedule_input;

pub(crate) mod shape_stop_materialized_view_refresh_task_run_input;

pub(crate) mod shape_stop_session_input;

pub(crate) mod shape_stop_trigger_input;

pub(crate) mod shape_stop_workflow_run_input;

pub(crate) mod shape_tag_resource_input;

pub(crate) mod shape_target_resource_not_found;

pub(crate) mod shape_test_connection_input;

pub(crate) mod shape_throttling_exception;

pub(crate) mod shape_untag_resource_input;

pub(crate) mod shape_update_blueprint_input;

pub(crate) mod shape_update_catalog_input;

pub(crate) mod shape_update_classifier_input;

pub(crate) mod shape_update_column_statistics_for_partition_input;

pub(crate) mod shape_update_column_statistics_for_table_input;

pub(crate) mod shape_update_column_statistics_task_settings_input;

pub(crate) mod shape_update_connection_input;

pub(crate) mod shape_update_crawler_input;

pub(crate) mod shape_update_crawler_schedule_input;

pub(crate) mod shape_update_data_quality_ruleset_input;

pub(crate) mod shape_update_database_input;

pub(crate) mod shape_update_dev_endpoint_input;

pub(crate) mod shape_update_glue_identity_center_configuration_input;

pub(crate) mod shape_update_integration_resource_property_input;

pub(crate) mod shape_update_integration_table_properties_input;

pub(crate) mod shape_update_job_from_source_control_input;

pub(crate) mod shape_update_job_input;

pub(crate) mod shape_update_ml_transform_input;

pub(crate) mod shape_update_partition_input;

pub(crate) mod shape_update_registry_input;

pub(crate) mod shape_update_schema_input;

pub(crate) mod shape_update_source_control_from_job_input;

pub(crate) mod shape_update_table_input;

pub(crate) mod shape_update_table_optimizer_input;

pub(crate) mod shape_update_trigger_input;

pub(crate) mod shape_update_usage_profile_input;

pub(crate) mod shape_update_user_defined_function_input;

pub(crate) mod shape_update_workflow_input;

pub(crate) mod shape_validation_exception;

pub(crate) mod shape_version_mismatch_exception;

pub(crate) mod shape_action;

pub(crate) mod shape_annotation_error_list;

pub(crate) mod shape_annotation_list;

pub(crate) mod shape_audit_context;

pub(crate) mod shape_auth_configuration;

pub(crate) mod shape_batch_get_partition_value_list;

pub(crate) mod shape_batch_get_table_optimizer_entry;

pub(crate) mod shape_batch_get_table_optimizer_errors;

pub(crate) mod shape_batch_stop_job_run_error_list;

pub(crate) mod shape_batch_stop_job_run_successful_submission_list;

pub(crate) mod shape_batch_table_optimizers;

pub(crate) mod shape_batch_update_partition_failure_list;

pub(crate) mod shape_batch_update_partition_request_entry;

pub(crate) mod shape_blueprint;

pub(crate) mod shape_blueprint_names;

pub(crate) mod shape_blueprint_run;

pub(crate) mod shape_blueprint_runs;

pub(crate) mod shape_blueprints;

pub(crate) mod shape_capabilities;

pub(crate) mod shape_catalog;

pub(crate) mod shape_catalog_entry;

pub(crate) mod shape_catalog_import_status;

pub(crate) mod shape_catalog_input;

pub(crate) mod shape_catalog_list;

pub(crate) mod shape_classifier;

pub(crate) mod shape_classifier_list;

pub(crate) mod shape_code_gen_configuration_node;

pub(crate) mod shape_code_gen_edge;

pub(crate) mod shape_code_gen_node;

pub(crate) mod shape_column_errors;

pub(crate) mod shape_column_row_filter_list;

pub(crate) mod shape_column_statistics;

pub(crate) mod shape_column_statistics_errors;

pub(crate) mod shape_column_statistics_list;

pub(crate) mod shape_column_statistics_task_run;

pub(crate) mod shape_column_statistics_task_run_id_list;

pub(crate) mod shape_column_statistics_task_runs_list;

pub(crate) mod shape_column_statistics_task_settings;

pub(crate) mod shape_compute_environment_configuration_map;

pub(crate) mod shape_connection;

pub(crate) mod shape_connection_input;

pub(crate) mod shape_connection_list;

pub(crate) mod shape_connection_properties_configuration;

pub(crate) mod shape_connection_type_list;

pub(crate) mod shape_connections_list;

pub(crate) mod shape_connector_authentication_configuration;

pub(crate) mod shape_context_words;

pub(crate) mod shape_crawler;

pub(crate) mod shape_crawler_history_list;

pub(crate) mod shape_crawler_list;

pub(crate) mod shape_crawler_metrics_list;

pub(crate) mod shape_crawler_name_list;

pub(crate) mod shape_crawler_targets;

pub(crate) mod shape_crawls_filter;

pub(crate) mod shape_create_csv_classifier_request;

pub(crate) mod shape_create_grok_classifier_request;

pub(crate) mod shape_create_json_classifier_request;

pub(crate) mod shape_create_xml_classifier_request;

pub(crate) mod shape_custom_entity_type_names;

pub(crate) mod shape_custom_entity_types;

pub(crate) mod shape_dag_edges;

pub(crate) mod shape_dag_nodes;

pub(crate) mod shape_data_catalog_encryption_settings;

pub(crate) mod shape_data_quality_aggregated_metrics;

pub(crate) mod shape_data_quality_analyzer_results;

pub(crate) mod shape_data_quality_evaluation_run_additional_run_options;

pub(crate) mod shape_data_quality_observations;

pub(crate) mod shape_data_quality_result_description_list;

pub(crate) mod shape_data_quality_result_filter_criteria;

pub(crate) mod shape_data_quality_result_id_list;

pub(crate) mod shape_data_quality_result_ids;

pub(crate) mod shape_data_quality_results_list;

pub(crate) mod shape_data_quality_rule_recommendation_run_filter;

pub(crate) mod shape_data_quality_rule_recommendation_run_list;

pub(crate) mod shape_data_quality_rule_results;

pub(crate) mod shape_data_quality_ruleset_evaluation_run_filter;

pub(crate) mod shape_data_quality_ruleset_evaluation_run_list;

pub(crate) mod shape_data_quality_ruleset_filter_criteria;

pub(crate) mod shape_data_quality_ruleset_list;

pub(crate) mod shape_data_quality_target_table;

pub(crate) mod shape_data_source;

pub(crate) mod shape_data_source_map;

pub(crate) mod shape_database;

pub(crate) mod shape_database_input;

pub(crate) mod shape_database_list;

pub(crate) mod shape_datapoint_inclusion_annotation;

pub(crate) mod shape_dev_endpoint;

pub(crate) mod shape_dev_endpoint_custom_libraries;

pub(crate) mod shape_dev_endpoint_list;

pub(crate) mod shape_dev_endpoint_name_list;

pub(crate) mod shape_dev_endpoint_names;

pub(crate) mod shape_encryption_configuration;

pub(crate) mod shape_entity_list;

pub(crate) mod shape_error_by_name;

pub(crate) mod shape_evaluation_metrics;

pub(crate) mod shape_event_batching_condition;

pub(crate) mod shape_execution_property;

pub(crate) mod shape_fields_list;

pub(crate) mod shape_get_connections_filter;

pub(crate) mod shape_get_resource_policies_response_list;

pub(crate) mod shape_get_table_versions_list;

pub(crate) mod shape_glue_table;

pub(crate) mod shape_glue_tables;

pub(crate) mod shape_inbound_integrations_list;

pub(crate) mod shape_integration_additional_encryption_context_map;

pub(crate) mod shape_integration_config;

pub(crate) mod shape_integration_error_list;

pub(crate) mod shape_integration_filter;

pub(crate) mod shape_integration_resource_property_filter;

pub(crate) mod shape_integration_resource_property_list;

pub(crate) mod shape_integration_tags_list;

pub(crate) mod shape_integrations_list;

pub(crate) mod shape_job;

pub(crate) mod shape_job_bookmark_entry;

pub(crate) mod shape_job_command;

pub(crate) mod shape_job_list;

pub(crate) mod shape_job_name_list;

pub(crate) mod shape_job_run;

pub(crate) mod shape_job_run_list;

pub(crate) mod shape_job_update;

pub(crate) mod shape_lake_formation_configuration;

pub(crate) mod shape_lineage_configuration;

pub(crate) mod shape_location;

pub(crate) mod shape_map_value;

pub(crate) mod shape_mapping_entry;

pub(crate) mod shape_mapping_list;

pub(crate) mod shape_materialized_view_refresh_task_run;

pub(crate) mod shape_materialized_view_refresh_task_runs_list;

pub(crate) mod shape_metadata_info_map;

pub(crate) mod shape_metadata_key_value_pair;

pub(crate) mod shape_name_string_list;

pub(crate) mod shape_node_id_list;

pub(crate) mod shape_notification_property;

pub(crate) mod shape_open_table_format_input;

pub(crate) mod shape_orchestration_string_list;

pub(crate) mod shape_partition;

pub(crate) mod shape_partition_errors;

pub(crate) mod shape_partition_index;

pub(crate) mod shape_partition_index_descriptor_list;

pub(crate) mod shape_partition_input;

pub(crate) mod shape_partition_list;

pub(crate) mod shape_partition_value_list;

pub(crate) mod shape_permission_list;

pub(crate) mod shape_predicate;

pub(crate) mod shape_profile_configuration;

pub(crate) mod shape_properties_map;

pub(crate) mod shape_property_predicate;

pub(crate) mod shape_query_session_context;

pub(crate) mod shape_records;

pub(crate) mod shape_recrawl_policy;

pub(crate) mod shape_registry_id;

pub(crate) mod shape_registry_list_definition;

pub(crate) mod shape_rest_configuration;

pub(crate) mod shape_ruleset_names;

pub(crate) mod shape_schema_change_policy;

pub(crate) mod shape_schema_id;

pub(crate) mod shape_schema_list_definition;

pub(crate) mod shape_schema_version_error_list;

pub(crate) mod shape_schema_version_list;

pub(crate) mod shape_schema_version_number;

pub(crate) mod shape_security_configuration;

pub(crate) mod shape_security_configuration_list;

pub(crate) mod shape_segment;

pub(crate) mod shape_session;

pub(crate) mod shape_session_command;

pub(crate) mod shape_session_endpoint;

pub(crate) mod shape_session_id_list;

pub(crate) mod shape_session_list;

pub(crate) mod shape_sort_criterion;

pub(crate) mod shape_source_control_details;

pub(crate) mod shape_source_processing_properties;

pub(crate) mod shape_source_table_config;

pub(crate) mod shape_statement;

pub(crate) mod shape_statement_list;

pub(crate) mod shape_statistic_model_results;

pub(crate) mod shape_statistic_summary_list;

pub(crate) mod shape_string_list;

pub(crate) mod shape_supported_dialect;

pub(crate) mod shape_table;

pub(crate) mod shape_table_errors;

pub(crate) mod shape_table_input;

pub(crate) mod shape_table_list;

pub(crate) mod shape_table_optimizer;

pub(crate) mod shape_table_optimizer_configuration;

pub(crate) mod shape_table_optimizer_runs;

pub(crate) mod shape_table_version;

pub(crate) mod shape_table_version_errors;

pub(crate) mod shape_tag;

pub(crate) mod shape_tags_map;

pub(crate) mod shape_target_processing_properties;

pub(crate) mod shape_target_table_config;

pub(crate) mod shape_task_run_filter_criteria;

pub(crate) mod shape_task_run_list;

pub(crate) mod shape_task_run_properties;

pub(crate) mod shape_task_run_sort_criteria;

pub(crate) mod shape_timestamp_filter;

pub(crate) mod shape_transform_encryption;

pub(crate) mod shape_transform_filter_criteria;

pub(crate) mod shape_transform_id_list;

pub(crate) mod shape_transform_list;

pub(crate) mod shape_transform_parameters;

pub(crate) mod shape_transform_schema;

pub(crate) mod shape_transform_sort_criteria;

pub(crate) mod shape_trigger;

pub(crate) mod shape_trigger_list;

pub(crate) mod shape_trigger_name_list;

pub(crate) mod shape_trigger_update;

pub(crate) mod shape_unfiltered_partition_list;

pub(crate) mod shape_update_csv_classifier_request;

pub(crate) mod shape_update_grok_classifier_request;

pub(crate) mod shape_update_json_classifier_request;

pub(crate) mod shape_update_open_table_format_input;

pub(crate) mod shape_update_xml_classifier_request;

pub(crate) mod shape_usage_profile_definition_list;

pub(crate) mod shape_user_defined_function;

pub(crate) mod shape_user_defined_function_input;

pub(crate) mod shape_user_defined_function_list;

pub(crate) mod shape_workflow;

pub(crate) mod shape_workflow_names;

pub(crate) mod shape_workflow_run;

pub(crate) mod shape_workflow_run_properties;

pub(crate) mod shape_workflow_runs;

pub(crate) mod shape_workflows;

pub(crate) mod shape_action_list;

pub(crate) mod shape_aggregate;

pub(crate) mod shape_amazon_redshift_source;

pub(crate) mod shape_amazon_redshift_target;

pub(crate) mod shape_annotation_error;

pub(crate) mod shape_apply_mapping;

pub(crate) mod shape_athena_connector_source;

pub(crate) mod shape_authentication_configuration;

pub(crate) mod shape_authentication_configuration_input;

pub(crate) mod shape_authentication_types;

pub(crate) mod shape_basic_authentication_properties;

pub(crate) mod shape_basic_catalog_target;

pub(crate) mod shape_batch_get_table_optimizer_error;

pub(crate) mod shape_batch_stop_job_run_error;

pub(crate) mod shape_batch_stop_job_run_successful_submission;

pub(crate) mod shape_batch_table_optimizer;

pub(crate) mod shape_batch_update_partition_failure_entry;

pub(crate) mod shape_blueprint_details;

pub(crate) mod shape_catalog_delta_source;

pub(crate) mod shape_catalog_hudi_source;

pub(crate) mod shape_catalog_iceberg_source;

pub(crate) mod shape_catalog_kafka_source;

pub(crate) mod shape_catalog_kinesis_source;

pub(crate) mod shape_catalog_properties;

pub(crate) mod shape_catalog_properties_output;

pub(crate) mod shape_catalog_source;

pub(crate) mod shape_catalog_target;

pub(crate) mod shape_classifier_name_list;

pub(crate) mod shape_cloud_watch_encryption;

pub(crate) mod shape_code_gen_configuration_nodes;

pub(crate) mod shape_code_gen_node_arg;

pub(crate) mod shape_column;

pub(crate) mod shape_column_error;

pub(crate) mod shape_column_list;

pub(crate) mod shape_column_name_list;

pub(crate) mod shape_column_row_filter;

pub(crate) mod shape_column_statistics_data;

pub(crate) mod shape_column_statistics_error;

pub(crate) mod shape_compaction_configuration;

pub(crate) mod shape_compute_environment_configuration;

pub(crate) mod shape_compute_environment_list;

pub(crate) mod shape_compute_environments;

pub(crate) mod shape_condition;

pub(crate) mod shape_configuration_map;

pub(crate) mod shape_configuration_object;

pub(crate) mod shape_connection_password_encryption;

pub(crate) mod shape_connection_properties;

pub(crate) mod shape_connection_type_brief;

pub(crate) mod shape_connector_data_source;

pub(crate) mod shape_connector_data_target;

pub(crate) mod shape_connector_o_auth2_properties;

pub(crate) mod shape_connector_property;

pub(crate) mod shape_crawler_history;

pub(crate) mod shape_crawler_metrics;

pub(crate) mod shape_csv_classifier;

pub(crate) mod shape_custom_authentication_properties;

pub(crate) mod shape_custom_code;

pub(crate) mod shape_custom_entity_type;

pub(crate) mod shape_data_operations;

pub(crate) mod shape_data_quality_analyzer_result;

pub(crate) mod shape_data_quality_encryption;

pub(crate) mod shape_data_quality_glue_table;

pub(crate) mod shape_data_quality_observation;

pub(crate) mod shape_data_quality_result;

pub(crate) mod shape_data_quality_result_description;

pub(crate) mod shape_data_quality_rule_recommendation_run_description;

pub(crate) mod shape_data_quality_rule_result;

pub(crate) mod shape_data_quality_ruleset_evaluation_run_description;

pub(crate) mod shape_data_quality_ruleset_list_details;

pub(crate) mod shape_database_identifier;

pub(crate) mod shape_delta_target;

pub(crate) mod shape_direct_jdbc_source;

pub(crate) mod shape_direct_kafka_source;

pub(crate) mod shape_direct_kinesis_source;

pub(crate) mod shape_drop_duplicates;

pub(crate) mod shape_drop_fields;

pub(crate) mod shape_drop_null_fields;

pub(crate) mod shape_dynamic_transform;

pub(crate) mod shape_dynamo_db_catalog_source;

pub(crate) mod shape_dynamo_db_target;

pub(crate) mod shape_dynamo_dbelt_connector_source;

pub(crate) mod shape_encryption_at_rest;

pub(crate) mod shape_entity;

pub(crate) mod shape_entity_configuration;

pub(crate) mod shape_entity_configuration_map;

pub(crate) mod shape_error_detail;

pub(crate) mod shape_evaluate_data_quality;

pub(crate) mod shape_evaluate_data_quality_multi_frame;

pub(crate) mod shape_execution_attempt;

pub(crate) mod shape_export_labels_task_run_properties;

pub(crate) mod shape_federated_catalog;

pub(crate) mod shape_federated_database;

pub(crate) mod shape_federated_table;

pub(crate) mod shape_field;

pub(crate) mod shape_fill_missing_values;

pub(crate) mod shape_filter;

pub(crate) mod shape_find_matches_metrics;

pub(crate) mod shape_find_matches_parameters;

pub(crate) mod shape_find_matches_task_run_properties;

pub(crate) mod shape_generic_map;

pub(crate) mod shape_glue_policy;

pub(crate) mod shape_governed_catalog_source;

pub(crate) mod shape_governed_catalog_target;

pub(crate) mod shape_grok_classifier;

pub(crate) mod shape_hudi_target;

pub(crate) mod shape_iceberg_input;

pub(crate) mod shape_iceberg_target;

pub(crate) mod shape_import_labels_task_run_properties;

pub(crate) mod shape_inbound_integration;

pub(crate) mod shape_integration;

pub(crate) mod shape_integration_error;

pub(crate) mod shape_integration_partition;

pub(crate) mod shape_integration_partition_spec_list;

pub(crate) mod shape_integration_resource_property;

pub(crate) mod shape_integration_source_properties_map;

pub(crate) mod shape_jdbc_connector_source;

pub(crate) mod shape_jdbc_connector_target;

pub(crate) mod shape_jdbc_target;

pub(crate) mod shape_job_bookmarks_encryption;

pub(crate) mod shape_join;

pub(crate) mod shape_json_classifier;

pub(crate) mod shape_labeling_set_generation_task_run_properties;

pub(crate) mod shape_last_active_definition;

pub(crate) mod shape_last_crawl_info;

pub(crate) mod shape_match_criteria;

pub(crate) mod shape_merge;

pub(crate) mod shape_metadata_info;

pub(crate) mod shape_microsoft_sql_server_catalog_source;

pub(crate) mod shape_microsoft_sql_server_catalog_target;

pub(crate) mod shape_ml_transform;

pub(crate) mod shape_ml_user_data_encryption;

pub(crate) mod shape_mongo_db_target;

pub(crate) mod shape_my_sql_catalog_source;

pub(crate) mod shape_my_sql_catalog_target;

pub(crate) mod shape_oracle_sql_catalog_source;

pub(crate) mod shape_oracle_sql_catalog_target;

pub(crate) mod shape_orchestration_arguments_map;

pub(crate) mod shape_orphan_file_deletion_configuration;

pub(crate) mod shape_parameters_map;

pub(crate) mod shape_partition_error;

pub(crate) mod shape_partition_index_descriptor;

pub(crate) mod shape_physical_connection_requirements;

pub(crate) mod shape_pii_detection;

pub(crate) mod shape_postgre_sql_catalog_source;

pub(crate) mod shape_postgre_sql_catalog_target;

pub(crate) mod shape_predecessor_list;

pub(crate) mod shape_primary_key_list;

pub(crate) mod shape_principal_permissions;

pub(crate) mod shape_principal_permissions_list;

pub(crate) mod shape_property;

pub(crate) mod shape_property_map;

pub(crate) mod shape_public_keys_list;

pub(crate) mod shape_recipe;

pub(crate) mod shape_redshift_source;

pub(crate) mod shape_redshift_target;

pub(crate) mod shape_registry_list_item;

pub(crate) mod shape_relational_catalog_source;

pub(crate) mod shape_rename_field;

pub(crate) mod shape_resource_uri;

pub(crate) mod shape_resource_uri_list;

pub(crate) mod shape_retention_configuration;

pub(crate) mod shape_route;

pub(crate) mod shape_s3_catalog_delta_source;

pub(crate) mod shape_s3_catalog_hudi_source;

pub(crate) mod shape_s3_catalog_iceberg_source;

pub(crate) mod shape_s3_catalog_source;

pub(crate) mod shape_s3_catalog_target;

pub(crate) mod shape_s3_csv_source;

pub(crate) mod shape_s3_delta_catalog_target;

pub(crate) mod shape_s3_delta_direct_target;

pub(crate) mod shape_s3_delta_source;

pub(crate) mod shape_s3_direct_target;

pub(crate) mod shape_s3_encryption;

pub(crate) mod shape_s3_excel_source;

pub(crate) mod shape_s3_glue_parquet_target;

pub(crate) mod shape_s3_hudi_catalog_target;

pub(crate) mod shape_s3_hudi_direct_target;

pub(crate) mod shape_s3_hudi_source;

pub(crate) mod shape_s3_hyper_direct_target;

pub(crate) mod shape_s3_iceberg_catalog_target;

pub(crate) mod shape_s3_iceberg_direct_target;

pub(crate) mod shape_s3_json_source;

pub(crate) mod shape_s3_parquet_source;

pub(crate) mod shape_s3_target;

pub(crate) mod shape_schedule;

pub(crate) mod shape_schema_column;

pub(crate) mod shape_schema_list_item;

pub(crate) mod shape_schema_version_error_item;

pub(crate) mod shape_schema_version_list_item;

pub(crate) mod shape_select_fields;

pub(crate) mod shape_select_from_collection;

pub(crate) mod shape_snowflake_source;

pub(crate) mod shape_snowflake_target;

pub(crate) mod shape_source_configuration;

pub(crate) mod shape_source_table_fields_list;

pub(crate) mod shape_spark_connector_source;

pub(crate) mod shape_spark_connector_target;

pub(crate) mod shape_spark_sql;

pub(crate) mod shape_spigot;

pub(crate) mod shape_split_fields;

pub(crate) mod shape_starting_event_batch_condition;

pub(crate) mod shape_statement_output;

pub(crate) mod shape_statistic_annotation;

pub(crate) mod shape_statistic_model_result;

pub(crate) mod shape_statistic_summary;

pub(crate) mod shape_storage_descriptor;

pub(crate) mod shape_table_error;

pub(crate) mod shape_table_identifier;

pub(crate) mod shape_table_optimizer_run;

pub(crate) mod shape_table_optimizer_vpc_configuration;

pub(crate) mod shape_table_status;

pub(crate) mod shape_table_version_error;

pub(crate) mod shape_target_redshift_catalog;

pub(crate) mod shape_task_run;

pub(crate) mod shape_unfiltered_partition;

pub(crate) mod shape_union;

pub(crate) mod shape_update_iceberg_input;

pub(crate) mod shape_usage_profile_definition;

pub(crate) mod shape_value_string_list;

pub(crate) mod shape_view_definition;

pub(crate) mod shape_view_definition_input;

pub(crate) mod shape_workflow_graph;

pub(crate) mod shape_workflow_run_statistics;

pub(crate) mod shape_xml_classifier;

pub(crate) mod shape_aggregate_operation;

pub(crate) mod shape_allowed_values;

pub(crate) mod shape_amazon_redshift_node_data;

pub(crate) mod shape_auto_data_quality;

pub(crate) mod shape_backfill_errors;

pub(crate) mod shape_basic_authentication_credentials;

pub(crate) mod shape_binary_column_statistics_data;

pub(crate) mod shape_boolean_column_statistics_data;

pub(crate) mod shape_bounded_partition_value_list;

pub(crate) mod shape_catalog_schema_change_policy;

pub(crate) mod shape_catalog_target_list;

pub(crate) mod shape_client_credentials_properties;

pub(crate) mod shape_code_gen_node_args;

pub(crate) mod shape_column_importance_list;

pub(crate) mod shape_compaction_metrics;

pub(crate) mod shape_condition_list;

pub(crate) mod shape_confusion_matrix;

pub(crate) mod shape_connection_string_list;

pub(crate) mod shape_connection_type_variant_list;

pub(crate) mod shape_connector_authorization_code_properties;

pub(crate) mod shape_connector_property_list;

pub(crate) mod shape_create_iceberg_table_input;

pub(crate) mod shape_csv_header;

pub(crate) mod shape_custom_datatypes;

pub(crate) mod shape_custom_properties;

pub(crate) mod shape_data_lake_access_properties;

pub(crate) mod shape_data_lake_access_properties_output;

pub(crate) mod shape_data_lake_principal;

pub(crate) mod shape_date_column_statistics_data;

pub(crate) mod shape_ddbelt_catalog_additional_options;

pub(crate) mod shape_ddbelt_connection_options;

pub(crate) mod shape_decimal_column_statistics_data;

pub(crate) mod shape_delta_target_list;

pub(crate) mod shape_direct_schema_change_policy;

pub(crate) mod shape_double_column_statistics_data;

pub(crate) mod shape_dq_results_publishing_options;

pub(crate) mod shape_dq_stop_job_on_failure_options;

pub(crate) mod shape_dynamo_db_target_list;

pub(crate) mod shape_edge_list;

pub(crate) mod shape_error_details;

pub(crate) mod shape_evaluated_metrics_map;

pub(crate) mod shape_field_definition;

pub(crate) mod shape_field_filter_operators_list;

pub(crate) mod shape_filter_expression;

pub(crate) mod shape_glue_schema;

pub(crate) mod shape_glue_table_additional_options;

pub(crate) mod shape_group_filters;

pub(crate) mod shape_hudi_target_list;

pub(crate) mod shape_iceberg_compaction_configuration;

pub(crate) mod shape_iceberg_optimization_properties;

pub(crate) mod shape_iceberg_optimization_properties_output;

pub(crate) mod shape_iceberg_orphan_file_deletion_configuration;

pub(crate) mod shape_iceberg_retention_configuration;

pub(crate) mod shape_iceberg_target_list;

pub(crate) mod shape_jdbc_connector_options;

pub(crate) mod shape_jdbc_target_list;

pub(crate) mod shape_join_column;

pub(crate) mod shape_jwt_bearer_properties;

pub(crate) mod shape_kafka_streaming_source_options;

pub(crate) mod shape_key_schema_element_list;

pub(crate) mod shape_kinesis_streaming_source_options;

pub(crate) mod shape_labels;

pub(crate) mod shape_list_of_string;

pub(crate) mod shape_location_string_list;

pub(crate) mod shape_long_column_statistics_data;

pub(crate) mod shape_mapping;

pub(crate) mod shape_metric_based_observation;

pub(crate) mod shape_mongo_db_target_list;

pub(crate) mod shape_node_list;

pub(crate) mod shape_null_check_box_list;

pub(crate) mod shape_null_value_field;

pub(crate) mod shape_o_auth2_properties;

pub(crate) mod shape_o_auth2_properties_input;

pub(crate) mod shape_order;

pub(crate) mod shape_order_list;

pub(crate) mod shape_orphan_file_deletion_metrics;

pub(crate) mod shape_other_metadata_value_list;

pub(crate) mod shape_pagination_configuration;

pub(crate) mod shape_predecessor;

pub(crate) mod shape_property_name_overrides;

pub(crate) mod shape_property_types;

pub(crate) mod shape_recipe_reference;

pub(crate) mod shape_recipe_step;

pub(crate) mod shape_reference_datasets_list;

pub(crate) mod shape_response_configuration;

pub(crate) mod shape_retention_metrics;

pub(crate) mod shape_rule_metrics_map;

pub(crate) mod shape_run_identifier;

pub(crate) mod shape_run_metrics;

pub(crate) mod shape_s3_direct_source_additional_options;

pub(crate) mod shape_s3_encryption_list;

pub(crate) mod shape_s3_source_additional_options;

pub(crate) mod shape_s3_target_list;

pub(crate) mod shape_schema_reference;

pub(crate) mod shape_security_group_id_list;

pub(crate) mod shape_ser_de_info;

pub(crate) mod shape_skewed_info;

pub(crate) mod shape_snowflake_node_data;

pub(crate) mod shape_sql_alias;

pub(crate) mod shape_statement_output_data;

pub(crate) mod shape_statistic_properties_map;

pub(crate) mod shape_status_details;

pub(crate) mod shape_streaming_data_preview_options;

pub(crate) mod shape_string_column_statistics_data;

pub(crate) mod shape_timestamped_inclusion_annotation;

pub(crate) mod shape_transform_config_parameter;

pub(crate) mod shape_update_iceberg_table_input;

pub(crate) mod shape_upsert_redshift_target_options;

pub(crate) mod shape_view_representation_input;

pub(crate) mod shape_view_representation_list;

pub(crate) mod shape_view_sub_object_version_ids_list;

pub(crate) mod shape_view_sub_objects_list;

pub(crate) mod shape_allowed_value;

pub(crate) mod shape_allowed_values_string_list;

pub(crate) mod shape_amazon_redshift_advanced_option;

pub(crate) mod shape_authorization_code_properties;

pub(crate) mod shape_backfill_error;

pub(crate) mod shape_column_importance;

pub(crate) mod shape_column_value_string_list;

pub(crate) mod shape_condition_expression;

pub(crate) mod shape_connection_type_variant;

pub(crate) mod shape_cursor_configuration;

pub(crate) mod shape_data_quality_metric_values;

pub(crate) mod shape_datatype;

pub(crate) mod shape_decimal_number;

pub(crate) mod shape_edge;

pub(crate) mod shape_field_definition_map;

pub(crate) mod shape_filter_value;

pub(crate) mod shape_glue_studio_schema_column;

pub(crate) mod shape_iceberg_compaction_metrics;

pub(crate) mod shape_iceberg_orphan_file_deletion_metrics;

pub(crate) mod shape_iceberg_partition_spec;

pub(crate) mod shape_iceberg_retention_metrics;

pub(crate) mod shape_iceberg_schema;

pub(crate) mod shape_iceberg_sort_order;

pub(crate) mod shape_iceberg_table_update;

pub(crate) mod shape_key_schema_element;

pub(crate) mod shape_location_map;

pub(crate) mod shape_new_rules;

pub(crate) mod shape_node;

pub(crate) mod shape_o_auth2_client_application;

pub(crate) mod shape_o_auth2_credentials;

pub(crate) mod shape_offset_configuration;

pub(crate) mod shape_option;

pub(crate) mod shape_other_metadata_value_list_item;

pub(crate) mod shape_recipe_action;

pub(crate) mod shape_token_url_parameters_map;

pub(crate) mod shape_view_representation;

pub(crate) mod shape_view_validation_list;

pub(crate) mod shape_additional_options;

pub(crate) mod shape_aggregate_operations;

pub(crate) mod shape_backfill_errored_partitions_list;

pub(crate) mod shape_catalog_tables_list;

pub(crate) mod shape_connector_options;

pub(crate) mod shape_crawler_node_details;

pub(crate) mod shape_dq_additional_options;

pub(crate) mod shape_dqdl_aliases;

pub(crate) mod shape_enable_additional_metadata;

pub(crate) mod shape_enclosed_in_string_properties;

pub(crate) mod shape_extracted_parameter;

pub(crate) mod shape_filter_expressions;

pub(crate) mod shape_glue_schemas;

pub(crate) mod shape_glue_studio_path_list;

pub(crate) mod shape_group_filters_list;

pub(crate) mod shape_iceberg_encrypted_key;

pub(crate) mod shape_iceberg_partition_field;

pub(crate) mod shape_iceberg_sort_field;

pub(crate) mod shape_iceberg_struct_field;

pub(crate) mod shape_job_node_details;

pub(crate) mod shape_join_columns;

pub(crate) mod shape_limited_path_list;

pub(crate) mod shape_many_inputs;

pub(crate) mod shape_mappings;

pub(crate) mod shape_null_value_fields;

pub(crate) mod shape_one_input;

pub(crate) mod shape_path_list;

pub(crate) mod shape_recipe_steps;

pub(crate) mod shape_sql_aliases;

pub(crate) mod shape_transform_config_parameter_list;

pub(crate) mod shape_trigger_node_details;

pub(crate) mod shape_two_inputs;

pub(crate) mod shape_view_validation;

pub(crate) mod shape_amazon_redshift_advanced_options;

pub(crate) mod shape_crawl_list;

pub(crate) mod shape_enclosed_in_string_properties_min_one;

pub(crate) mod shape_jdbc_data_type_mapping;

pub(crate) mod shape_limited_string_list;

pub(crate) mod shape_option_list;

pub(crate) mod shape_response_extraction_mapping;

pub(crate) mod shape_condition_expression_list;

pub(crate) mod shape_crawl;

pub(crate) mod shape_filter_values;

pub(crate) mod shape_glue_studio_schema_column_list;

pub(crate) mod shape_parameter_map;