Source file values.ml

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
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
(* generated by: awso-codegen generate-all --botocore-data vendor/botocore/botocore/data -o aws --runtime-dir lib/runtime/awso --cli-dir awso-cli *)
open Awso
open! Import
[@@@warning "-32"]
let service = Service.translate
let apiVersion = "2017-07-01"
let endpointPrefix = "translate"
let serviceFullName = "Amazon Translate"
let signatureVersion = "v4"
let protocol = "json"
let globalEndpoint = endpointPrefix ^ ".amazonaws.com"
let targetPrefix = "AWSShineFrontendService_20170701"
let simple_to_json to_value x =
  Botodata.Json.value_to_json_scalar (to_value x)
let composed_to_json to_value x = Botodata.Json.value_to_json (to_value x)
let to_query to_value x = Client.Query.of_value (to_value x)
let structure_to_value_aux st ~f =
  let filter = function | (k, Some v) -> Some (k, v) | _ -> None in
  let pair k v = (k, v) in
  let defer_value (k, dv) = pair k dv in
  ((List.filter_map st ~f:filter) |> (List.map ~f:defer_value)) |>
    (fun x -> `Structure (f x))
let structure_to_value = structure_to_value_aux ~f:Fn.id
let structure_to_wrapped_value ~wrapper ~response =
  structure_to_value_aux
    ~f:(fun x -> [(wrapper, (`Structure x)); (response, (`Structure []))])
module String_ =
  struct
    type nonrec t = string
    let context_ = "String"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_max i ~max:10000) >>=
             (fun () -> check_pattern i ~pattern:"[\\P{M}\\p{M}]{0,10000}"));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"String" j
    let to_json = simple_to_json to_value
  end
module EncryptionKeyID =
  struct
    type nonrec t = string
    let context_ = "EncryptionKeyID"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:1) >>=
             (fun () ->
                (check_string_max i ~max:400) >>=
                  (fun () ->
                     check_pattern i
                       ~pattern:"(arn:aws((-us-gov)|(-iso)|(-iso-b)|(-cn))?:kms:)?([a-z]{2}-[a-z]+(-[a-z]+)?-\\d:)?(\\d{12}:)?(((key/)?[a-zA-Z0-9-_]+)|(alias/[a-zA-Z0-9:/_-]+))")));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"EncryptionKeyID" j
    let to_json = simple_to_json to_value
  end
module EncryptionKeyType =
  struct
    type nonrec t =
      | KMS 
      | Non_static_id of string 
    let make i = i
    let to_string = function | KMS -> "KMS" | Non_static_id s -> s
    let of_string = function | "KMS" -> KMS | x -> Non_static_id x
    let to_value x = `Enum (to_string x)
    let to_query v = to_query to_value v
    let to_header x = to_string x
    let of_xml xml_arg0 =
      of_string
        (string_of_xml ~kind:"enumeration EncryptionKeyType" xml_arg0)
    let of_json j = of_string (string_of_json ~kind:"EncryptionKeyType" j)
    let to_json = simple_to_json to_value
  end
module Term =
  struct
    type nonrec t =
      {
      sourceText: String_.t option
        [@ocaml.doc
          "The source text of the term being translated by the custom terminology."];
      targetText: String_.t option
        [@ocaml.doc
          "The target text of the term being translated by the custom terminology."]}
    let make ?sourceText =
      fun ?targetText -> fun () -> { sourceText; targetText }
    let to_value x =
      structure_to_value
        [("SourceText", (Option.map x.sourceText ~f:String_.to_value));
        ("TargetText", (Option.map x.targetText ~f:String_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let targetText =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "TargetText") in
      let sourceText =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "SourceText") in
      make ?targetText ?sourceText ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let targetText = field_map json__ "TargetText" String_.of_json in
      let sourceText = field_map json__ "SourceText" String_.of_json in
      make ?targetText ?sourceText ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "The term being translated by the custom terminology."]
module ContentType =
  struct
    type nonrec t = string
    let context_ = "ContentType"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_max i ~max:256) >>=
             (fun () -> check_pattern i ~pattern:"^[-\\w.]+\\/[-\\w.+]+$"));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"ContentType" j
    let to_json = simple_to_json to_value
  end
module S3Uri =
  struct
    type nonrec t = string
    let context_ = "S3Uri"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_max i ~max:1024) >>=
             (fun () ->
                check_pattern i
                  ~pattern:"s3://[a-z0-9][\\.\\-a-z0-9]{1,61}[a-z0-9](/.*)?"));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"S3Uri" j
    let to_json = simple_to_json to_value
  end
module Integer =
  struct
    type nonrec t = int
    let make i = i
    let of_string = Int.of_string
    let to_value x = `Integer x
    let to_query v = to_query to_value v
    let to_header x = Int.to_string x
    let of_xml xml_arg0 =
      Int.of_string (string_of_xml ~kind:"an integer for Integer" xml_arg0)
    let of_json j = Int.of_float (float_of_json ~kind:"an integer" j)
    let to_json = simple_to_json to_value
  end
module EncryptionKey =
  struct
    type nonrec t =
      {
      type_: EncryptionKeyType.t
        [@ocaml.doc
          "The type of encryption key used by Amazon Translate to encrypt this object."];
      id: EncryptionKeyID.t
        [@ocaml.doc
          "The Amazon Resource Name (ARN) of the encryption key being used to encrypt this object."]}
    let context_ = "EncryptionKey"
    let make ~type_ = fun ~id -> fun () -> { type_; id }
    let to_value x =
      structure_to_value
        [("Type", (Some (EncryptionKeyType.to_value x.type_)));
        ("Id", (Some (EncryptionKeyID.to_value x.id)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let id =
        EncryptionKeyID.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "Id") in
      let type_ =
        EncryptionKeyType.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "Type") in
      make ~id ~type_ ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let id = field_map_exn json__ "Id" EncryptionKeyID.of_json in
      let type_ = field_map_exn json__ "Type" EncryptionKeyType.of_json in
      make ~id ~type_ ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "The encryption key used to encrypt this object."]
module ResourceName =
  struct
    type nonrec t = string
    let context_ = "ResourceName"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:1) >>=
             (fun () ->
                (check_string_max i ~max:256) >>=
                  (fun () -> check_pattern i ~pattern:"^([A-Za-z0-9-]_?)+$")));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"ResourceName" j
    let to_json = simple_to_json to_value
  end
module LanguageCodeString =
  struct
    type nonrec t = string
    let context_ = "LanguageCodeString"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_max i ~max:5) >>=
             (fun () -> check_string_min i ~min:2));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"LanguageCodeString" j
    let to_json = simple_to_json to_value
  end
module Brevity =
  struct
    type nonrec t =
      | ON 
      | Non_static_id of string 
    let make i = i
    let to_string = function | ON -> "ON" | Non_static_id s -> s
    let of_string = function | "ON" -> ON | x -> Non_static_id x
    let to_value x = `Enum (to_string x)
    let to_query v = to_query to_value v
    let to_header x = to_string x
    let of_xml xml_arg0 =
      of_string (string_of_xml ~kind:"enumeration Brevity" xml_arg0)
    let of_json j = of_string (string_of_json ~kind:"Brevity" j)
    let to_json = simple_to_json to_value
  end
module Formality =
  struct
    type nonrec t =
      | FORMAL 
      | INFORMAL 
      | Non_static_id of string 
    let make i = i
    let to_string =
      function
      | FORMAL -> "FORMAL"
      | INFORMAL -> "INFORMAL"
      | Non_static_id s -> s
    let of_string =
      function
      | "FORMAL" -> FORMAL
      | "INFORMAL" -> INFORMAL
      | x -> Non_static_id x
    let to_value x = `Enum (to_string x)
    let to_query v = to_query to_value v
    let to_header x = to_string x
    let of_xml xml_arg0 =
      of_string (string_of_xml ~kind:"enumeration Formality" xml_arg0)
    let of_json j = of_string (string_of_json ~kind:"Formality" j)
    let to_json = simple_to_json to_value
  end
module Profanity =
  struct
    type nonrec t =
      | MASK 
      | Non_static_id of string 
    let make i = i
    let to_string = function | MASK -> "MASK" | Non_static_id s -> s
    let of_string = function | "MASK" -> MASK | x -> Non_static_id x
    let to_value x = `Enum (to_string x)
    let to_query v = to_query to_value v
    let to_header x = to_string x
    let of_xml xml_arg0 =
      of_string (string_of_xml ~kind:"enumeration Profanity" xml_arg0)
    let of_json j = of_string (string_of_json ~kind:"Profanity" j)
    let to_json = simple_to_json to_value
  end
module ParallelDataFormat =
  struct
    type nonrec t =
      | TSV 
      | CSV 
      | TMX 
      | Non_static_id of string 
    let make i = i
    let to_string =
      function
      | TSV -> "TSV"
      | CSV -> "CSV"
      | TMX -> "TMX"
      | Non_static_id s -> s
    let of_string =
      function
      | "TSV" -> TSV
      | "CSV" -> CSV
      | "TMX" -> TMX
      | x -> Non_static_id x
    let to_value x = `Enum (to_string x)
    let to_query v = to_query to_value v
    let to_header x = to_string x
    let of_xml xml_arg0 =
      of_string
        (string_of_xml ~kind:"enumeration ParallelDataFormat" xml_arg0)
    let of_json j = of_string (string_of_json ~kind:"ParallelDataFormat" j)
    let to_json = simple_to_json to_value
  end
module TermList =
  struct
    type nonrec t = Term.t list
    let make i = i
    let of_string _ =
      failwithf "of_string is not implemented for List_shape objects" ()
      [@@warning "-32"]
    let to_value xs =
      (xs |> (List.map ~f:Term.to_value)) |> (fun x -> `List x)
    let to_query v = to_query to_value v
    let to_header _ =
      failwithf "to_header is not implemented for List_shape objects" ()
    let of_xml x =
      make
        (List.map
           ((Xml.all_children x) |>
              (List.filter
                 ~f:(function
                     | `Data s ->
                         (match Stdlib.String.trim s with
                          | "" -> false
                          | _ -> true)
                     | _ -> true))) ~f:Term.of_xml)
    let of_json j = list_of_json ~kind:"TermList" ~of_json:Term.of_json j
    let to_json v = composed_to_json to_value v
  end
module TagKey =
  struct
    type nonrec t = string
    let context_ = "TagKey"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_max i ~max:128) >>=
             (fun () -> check_string_min i ~min:1));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"TagKey" j
    let to_json = simple_to_json to_value
  end
module TagValue =
  struct
    type nonrec t = string
    let context_ = "TagValue"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_max i ~max:256) >>=
             (fun () -> check_string_min i ~min:0));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"TagValue" j
    let to_json = simple_to_json to_value
  end
module IamRoleArn =
  struct
    type nonrec t = string
    let context_ = "IamRoleArn"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:20) >>=
             (fun () ->
                (check_string_max i ~max:2048) >>=
                  (fun () ->
                     check_pattern i
                       ~pattern:"arn:aws(-[^:]+)?:iam::[0-9]{12}:role/.+")));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"IamRoleArn" j
    let to_json = simple_to_json to_value
  end
module InputDataConfig =
  struct
    type nonrec t =
      {
      s3Uri: S3Uri.t
        [@ocaml.doc
          "The URI of the AWS S3 folder that contains the input files. Amazon Translate translates all the files in the folder and all its sub-folders. The folder must be in the same Region as the API endpoint you are calling."];
      contentType: ContentType.t
        [@ocaml.doc
          "Describes the format of the data that you submit to Amazon Translate as input. You can specify one of the following multipurpose internet mail extension (MIME) types: text/html: The input data consists of one or more HTML files. Amazon Translate translates only the text that resides in the html element in each file. text/plain: The input data consists of one or more unformatted text files. Amazon Translate translates every character in this type of input. application/vnd.openxmlformats-officedocument.wordprocessingml.document: The input data consists of one or more Word documents (.docx). application/vnd.openxmlformats-officedocument.presentationml.presentation: The input data consists of one or more PowerPoint Presentation files (.pptx). application/vnd.openxmlformats-officedocument.spreadsheetml.sheet: The input data consists of one or more Excel Workbook files (.xlsx). application/x-xliff+xml: The input data consists of one or more XML Localization Interchange File Format (XLIFF) files (.xlf). Amazon Translate supports only XLIFF version 1.2. If you structure your input data as HTML, ensure that you set this parameter to text/html. By doing so, you cut costs by limiting the translation to the contents of the html element in each file. Otherwise, if you set this parameter to text/plain, your costs will cover the translation of every character."]}
    let context_ = "InputDataConfig"
    let make ~s3Uri = fun ~contentType -> fun () -> { s3Uri; contentType }
    let to_value x =
      structure_to_value
        [("S3Uri", (Some (S3Uri.to_value x.s3Uri)));
        ("ContentType", (Some (ContentType.to_value x.contentType)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let contentType =
        ContentType.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "ContentType") in
      let s3Uri =
        S3Uri.of_xml (Xml.child_exn ~context:context_ xml_arg0 "S3Uri") in
      make ~contentType ~s3Uri ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let contentType =
        field_map_exn json__ "ContentType" ContentType.of_json in
      let s3Uri = field_map_exn json__ "S3Uri" S3Uri.of_json in
      make ~contentType ~s3Uri ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The input configuration properties for requesting a batch translation job."]
module JobDetails =
  struct
    type nonrec t =
      {
      translatedDocumentsCount: Integer.t option
        [@ocaml.doc
          "The number of documents successfully processed during a translation job."];
      documentsWithErrorsCount: Integer.t option
        [@ocaml.doc
          "The number of documents that could not be processed during a translation job."];
      inputDocumentsCount: Integer.t option
        [@ocaml.doc
          "The number of documents used as input in a translation job."]}
    let make ?translatedDocumentsCount =
      fun ?documentsWithErrorsCount ->
        fun ?inputDocumentsCount ->
          fun () ->
            {
              translatedDocumentsCount;
              documentsWithErrorsCount;
              inputDocumentsCount
            }
    let to_value x =
      structure_to_value
        [("TranslatedDocumentsCount",
           (Option.map x.translatedDocumentsCount ~f:Integer.to_value));
        ("DocumentsWithErrorsCount",
          (Option.map x.documentsWithErrorsCount ~f:Integer.to_value));
        ("InputDocumentsCount",
          (Option.map x.inputDocumentsCount ~f:Integer.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let inputDocumentsCount =
        (Option.map ~f:Integer.of_xml)
          (Xml.child xml_arg0 "InputDocumentsCount") in
      let documentsWithErrorsCount =
        (Option.map ~f:Integer.of_xml)
          (Xml.child xml_arg0 "DocumentsWithErrorsCount") in
      let translatedDocumentsCount =
        (Option.map ~f:Integer.of_xml)
          (Xml.child xml_arg0 "TranslatedDocumentsCount") in
      make ?inputDocumentsCount ?documentsWithErrorsCount
        ?translatedDocumentsCount ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let inputDocumentsCount =
        field_map json__ "InputDocumentsCount" Integer.of_json in
      let documentsWithErrorsCount =
        field_map json__ "DocumentsWithErrorsCount" Integer.of_json in
      let translatedDocumentsCount =
        field_map json__ "TranslatedDocumentsCount" Integer.of_json in
      make ?inputDocumentsCount ?documentsWithErrorsCount
        ?translatedDocumentsCount ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The number of documents successfully and unsuccessfully processed during a translation job."]
module JobId =
  struct
    type nonrec t = string
    let context_ = "JobId"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:1) >>=
             (fun () ->
                (check_string_max i ~max:32) >>=
                  (fun () ->
                     check_pattern i
                       ~pattern:"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-%@]*)$")));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"JobId" j
    let to_json = simple_to_json to_value
  end
module JobName =
  struct
    type nonrec t = string
    let context_ = "JobName"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:1) >>=
             (fun () ->
                (check_string_max i ~max:256) >>=
                  (fun () ->
                     check_pattern i
                       ~pattern:"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-%@]*)$")));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"JobName" j
    let to_json = simple_to_json to_value
  end
module JobStatus =
  struct
    type nonrec t =
      | SUBMITTED 
      | IN_PROGRESS 
      | COMPLETED 
      | COMPLETED_WITH_ERROR 
      | FAILED 
      | STOP_REQUESTED 
      | STOPPED 
      | Non_static_id of string 
    let make i = i
    let to_string =
      function
      | SUBMITTED -> "SUBMITTED"
      | IN_PROGRESS -> "IN_PROGRESS"
      | COMPLETED -> "COMPLETED"
      | COMPLETED_WITH_ERROR -> "COMPLETED_WITH_ERROR"
      | FAILED -> "FAILED"
      | STOP_REQUESTED -> "STOP_REQUESTED"
      | STOPPED -> "STOPPED"
      | Non_static_id s -> s
    let of_string =
      function
      | "SUBMITTED" -> SUBMITTED
      | "IN_PROGRESS" -> IN_PROGRESS
      | "COMPLETED" -> COMPLETED
      | "COMPLETED_WITH_ERROR" -> COMPLETED_WITH_ERROR
      | "FAILED" -> FAILED
      | "STOP_REQUESTED" -> STOP_REQUESTED
      | "STOPPED" -> STOPPED
      | x -> Non_static_id x
    let to_value x = `Enum (to_string x)
    let to_query v = to_query to_value v
    let to_header x = to_string x
    let of_xml xml_arg0 =
      of_string (string_of_xml ~kind:"enumeration JobStatus" xml_arg0)
    let of_json j = of_string (string_of_json ~kind:"JobStatus" j)
    let to_json = simple_to_json to_value
  end
module OutputDataConfig =
  struct
    type nonrec t =
      {
      s3Uri: S3Uri.t
        [@ocaml.doc
          "The URI of the S3 folder that contains a translation job's output file. The folder must be in the same Region as the API endpoint that you are calling."];
      encryptionKey: EncryptionKey.t option }
    let context_ = "OutputDataConfig"
    let make ?encryptionKey =
      fun ~s3Uri -> fun () -> { encryptionKey; s3Uri }
    let to_value x =
      structure_to_value
        [("S3Uri", (Some (S3Uri.to_value x.s3Uri)));
        ("EncryptionKey",
          (Option.map x.encryptionKey ~f:EncryptionKey.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let encryptionKey =
        (Option.map ~f:EncryptionKey.of_xml)
          (Xml.child xml_arg0 "EncryptionKey") in
      let s3Uri =
        S3Uri.of_xml (Xml.child_exn ~context:context_ xml_arg0 "S3Uri") in
      make ?encryptionKey ~s3Uri ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let encryptionKey =
        field_map json__ "EncryptionKey" EncryptionKey.of_json in
      let s3Uri = field_map_exn json__ "S3Uri" S3Uri.of_json in
      make ?encryptionKey ~s3Uri ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The output configuration properties for a batch translation job."]
module ResourceNameList =
  struct
    type nonrec t = ResourceName.t list
    let make i = i
    let of_string _ =
      failwithf "of_string is not implemented for List_shape objects" ()
      [@@warning "-32"]
    let to_value xs =
      (xs |> (List.map ~f:ResourceName.to_value)) |> (fun x -> `List x)
    let to_query v = to_query to_value v
    let to_header _ =
      failwithf "to_header is not implemented for List_shape objects" ()
    let of_xml x =
      make
        (List.map
           ((Xml.all_children x) |>
              (List.filter
                 ~f:(function
                     | `Data s ->
                         (match Stdlib.String.trim s with
                          | "" -> false
                          | _ -> true)
                     | _ -> true))) ~f:ResourceName.of_xml)
    let of_json j =
      list_of_json ~kind:"ResourceNameList" ~of_json:ResourceName.of_json j
    let to_json v = composed_to_json to_value v
  end
module TargetLanguageCodeStringList =
  struct
    type nonrec t = LanguageCodeString.t list
    let make i =
      let open Result in ok_or_failwith (check_list_min i ~min:1); i
    let of_string _ =
      failwithf "of_string is not implemented for List_shape objects" ()
      [@@warning "-32"]
    let to_value xs =
      (xs |> (List.map ~f:LanguageCodeString.to_value)) |> (fun x -> `List x)
    let to_query v = to_query to_value v
    let to_header _ =
      failwithf "to_header is not implemented for List_shape objects" ()
    let of_xml x =
      make
        (List.map
           ((Xml.all_children x) |>
              (List.filter
                 ~f:(function
                     | `Data s ->
                         (match Stdlib.String.trim s with
                          | "" -> false
                          | _ -> true)
                     | _ -> true))) ~f:LanguageCodeString.of_xml)
    let of_json j =
      list_of_json ~kind:"TargetLanguageCodeStringList"
        ~of_json:LanguageCodeString.of_json j
    let to_json v = composed_to_json to_value v
  end
module Timestamp =
  struct
    type nonrec t = string
    let make i = i
    let of_string x = x
    let to_value x = `Timestamp x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = string_of_xml ~kind:"a timestamp"
    let of_json = timestamp_of_json
    let to_json = simple_to_json to_value
  end
module TranslationSettings =
  struct
    type nonrec t =
      {
      formality: Formality.t option
        [@ocaml.doc
          "You can specify the desired level of formality for translations to supported target languages. The formality setting controls the level of formal language usage (also known as register) in the translation output. You can set the value to informal or formal. If you don't specify a value for formality, or if the target language doesn't support formality, the translation will ignore the formality setting. If you specify multiple target languages for the job, translate ignores the formality setting for any unsupported target language. For a list of target languages that support formality, see Supported languages in the Amazon Translate Developer Guide."];
      profanity: Profanity.t option
        [@ocaml.doc
          "You can enable the profanity setting if you want to mask profane words and phrases in your translation output. To mask profane words and phrases, Amazon Translate replaces them with the grawlix string \226\128\156?$#\\@$\226\128\156. This 5-character sequence is used for each profane word or phrase, regardless of the length or number of words. Amazon Translate doesn't detect profanity in all of its supported languages. For languages that don't support profanity detection, see Unsupported languages in the Amazon Translate Developer Guide. If you specify multiple target languages for the job, all the target languages must support profanity masking. If any of the target languages don't support profanity masking, the translation job won't mask profanity for any target language."];
      brevity: Brevity.t option
        [@ocaml.doc
          "When you turn on brevity, Amazon Translate reduces the length of the translation output for most translations (when compared with the same translation with brevity turned off). By default, brevity is turned off. If you turn on brevity for a translation request with an unsupported language pair, the translation proceeds with the brevity setting turned off. For the language pairs that brevity supports, see Using brevity in the Amazon Translate Developer Guide."]}
    let make ?formality =
      fun ?profanity ->
        fun ?brevity -> fun () -> { formality; profanity; brevity }
    let to_value x =
      structure_to_value
        [("Formality", (Option.map x.formality ~f:Formality.to_value));
        ("Profanity", (Option.map x.profanity ~f:Profanity.to_value));
        ("Brevity", (Option.map x.brevity ~f:Brevity.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let brevity =
        (Option.map ~f:Brevity.of_xml) (Xml.child xml_arg0 "Brevity") in
      let profanity =
        (Option.map ~f:Profanity.of_xml) (Xml.child xml_arg0 "Profanity") in
      let formality =
        (Option.map ~f:Formality.of_xml) (Xml.child xml_arg0 "Formality") in
      make ?brevity ?profanity ?formality ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let brevity = field_map json__ "Brevity" Brevity.of_json in
      let profanity = field_map json__ "Profanity" Profanity.of_json in
      let formality = field_map json__ "Formality" Formality.of_json in
      make ?brevity ?profanity ?formality ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Settings to configure your translation output. You can configure the following options: Brevity: reduces the length of the translation output for most translations. Available for TranslateText only. Formality: sets the formality level of the translation output. Profanity: masks profane words and phrases in the translation output."]
module UnboundedLengthString =
  struct
    type nonrec t = string
    let context_ = "UnboundedLengthString"
    let make i = i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"UnboundedLengthString" j
    let to_json = simple_to_json to_value
  end
module Description =
  struct
    type nonrec t = string
    let context_ = "Description"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_max i ~max:256) >>=
             (fun () -> check_pattern i ~pattern:"[\\P{M}\\p{M}]{0,256}"));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"Description" j
    let to_json = simple_to_json to_value
  end
module Directionality =
  struct
    type nonrec t =
      | UNI 
      | MULTI 
      | Non_static_id of string 
    let make i = i
    let to_string =
      function | UNI -> "UNI" | MULTI -> "MULTI" | Non_static_id s -> s
    let of_string =
      function | "UNI" -> UNI | "MULTI" -> MULTI | x -> Non_static_id x
    let to_value x = `Enum (to_string x)
    let to_query v = to_query to_value v
    let to_header x = to_string x
    let of_xml xml_arg0 =
      of_string (string_of_xml ~kind:"enumeration Directionality" xml_arg0)
    let of_json j = of_string (string_of_json ~kind:"Directionality" j)
    let to_json = simple_to_json to_value
  end
module LanguageCodeStringList =
  struct
    type nonrec t = LanguageCodeString.t list
    let make i = i
    let of_string _ =
      failwithf "of_string is not implemented for List_shape objects" ()
      [@@warning "-32"]
    let to_value xs =
      (xs |> (List.map ~f:LanguageCodeString.to_value)) |> (fun x -> `List x)
    let to_query v = to_query to_value v
    let to_header _ =
      failwithf "to_header is not implemented for List_shape objects" ()
    let of_xml x =
      make
        (List.map
           ((Xml.all_children x) |>
              (List.filter
                 ~f:(function
                     | `Data s ->
                         (match Stdlib.String.trim s with
                          | "" -> false
                          | _ -> true)
                     | _ -> true))) ~f:LanguageCodeString.of_xml)
    let of_json j =
      list_of_json ~kind:"LanguageCodeStringList"
        ~of_json:LanguageCodeString.of_json j
    let to_json v = composed_to_json to_value v
  end
module TerminologyArn =
  struct
    type nonrec t = string
    let context_ = "TerminologyArn"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_max i ~max:512) >>=
             (fun () -> check_string_min i ~min:1));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"TerminologyArn" j
    let to_json = simple_to_json to_value
  end
module TerminologyDataFormat =
  struct
    type nonrec t =
      | CSV 
      | TMX 
      | TSV 
      | Non_static_id of string 
    let make i = i
    let to_string =
      function
      | CSV -> "CSV"
      | TMX -> "TMX"
      | TSV -> "TSV"
      | Non_static_id s -> s
    let of_string =
      function
      | "CSV" -> CSV
      | "TMX" -> TMX
      | "TSV" -> TSV
      | x -> Non_static_id x
    let to_value x = `Enum (to_string x)
    let to_query v = to_query to_value v
    let to_header x = to_string x
    let of_xml xml_arg0 =
      of_string
        (string_of_xml ~kind:"enumeration TerminologyDataFormat" xml_arg0)
    let of_json j =
      of_string (string_of_json ~kind:"TerminologyDataFormat" j)
    let to_json = simple_to_json to_value
  end
module Long =
  struct
    type nonrec t = Int64.t
    let make i = i
    let of_string = Int64.of_string
    let to_value x = `Long x
    let to_query v = to_query to_value v
    let to_header x = Int64.to_string x
    let of_xml xml_arg0 =
      Int64.of_string (string_of_xml ~kind:"a long" xml_arg0)
    let of_json j = Int64.of_float (float_of_json ~kind:"a long" j)
    let to_json = simple_to_json to_value
  end
module ParallelDataArn =
  struct
    type nonrec t = string
    let context_ = "ParallelDataArn"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_max i ~max:512) >>=
             (fun () -> check_string_min i ~min:1));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"ParallelDataArn" j
    let to_json = simple_to_json to_value
  end
module ParallelDataConfig =
  struct
    type nonrec t =
      {
      s3Uri: S3Uri.t option
        [@ocaml.doc
          "The URI of the Amazon S3 folder that contains the parallel data input file. The folder must be in the same Region as the API endpoint you are calling."];
      format: ParallelDataFormat.t option
        [@ocaml.doc "The format of the parallel data input file."]}
    let make ?s3Uri = fun ?format -> fun () -> { s3Uri; format }
    let to_value x =
      structure_to_value
        [("S3Uri", (Option.map x.s3Uri ~f:S3Uri.to_value));
        ("Format", (Option.map x.format ~f:ParallelDataFormat.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let format =
        (Option.map ~f:ParallelDataFormat.of_xml)
          (Xml.child xml_arg0 "Format") in
      let s3Uri = (Option.map ~f:S3Uri.of_xml) (Xml.child xml_arg0 "S3Uri") in
      make ?format ?s3Uri ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let format = field_map json__ "Format" ParallelDataFormat.of_json in
      let s3Uri = field_map json__ "S3Uri" S3Uri.of_json in
      make ?format ?s3Uri ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Specifies the format and S3 location of the parallel data input file."]
module ParallelDataStatus =
  struct
    type nonrec t =
      | CREATING 
      | UPDATING 
      | ACTIVE 
      | DELETING 
      | FAILED 
      | Non_static_id of string 
    let make i = i
    let to_string =
      function
      | CREATING -> "CREATING"
      | UPDATING -> "UPDATING"
      | ACTIVE -> "ACTIVE"
      | DELETING -> "DELETING"
      | FAILED -> "FAILED"
      | Non_static_id s -> s
    let of_string =
      function
      | "CREATING" -> CREATING
      | "UPDATING" -> UPDATING
      | "ACTIVE" -> ACTIVE
      | "DELETING" -> DELETING
      | "FAILED" -> FAILED
      | x -> Non_static_id x
    let to_value x = `Enum (to_string x)
    let to_query v = to_query to_value v
    let to_header x = to_string x
    let of_xml xml_arg0 =
      of_string
        (string_of_xml ~kind:"enumeration ParallelDataStatus" xml_arg0)
    let of_json j = of_string (string_of_json ~kind:"ParallelDataStatus" j)
    let to_json = simple_to_json to_value
  end
module LocalizedNameString =
  struct
    type nonrec t = string
    let context_ = "LocalizedNameString"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_max i ~max:256) >>=
             (fun () -> check_string_min i ~min:1));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"LocalizedNameString" j
    let to_json = simple_to_json to_value
  end
module AppliedTerminology =
  struct
    type nonrec t =
      {
      name: ResourceName.t option
        [@ocaml.doc
          "The name of the custom terminology applied to the input text by Amazon Translate for the translated text response."];
      terms: TermList.t option
        [@ocaml.doc
          "The specific terms of the custom terminology applied to the input text by Amazon Translate for the translated text response. A maximum of 250 terms will be returned, and the specific terms applied will be the first 250 terms in the source text."]}
    let make ?name = fun ?terms -> fun () -> { name; terms }
    let to_value x =
      structure_to_value
        [("Name", (Option.map x.name ~f:ResourceName.to_value));
        ("Terms", (Option.map x.terms ~f:TermList.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let terms =
        (Option.map ~f:TermList.of_xml) (Xml.child xml_arg0 "Terms") in
      let name =
        (Option.map ~f:ResourceName.of_xml) (Xml.child xml_arg0 "Name") in
      make ?terms ?name ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let terms = field_map json__ "Terms" TermList.of_json in
      let name = field_map json__ "Name" ResourceName.of_json in
      make ?terms ?name ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The custom terminology applied to the input text by Amazon Translate for the translated text response. This is optional in the response and will only be present if you specified terminology input in the request. Currently, only one terminology can be applied per TranslateText request."]
module TranslatedDocumentContent =
  struct
    type nonrec t = string
    let make i = i
    let of_string x = x
    let to_value x = `Blob x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml xml_arg0 = string_of_xml ~kind:"a blob" xml_arg0
    let of_json j = string_of_json ~kind:"a blob" j
    let to_json = simple_to_json to_value
  end
module DocumentContent =
  struct
    type nonrec t = string
    let make i = i
    let of_string x = x
    let to_value x = `Blob x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml xml_arg0 = string_of_xml ~kind:"a blob" xml_arg0
    let of_json j = string_of_json ~kind:"a blob" j
    let to_json = simple_to_json to_value
  end
module ResourceArn =
  struct
    type nonrec t = string
    let context_ = "ResourceArn"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_max i ~max:512) >>=
             (fun () -> check_string_min i ~min:1));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"ResourceArn" j
    let to_json = simple_to_json to_value
  end
module Tag =
  struct
    type nonrec t =
      {
      key: TagKey.t
        [@ocaml.doc
          "The initial part of a key-value pair that forms a tag associated with a given resource."];
      value: TagValue.t
        [@ocaml.doc
          "The second part of a key-value pair that forms a tag associated with a given resource."]}
    let context_ = "Tag"
    let make ~key = fun ~value -> fun () -> { key; value }
    let to_value x =
      structure_to_value
        [("Key", (Some (TagKey.to_value x.key)));
        ("Value", (Some (TagValue.to_value x.value)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let value =
        TagValue.of_xml (Xml.child_exn ~context:context_ xml_arg0 "Value") in
      let key =
        TagKey.of_xml (Xml.child_exn ~context:context_ xml_arg0 "Key") in
      make ~value ~key ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let value = field_map_exn json__ "Value" TagValue.of_json in
      let key = field_map_exn json__ "Key" TagKey.of_json in
      make ~value ~key ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "A key-value pair that adds as a metadata to a resource used by Amazon Translate."]
module TextTranslationJobProperties =
  struct
    type nonrec t =
      {
      jobId: JobId.t option [@ocaml.doc "The ID of the translation job."];
      jobName: JobName.t option
        [@ocaml.doc "The user-defined name of the translation job."];
      jobStatus: JobStatus.t option
        [@ocaml.doc "The status of the translation job."];
      jobDetails: JobDetails.t option
        [@ocaml.doc
          "The number of documents successfully and unsuccessfully processed during the translation job."];
      sourceLanguageCode: LanguageCodeString.t option
        [@ocaml.doc
          "The language code of the language of the source text. The language must be a language supported by Amazon Translate."];
      targetLanguageCodes: TargetLanguageCodeStringList.t option
        [@ocaml.doc
          "The language code of the language of the target text. The language must be a language supported by Amazon Translate."];
      terminologyNames: ResourceNameList.t option
        [@ocaml.doc
          "A list containing the names of the terminologies applied to a translation job. Only one terminology can be applied per StartTextTranslationJob request at this time."];
      parallelDataNames: ResourceNameList.t option
        [@ocaml.doc
          "A list containing the names of the parallel data resources applied to the translation job."];
      message: UnboundedLengthString.t option
        [@ocaml.doc
          "An explanation of any errors that may have occurred during the translation job."];
      submittedTime: Timestamp.t option
        [@ocaml.doc "The time at which the translation job was submitted."];
      endTime: Timestamp.t option
        [@ocaml.doc "The time at which the translation job ended."];
      inputDataConfig: InputDataConfig.t option
        [@ocaml.doc
          "The input configuration properties that were specified when the job was requested."];
      outputDataConfig: OutputDataConfig.t option
        [@ocaml.doc
          "The output configuration properties that were specified when the job was requested."];
      dataAccessRoleArn: IamRoleArn.t option
        [@ocaml.doc
          "The Amazon Resource Name (ARN) of an AWS Identity Access and Management (IAM) role that granted Amazon Translate read access to the job's input data."];
      settings: TranslationSettings.t option
        [@ocaml.doc "Settings that modify the translation output."]}
    let make ?jobId =
      fun ?jobName ->
        fun ?jobStatus ->
          fun ?jobDetails ->
            fun ?sourceLanguageCode ->
              fun ?targetLanguageCodes ->
                fun ?terminologyNames ->
                  fun ?parallelDataNames ->
                    fun ?message ->
                      fun ?submittedTime ->
                        fun ?endTime ->
                          fun ?inputDataConfig ->
                            fun ?outputDataConfig ->
                              fun ?dataAccessRoleArn ->
                                fun ?settings ->
                                  fun () ->
                                    {
                                      jobId;
                                      jobName;
                                      jobStatus;
                                      jobDetails;
                                      sourceLanguageCode;
                                      targetLanguageCodes;
                                      terminologyNames;
                                      parallelDataNames;
                                      message;
                                      submittedTime;
                                      endTime;
                                      inputDataConfig;
                                      outputDataConfig;
                                      dataAccessRoleArn;
                                      settings
                                    }
    let to_value x =
      structure_to_value
        [("JobId", (Option.map x.jobId ~f:JobId.to_value));
        ("JobName", (Option.map x.jobName ~f:JobName.to_value));
        ("JobStatus", (Option.map x.jobStatus ~f:JobStatus.to_value));
        ("JobDetails", (Option.map x.jobDetails ~f:JobDetails.to_value));
        ("SourceLanguageCode",
          (Option.map x.sourceLanguageCode ~f:LanguageCodeString.to_value));
        ("TargetLanguageCodes",
          (Option.map x.targetLanguageCodes
             ~f:TargetLanguageCodeStringList.to_value));
        ("TerminologyNames",
          (Option.map x.terminologyNames ~f:ResourceNameList.to_value));
        ("ParallelDataNames",
          (Option.map x.parallelDataNames ~f:ResourceNameList.to_value));
        ("Message", (Option.map x.message ~f:UnboundedLengthString.to_value));
        ("SubmittedTime", (Option.map x.submittedTime ~f:Timestamp.to_value));
        ("EndTime", (Option.map x.endTime ~f:Timestamp.to_value));
        ("InputDataConfig",
          (Option.map x.inputDataConfig ~f:InputDataConfig.to_value));
        ("OutputDataConfig",
          (Option.map x.outputDataConfig ~f:OutputDataConfig.to_value));
        ("DataAccessRoleArn",
          (Option.map x.dataAccessRoleArn ~f:IamRoleArn.to_value));
        ("Settings", (Option.map x.settings ~f:TranslationSettings.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let settings =
        (Option.map ~f:TranslationSettings.of_xml)
          (Xml.child xml_arg0 "Settings") in
      let dataAccessRoleArn =
        (Option.map ~f:IamRoleArn.of_xml)
          (Xml.child xml_arg0 "DataAccessRoleArn") in
      let outputDataConfig =
        (Option.map ~f:OutputDataConfig.of_xml)
          (Xml.child xml_arg0 "OutputDataConfig") in
      let inputDataConfig =
        (Option.map ~f:InputDataConfig.of_xml)
          (Xml.child xml_arg0 "InputDataConfig") in
      let endTime =
        (Option.map ~f:Timestamp.of_xml) (Xml.child xml_arg0 "EndTime") in
      let submittedTime =
        (Option.map ~f:Timestamp.of_xml) (Xml.child xml_arg0 "SubmittedTime") in
      let message =
        (Option.map ~f:UnboundedLengthString.of_xml)
          (Xml.child xml_arg0 "Message") in
      let parallelDataNames =
        (Option.map ~f:ResourceNameList.of_xml)
          (Xml.child xml_arg0 "ParallelDataNames") in
      let terminologyNames =
        (Option.map ~f:ResourceNameList.of_xml)
          (Xml.child xml_arg0 "TerminologyNames") in
      let targetLanguageCodes =
        (Option.map ~f:TargetLanguageCodeStringList.of_xml)
          (Xml.child xml_arg0 "TargetLanguageCodes") in
      let sourceLanguageCode =
        (Option.map ~f:LanguageCodeString.of_xml)
          (Xml.child xml_arg0 "SourceLanguageCode") in
      let jobDetails =
        (Option.map ~f:JobDetails.of_xml) (Xml.child xml_arg0 "JobDetails") in
      let jobStatus =
        (Option.map ~f:JobStatus.of_xml) (Xml.child xml_arg0 "JobStatus") in
      let jobName =
        (Option.map ~f:JobName.of_xml) (Xml.child xml_arg0 "JobName") in
      let jobId = (Option.map ~f:JobId.of_xml) (Xml.child xml_arg0 "JobId") in
      make ?settings ?dataAccessRoleArn ?outputDataConfig ?inputDataConfig
        ?endTime ?submittedTime ?message ?parallelDataNames ?terminologyNames
        ?targetLanguageCodes ?sourceLanguageCode ?jobDetails ?jobStatus
        ?jobName ?jobId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let settings = field_map json__ "Settings" TranslationSettings.of_json in
      let dataAccessRoleArn =
        field_map json__ "DataAccessRoleArn" IamRoleArn.of_json in
      let outputDataConfig =
        field_map json__ "OutputDataConfig" OutputDataConfig.of_json in
      let inputDataConfig =
        field_map json__ "InputDataConfig" InputDataConfig.of_json in
      let endTime = field_map json__ "EndTime" Timestamp.of_json in
      let submittedTime = field_map json__ "SubmittedTime" Timestamp.of_json in
      let message = field_map json__ "Message" UnboundedLengthString.of_json in
      let parallelDataNames =
        field_map json__ "ParallelDataNames" ResourceNameList.of_json in
      let terminologyNames =
        field_map json__ "TerminologyNames" ResourceNameList.of_json in
      let targetLanguageCodes =
        field_map json__ "TargetLanguageCodes"
          TargetLanguageCodeStringList.of_json in
      let sourceLanguageCode =
        field_map json__ "SourceLanguageCode" LanguageCodeString.of_json in
      let jobDetails = field_map json__ "JobDetails" JobDetails.of_json in
      let jobStatus = field_map json__ "JobStatus" JobStatus.of_json in
      let jobName = field_map json__ "JobName" JobName.of_json in
      let jobId = field_map json__ "JobId" JobId.of_json in
      make ?settings ?dataAccessRoleArn ?outputDataConfig ?inputDataConfig
        ?endTime ?submittedTime ?message ?parallelDataNames ?terminologyNames
        ?targetLanguageCodes ?sourceLanguageCode ?jobDetails ?jobStatus
        ?jobName ?jobId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "Provides information about a translation job."]
module TerminologyProperties =
  struct
    type nonrec t =
      {
      name: ResourceName.t option
        [@ocaml.doc "The name of the custom terminology."];
      description: Description.t option
        [@ocaml.doc "The description of the custom terminology properties."];
      arn: TerminologyArn.t option
        [@ocaml.doc
          "The Amazon Resource Name (ARN) of the custom terminology."];
      sourceLanguageCode: LanguageCodeString.t option
        [@ocaml.doc
          "The language code for the source text of the translation request for which the custom terminology is being used."];
      targetLanguageCodes: LanguageCodeStringList.t option
        [@ocaml.doc
          "The language codes for the target languages available with the custom terminology resource. All possible target languages are returned in array."];
      encryptionKey: EncryptionKey.t option
        [@ocaml.doc "The encryption key for the custom terminology."];
      sizeBytes: Integer.t option
        [@ocaml.doc
          "The size of the file used when importing a custom terminology."];
      termCount: Integer.t option
        [@ocaml.doc
          "The number of terms included in the custom terminology."];
      createdAt: Timestamp.t option
        [@ocaml.doc
          "The time at which the custom terminology was created, based on the timestamp."];
      lastUpdatedAt: Timestamp.t option
        [@ocaml.doc
          "The time at which the custom terminology was last update, based on the timestamp."];
      directionality: Directionality.t option
        [@ocaml.doc
          "The directionality of your terminology resource indicates whether it has one source language (uni-directional) or multiple (multi-directional). UNI The terminology resource has one source language (the first column in a CSV file), and all of its other languages are target languages. MULTI Any language in the terminology resource can be the source language."];
      message: UnboundedLengthString.t option
        [@ocaml.doc
          "Additional information from Amazon Translate about the terminology resource."];
      skippedTermCount: Integer.t option
        [@ocaml.doc
          "The number of terms in the input file that Amazon Translate skipped when you created or updated the terminology resource."];
      format: TerminologyDataFormat.t option
        [@ocaml.doc "The format of the custom terminology input file."]}
    let make ?name =
      fun ?description ->
        fun ?arn ->
          fun ?sourceLanguageCode ->
            fun ?targetLanguageCodes ->
              fun ?encryptionKey ->
                fun ?sizeBytes ->
                  fun ?termCount ->
                    fun ?createdAt ->
                      fun ?lastUpdatedAt ->
                        fun ?directionality ->
                          fun ?message ->
                            fun ?skippedTermCount ->
                              fun ?format ->
                                fun () ->
                                  {
                                    name;
                                    description;
                                    arn;
                                    sourceLanguageCode;
                                    targetLanguageCodes;
                                    encryptionKey;
                                    sizeBytes;
                                    termCount;
                                    createdAt;
                                    lastUpdatedAt;
                                    directionality;
                                    message;
                                    skippedTermCount;
                                    format
                                  }
    let to_value x =
      structure_to_value
        [("Name", (Option.map x.name ~f:ResourceName.to_value));
        ("Description", (Option.map x.description ~f:Description.to_value));
        ("Arn", (Option.map x.arn ~f:TerminologyArn.to_value));
        ("SourceLanguageCode",
          (Option.map x.sourceLanguageCode ~f:LanguageCodeString.to_value));
        ("TargetLanguageCodes",
          (Option.map x.targetLanguageCodes
             ~f:LanguageCodeStringList.to_value));
        ("EncryptionKey",
          (Option.map x.encryptionKey ~f:EncryptionKey.to_value));
        ("SizeBytes", (Option.map x.sizeBytes ~f:Integer.to_value));
        ("TermCount", (Option.map x.termCount ~f:Integer.to_value));
        ("CreatedAt", (Option.map x.createdAt ~f:Timestamp.to_value));
        ("LastUpdatedAt", (Option.map x.lastUpdatedAt ~f:Timestamp.to_value));
        ("Directionality",
          (Option.map x.directionality ~f:Directionality.to_value));
        ("Message", (Option.map x.message ~f:UnboundedLengthString.to_value));
        ("SkippedTermCount",
          (Option.map x.skippedTermCount ~f:Integer.to_value));
        ("Format", (Option.map x.format ~f:TerminologyDataFormat.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let format =
        (Option.map ~f:TerminologyDataFormat.of_xml)
          (Xml.child xml_arg0 "Format") in
      let skippedTermCount =
        (Option.map ~f:Integer.of_xml)
          (Xml.child xml_arg0 "SkippedTermCount") in
      let message =
        (Option.map ~f:UnboundedLengthString.of_xml)
          (Xml.child xml_arg0 "Message") in
      let directionality =
        (Option.map ~f:Directionality.of_xml)
          (Xml.child xml_arg0 "Directionality") in
      let lastUpdatedAt =
        (Option.map ~f:Timestamp.of_xml) (Xml.child xml_arg0 "LastUpdatedAt") in
      let createdAt =
        (Option.map ~f:Timestamp.of_xml) (Xml.child xml_arg0 "CreatedAt") in
      let termCount =
        (Option.map ~f:Integer.of_xml) (Xml.child xml_arg0 "TermCount") in
      let sizeBytes =
        (Option.map ~f:Integer.of_xml) (Xml.child xml_arg0 "SizeBytes") in
      let encryptionKey =
        (Option.map ~f:EncryptionKey.of_xml)
          (Xml.child xml_arg0 "EncryptionKey") in
      let targetLanguageCodes =
        (Option.map ~f:LanguageCodeStringList.of_xml)
          (Xml.child xml_arg0 "TargetLanguageCodes") in
      let sourceLanguageCode =
        (Option.map ~f:LanguageCodeString.of_xml)
          (Xml.child xml_arg0 "SourceLanguageCode") in
      let arn =
        (Option.map ~f:TerminologyArn.of_xml) (Xml.child xml_arg0 "Arn") in
      let description =
        (Option.map ~f:Description.of_xml) (Xml.child xml_arg0 "Description") in
      let name =
        (Option.map ~f:ResourceName.of_xml) (Xml.child xml_arg0 "Name") in
      make ?format ?skippedTermCount ?message ?directionality ?lastUpdatedAt
        ?createdAt ?termCount ?sizeBytes ?encryptionKey ?targetLanguageCodes
        ?sourceLanguageCode ?arn ?description ?name ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let format = field_map json__ "Format" TerminologyDataFormat.of_json in
      let skippedTermCount =
        field_map json__ "SkippedTermCount" Integer.of_json in
      let message = field_map json__ "Message" UnboundedLengthString.of_json in
      let directionality =
        field_map json__ "Directionality" Directionality.of_json in
      let lastUpdatedAt = field_map json__ "LastUpdatedAt" Timestamp.of_json in
      let createdAt = field_map json__ "CreatedAt" Timestamp.of_json in
      let termCount = field_map json__ "TermCount" Integer.of_json in
      let sizeBytes = field_map json__ "SizeBytes" Integer.of_json in
      let encryptionKey =
        field_map json__ "EncryptionKey" EncryptionKey.of_json in
      let targetLanguageCodes =
        field_map json__ "TargetLanguageCodes" LanguageCodeStringList.of_json in
      let sourceLanguageCode =
        field_map json__ "SourceLanguageCode" LanguageCodeString.of_json in
      let arn = field_map json__ "Arn" TerminologyArn.of_json in
      let description = field_map json__ "Description" Description.of_json in
      let name = field_map json__ "Name" ResourceName.of_json in
      make ?format ?skippedTermCount ?message ?directionality ?lastUpdatedAt
        ?createdAt ?termCount ?sizeBytes ?encryptionKey ?targetLanguageCodes
        ?sourceLanguageCode ?arn ?description ?name ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "The properties of the custom terminology."]
module ParallelDataProperties =
  struct
    type nonrec t =
      {
      name: ResourceName.t option
        [@ocaml.doc
          "The custom name assigned to the parallel data resource."];
      arn: ParallelDataArn.t option
        [@ocaml.doc
          "The Amazon Resource Name (ARN) of the parallel data resource."];
      description: Description.t option
        [@ocaml.doc
          "The description assigned to the parallel data resource."];
      status: ParallelDataStatus.t option
        [@ocaml.doc
          "The status of the parallel data resource. When the parallel data is ready for you to use, the status is ACTIVE."];
      sourceLanguageCode: LanguageCodeString.t option
        [@ocaml.doc
          "The source language of the translations in the parallel data file."];
      targetLanguageCodes: LanguageCodeStringList.t option
        [@ocaml.doc
          "The language codes for the target languages available in the parallel data file. All possible target languages are returned as an array."];
      parallelDataConfig: ParallelDataConfig.t option
        [@ocaml.doc
          "Specifies the format and S3 location of the parallel data input file."];
      message: UnboundedLengthString.t option
        [@ocaml.doc
          "Additional information from Amazon Translate about the parallel data resource."];
      importedDataSize: Long.t option
        [@ocaml.doc
          "The number of UTF-8 characters that Amazon Translate imported from the parallel data input file. This number includes only the characters in your translation examples. It does not include characters that are used to format your file. For example, if you provided a Translation Memory Exchange (.tmx) file, this number does not include the tags."];
      importedRecordCount: Long.t option
        [@ocaml.doc
          "The number of records successfully imported from the parallel data input file."];
      failedRecordCount: Long.t option
        [@ocaml.doc
          "The number of records unsuccessfully imported from the parallel data input file."];
      skippedRecordCount: Long.t option
        [@ocaml.doc
          "The number of items in the input file that Amazon Translate skipped when you created or updated the parallel data resource. For example, Amazon Translate skips empty records, empty target texts, and empty lines."];
      encryptionKey: EncryptionKey.t option ;
      createdAt: Timestamp.t option
        [@ocaml.doc
          "The time at which the parallel data resource was created."];
      lastUpdatedAt: Timestamp.t option
        [@ocaml.doc
          "The time at which the parallel data resource was last updated."];
      latestUpdateAttemptStatus: ParallelDataStatus.t option
        [@ocaml.doc
          "The status of the most recent update attempt for the parallel data resource."];
      latestUpdateAttemptAt: Timestamp.t option
        [@ocaml.doc "The time that the most recent update was attempted."]}
    let make ?name =
      fun ?arn ->
        fun ?description ->
          fun ?status ->
            fun ?sourceLanguageCode ->
              fun ?targetLanguageCodes ->
                fun ?parallelDataConfig ->
                  fun ?message ->
                    fun ?importedDataSize ->
                      fun ?importedRecordCount ->
                        fun ?failedRecordCount ->
                          fun ?skippedRecordCount ->
                            fun ?encryptionKey ->
                              fun ?createdAt ->
                                fun ?lastUpdatedAt ->
                                  fun ?latestUpdateAttemptStatus ->
                                    fun ?latestUpdateAttemptAt ->
                                      fun () ->
                                        {
                                          name;
                                          arn;
                                          description;
                                          status;
                                          sourceLanguageCode;
                                          targetLanguageCodes;
                                          parallelDataConfig;
                                          message;
                                          importedDataSize;
                                          importedRecordCount;
                                          failedRecordCount;
                                          skippedRecordCount;
                                          encryptionKey;
                                          createdAt;
                                          lastUpdatedAt;
                                          latestUpdateAttemptStatus;
                                          latestUpdateAttemptAt
                                        }
    let to_value x =
      structure_to_value
        [("Name", (Option.map x.name ~f:ResourceName.to_value));
        ("Arn", (Option.map x.arn ~f:ParallelDataArn.to_value));
        ("Description", (Option.map x.description ~f:Description.to_value));
        ("Status", (Option.map x.status ~f:ParallelDataStatus.to_value));
        ("SourceLanguageCode",
          (Option.map x.sourceLanguageCode ~f:LanguageCodeString.to_value));
        ("TargetLanguageCodes",
          (Option.map x.targetLanguageCodes
             ~f:LanguageCodeStringList.to_value));
        ("ParallelDataConfig",
          (Option.map x.parallelDataConfig ~f:ParallelDataConfig.to_value));
        ("Message", (Option.map x.message ~f:UnboundedLengthString.to_value));
        ("ImportedDataSize",
          (Option.map x.importedDataSize ~f:Long.to_value));
        ("ImportedRecordCount",
          (Option.map x.importedRecordCount ~f:Long.to_value));
        ("FailedRecordCount",
          (Option.map x.failedRecordCount ~f:Long.to_value));
        ("SkippedRecordCount",
          (Option.map x.skippedRecordCount ~f:Long.to_value));
        ("EncryptionKey",
          (Option.map x.encryptionKey ~f:EncryptionKey.to_value));
        ("CreatedAt", (Option.map x.createdAt ~f:Timestamp.to_value));
        ("LastUpdatedAt", (Option.map x.lastUpdatedAt ~f:Timestamp.to_value));
        ("LatestUpdateAttemptStatus",
          (Option.map x.latestUpdateAttemptStatus
             ~f:ParallelDataStatus.to_value));
        ("LatestUpdateAttemptAt",
          (Option.map x.latestUpdateAttemptAt ~f:Timestamp.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let latestUpdateAttemptAt =
        (Option.map ~f:Timestamp.of_xml)
          (Xml.child xml_arg0 "LatestUpdateAttemptAt") in
      let latestUpdateAttemptStatus =
        (Option.map ~f:ParallelDataStatus.of_xml)
          (Xml.child xml_arg0 "LatestUpdateAttemptStatus") in
      let lastUpdatedAt =
        (Option.map ~f:Timestamp.of_xml) (Xml.child xml_arg0 "LastUpdatedAt") in
      let createdAt =
        (Option.map ~f:Timestamp.of_xml) (Xml.child xml_arg0 "CreatedAt") in
      let encryptionKey =
        (Option.map ~f:EncryptionKey.of_xml)
          (Xml.child xml_arg0 "EncryptionKey") in
      let skippedRecordCount =
        (Option.map ~f:Long.of_xml) (Xml.child xml_arg0 "SkippedRecordCount") in
      let failedRecordCount =
        (Option.map ~f:Long.of_xml) (Xml.child xml_arg0 "FailedRecordCount") in
      let importedRecordCount =
        (Option.map ~f:Long.of_xml)
          (Xml.child xml_arg0 "ImportedRecordCount") in
      let importedDataSize =
        (Option.map ~f:Long.of_xml) (Xml.child xml_arg0 "ImportedDataSize") in
      let message =
        (Option.map ~f:UnboundedLengthString.of_xml)
          (Xml.child xml_arg0 "Message") in
      let parallelDataConfig =
        (Option.map ~f:ParallelDataConfig.of_xml)
          (Xml.child xml_arg0 "ParallelDataConfig") in
      let targetLanguageCodes =
        (Option.map ~f:LanguageCodeStringList.of_xml)
          (Xml.child xml_arg0 "TargetLanguageCodes") in
      let sourceLanguageCode =
        (Option.map ~f:LanguageCodeString.of_xml)
          (Xml.child xml_arg0 "SourceLanguageCode") in
      let status =
        (Option.map ~f:ParallelDataStatus.of_xml)
          (Xml.child xml_arg0 "Status") in
      let description =
        (Option.map ~f:Description.of_xml) (Xml.child xml_arg0 "Description") in
      let arn =
        (Option.map ~f:ParallelDataArn.of_xml) (Xml.child xml_arg0 "Arn") in
      let name =
        (Option.map ~f:ResourceName.of_xml) (Xml.child xml_arg0 "Name") in
      make ?latestUpdateAttemptAt ?latestUpdateAttemptStatus ?lastUpdatedAt
        ?createdAt ?encryptionKey ?skippedRecordCount ?failedRecordCount
        ?importedRecordCount ?importedDataSize ?message ?parallelDataConfig
        ?targetLanguageCodes ?sourceLanguageCode ?status ?description ?arn
        ?name ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let latestUpdateAttemptAt =
        field_map json__ "LatestUpdateAttemptAt" Timestamp.of_json in
      let latestUpdateAttemptStatus =
        field_map json__ "LatestUpdateAttemptStatus"
          ParallelDataStatus.of_json in
      let lastUpdatedAt = field_map json__ "LastUpdatedAt" Timestamp.of_json in
      let createdAt = field_map json__ "CreatedAt" Timestamp.of_json in
      let encryptionKey =
        field_map json__ "EncryptionKey" EncryptionKey.of_json in
      let skippedRecordCount =
        field_map json__ "SkippedRecordCount" Long.of_json in
      let failedRecordCount =
        field_map json__ "FailedRecordCount" Long.of_json in
      let importedRecordCount =
        field_map json__ "ImportedRecordCount" Long.of_json in
      let importedDataSize = field_map json__ "ImportedDataSize" Long.of_json in
      let message = field_map json__ "Message" UnboundedLengthString.of_json in
      let parallelDataConfig =
        field_map json__ "ParallelDataConfig" ParallelDataConfig.of_json in
      let targetLanguageCodes =
        field_map json__ "TargetLanguageCodes" LanguageCodeStringList.of_json in
      let sourceLanguageCode =
        field_map json__ "SourceLanguageCode" LanguageCodeString.of_json in
      let status = field_map json__ "Status" ParallelDataStatus.of_json in
      let description = field_map json__ "Description" Description.of_json in
      let arn = field_map json__ "Arn" ParallelDataArn.of_json in
      let name = field_map json__ "Name" ResourceName.of_json in
      make ?latestUpdateAttemptAt ?latestUpdateAttemptStatus ?lastUpdatedAt
        ?createdAt ?encryptionKey ?skippedRecordCount ?failedRecordCount
        ?importedRecordCount ?importedDataSize ?message ?parallelDataConfig
        ?targetLanguageCodes ?sourceLanguageCode ?status ?description ?arn
        ?name ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "The properties of a parallel data resource."]
module Language =
  struct
    type nonrec t =
      {
      languageName: LocalizedNameString.t option
        [@ocaml.doc "Language name of the supported language."];
      languageCode: LanguageCodeString.t option
        [@ocaml.doc "Language code for the supported language."]}
    let make ?languageName =
      fun ?languageCode -> fun () -> { languageName; languageCode }
    let to_value x =
      structure_to_value
        [("LanguageName",
           (Option.map x.languageName ~f:LocalizedNameString.to_value));
        ("LanguageCode",
          (Option.map x.languageCode ~f:LanguageCodeString.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let languageCode =
        (Option.map ~f:LanguageCodeString.of_xml)
          (Xml.child xml_arg0 "LanguageCode") in
      let languageName =
        (Option.map ~f:LocalizedNameString.of_xml)
          (Xml.child xml_arg0 "LanguageName") in
      make ?languageCode ?languageName ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let languageCode =
        field_map json__ "LanguageCode" LanguageCodeString.of_json in
      let languageName =
        field_map json__ "LanguageName" LocalizedNameString.of_json in
      make ?languageCode ?languageName ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "A supported language."]
module TerminologyFile =
  struct
    type nonrec t = string
    let make i = i
    let of_string x = x
    let to_value x = `Blob x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml xml_arg0 = string_of_xml ~kind:"a blob" xml_arg0
    let of_json j = string_of_json ~kind:"a blob" j
    let to_json = simple_to_json to_value
  end
module ConcurrentModificationException =
  struct
    type nonrec t = {
      message: String_.t option }
    let make ?message = fun () -> { message }
    let to_value x =
      structure_to_value
        [("Message", (Option.map x.message ~f:String_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let message =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Message") in
      make ?message ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let message = field_map json__ "Message" String_.of_json in
      make ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Another modification is being made. That modification must complete before you can make your change."]
module ConflictException =
  struct
    type nonrec t = {
      message: String_.t option }
    let make ?message = fun () -> { message }
    let to_value x =
      structure_to_value
        [("Message", (Option.map x.message ~f:String_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let message =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Message") in
      make ?message ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let message = field_map json__ "Message" String_.of_json in
      make ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "There was a conflict processing the request. Try your request again."]
module InternalServerException =
  struct
    type nonrec t = {
      message: String_.t option }
    let make ?message = fun () -> { message }
    let to_value x =
      structure_to_value
        [("Message", (Option.map x.message ~f:String_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let message =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Message") in
      make ?message ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let message = field_map json__ "Message" String_.of_json in
      make ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "An internal server error occurred. Retry your request."]
module InvalidParameterValueException =
  struct
    type nonrec t = {
      message: String_.t option }
    let make ?message = fun () -> { message }
    let to_value x =
      structure_to_value
        [("Message", (Option.map x.message ~f:String_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let message =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Message") in
      make ?message ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let message = field_map json__ "Message" String_.of_json in
      make ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The value of the parameter is not valid. Review the value of the parameter you are using to correct it, and then retry your operation."]
module InvalidRequestException =
  struct
    type nonrec t = {
      message: String_.t option }
    let make ?message = fun () -> { message }
    let to_value x =
      structure_to_value
        [("Message", (Option.map x.message ~f:String_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let message =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Message") in
      make ?message ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let message = field_map json__ "Message" String_.of_json in
      make ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The request that you made is not valid. Check your request to determine why it's not valid and then retry the request."]
module LimitExceededException =
  struct
    type nonrec t = {
      message: String_.t option }
    let make ?message = fun () -> { message }
    let to_value x =
      structure_to_value
        [("Message", (Option.map x.message ~f:String_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let message =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Message") in
      make ?message ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let message = field_map json__ "Message" String_.of_json in
      make ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The specified limit has been exceeded. Review your request and retry it with a quantity below the stated limit."]
module ResourceNotFoundException =
  struct
    type nonrec t = {
      message: String_.t option }
    let make ?message = fun () -> { message }
    let to_value x =
      structure_to_value
        [("Message", (Option.map x.message ~f:String_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let message =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Message") in
      make ?message ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let message = field_map json__ "Message" String_.of_json in
      make ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The resource you are looking for has not been found. Review the resource you're looking for and see if a different resource will accomplish your needs before retrying the revised request."]
module TooManyRequestsException =
  struct
    type nonrec t = {
      message: String_.t option }
    let make ?message = fun () -> { message }
    let to_value x =
      structure_to_value
        [("Message", (Option.map x.message ~f:String_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let message =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Message") in
      make ?message ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let message = field_map json__ "Message" String_.of_json in
      make ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "You have made too many requests within a short period of time. Wait for a short time and then try your request again."]
module ClientTokenString =
  struct
    type nonrec t = string
    let context_ = "ClientTokenString"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:1) >>=
             (fun () ->
                (check_string_max i ~max:64) >>=
                  (fun () -> check_pattern i ~pattern:"^[a-zA-Z0-9-]+$")));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"ClientTokenString" j
    let to_json = simple_to_json to_value
  end
module TagKeyList =
  struct
    type nonrec t = TagKey.t list
    let make i =
      let open Result in
        ok_or_failwith
          ((check_list_max i ~max:200) >>=
             (fun () -> check_list_min i ~min:0));
        i
    let of_string _ =
      failwithf "of_string is not implemented for List_shape objects" ()
      [@@warning "-32"]
    let to_value xs =
      (xs |> (List.map ~f:TagKey.to_value)) |> (fun x -> `List x)
    let to_query v = to_query to_value v
    let to_header _ =
      failwithf "to_header is not implemented for List_shape objects" ()
    let of_xml x =
      make
        (List.map
           ((Xml.all_children x) |>
              (List.filter
                 ~f:(function
                     | `Data s ->
                         (match Stdlib.String.trim s with
                          | "" -> false
                          | _ -> true)
                     | _ -> true))) ~f:TagKey.of_xml)
    let of_json j = list_of_json ~kind:"TagKeyList" ~of_json:TagKey.of_json j
    let to_json v = composed_to_json to_value v
  end
module AppliedTerminologyList =
  struct
    type nonrec t = AppliedTerminology.t list
    let make i = i
    let of_string _ =
      failwithf "of_string is not implemented for List_shape objects" ()
      [@@warning "-32"]
    let to_value xs =
      (xs |> (List.map ~f:AppliedTerminology.to_value)) |> (fun x -> `List x)
    let to_query v = to_query to_value v
    let to_header _ =
      failwithf "to_header is not implemented for List_shape objects" ()
    let of_xml x =
      make
        (List.map
           ((Xml.all_children x) |>
              (List.filter
                 ~f:(function
                     | `Data s ->
                         (match Stdlib.String.trim s with
                          | "" -> false
                          | _ -> true)
                     | _ -> true))) ~f:AppliedTerminology.of_xml)
    let of_json j =
      list_of_json ~kind:"AppliedTerminologyList"
        ~of_json:AppliedTerminology.of_json j
    let to_json v = composed_to_json to_value v
  end
module DetectedLanguageLowConfidenceException =
  struct
    type nonrec t =
      {
      message: String_.t option ;
      detectedLanguageCode: LanguageCodeString.t option
        [@ocaml.doc
          "The language code of the auto-detected language from Amazon Comprehend."]}
    let make ?message =
      fun ?detectedLanguageCode ->
        fun () -> { message; detectedLanguageCode }
    let to_value x =
      structure_to_value
        [("Message", (Option.map x.message ~f:String_.to_value));
        ("DetectedLanguageCode",
          (Option.map x.detectedLanguageCode ~f:LanguageCodeString.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let detectedLanguageCode =
        (Option.map ~f:LanguageCodeString.of_xml)
          (Xml.child xml_arg0 "DetectedLanguageCode") in
      let message =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Message") in
      make ?detectedLanguageCode ?message ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let detectedLanguageCode =
        field_map json__ "DetectedLanguageCode" LanguageCodeString.of_json in
      let message = field_map json__ "Message" String_.of_json in
      make ?detectedLanguageCode ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The confidence that Amazon Comprehend accurately detected the source language is low. If a low confidence level is acceptable for your application, you can use the language in the exception to call Amazon Translate again. For more information, see the DetectDominantLanguage operation in the Amazon Comprehend Developer Guide."]
module ServiceUnavailableException =
  struct
    type nonrec t = {
      message: String_.t option }
    let make ?message = fun () -> { message }
    let to_value x =
      structure_to_value
        [("Message", (Option.map x.message ~f:String_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let message =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Message") in
      make ?message ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let message = field_map json__ "Message" String_.of_json in
      make ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The Amazon Translate service is temporarily unavailable. Wait a bit and then retry your request."]
module TextSizeLimitExceededException =
  struct
    type nonrec t = {
      message: String_.t option }
    let make ?message = fun () -> { message }
    let to_value x =
      structure_to_value
        [("Message", (Option.map x.message ~f:String_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let message =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Message") in
      make ?message ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let message = field_map json__ "Message" String_.of_json in
      make ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The size of the text you submitted exceeds the size limit. Reduce the size of the text or use a smaller document and then retry your request."]
module TranslatedTextString =
  struct
    type nonrec t = string
    let context_ = "TranslatedTextString"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_max i ~max:20000) >>=
             (fun () -> check_pattern i ~pattern:"[\\P{M}\\p{M}]{0,20000}"));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"TranslatedTextString" j
    let to_json = simple_to_json to_value
  end
module UnsupportedLanguagePairException =
  struct
    type nonrec t =
      {
      message: String_.t option ;
      sourceLanguageCode: LanguageCodeString.t option
        [@ocaml.doc "The language code for the language of the input text."];
      targetLanguageCode: LanguageCodeString.t option
        [@ocaml.doc
          "The language code for the language of the translated text."]}
    let make ?message =
      fun ?sourceLanguageCode ->
        fun ?targetLanguageCode ->
          fun () -> { message; sourceLanguageCode; targetLanguageCode }
    let to_value x =
      structure_to_value
        [("Message", (Option.map x.message ~f:String_.to_value));
        ("SourceLanguageCode",
          (Option.map x.sourceLanguageCode ~f:LanguageCodeString.to_value));
        ("TargetLanguageCode",
          (Option.map x.targetLanguageCode ~f:LanguageCodeString.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let targetLanguageCode =
        (Option.map ~f:LanguageCodeString.of_xml)
          (Xml.child xml_arg0 "TargetLanguageCode") in
      let sourceLanguageCode =
        (Option.map ~f:LanguageCodeString.of_xml)
          (Xml.child xml_arg0 "SourceLanguageCode") in
      let message =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Message") in
      make ?targetLanguageCode ?sourceLanguageCode ?message ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let targetLanguageCode =
        field_map json__ "TargetLanguageCode" LanguageCodeString.of_json in
      let sourceLanguageCode =
        field_map json__ "SourceLanguageCode" LanguageCodeString.of_json in
      let message = field_map json__ "Message" String_.of_json in
      make ?targetLanguageCode ?sourceLanguageCode ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Amazon Translate does not support translation from the language of the source text into the requested target language. For more information, see Supported languages."]
module BoundedLengthString =
  struct
    type nonrec t = string
    let context_ = "BoundedLengthString"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:1) >>=
             (fun () ->
                (check_string_max i ~max:10000) >>=
                  (fun () ->
                     check_pattern i ~pattern:"[\\P{M}\\p{M}]{1,10000}")));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"BoundedLengthString" j
    let to_json = simple_to_json to_value
  end
module TranslatedDocument =
  struct
    type nonrec t =
      {
      content: TranslatedDocumentContent.t option
        [@ocaml.doc "The document containing the translated content."]}
    let make ?content = fun () -> { content }
    let of_header_and_body =
      ((fun (xs, pipe) -> make ?content:(Some pipe) ())[@warning "-27"])
    let to_value x =
      structure_to_value
        [("Content",
           (Option.map x.content ~f:TranslatedDocumentContent.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let content =
        (Option.map ~f:TranslatedDocumentContent.of_xml)
          (Xml.child xml_arg0 "Content") in
      make ?content ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let content =
        field_map json__ "Content" TranslatedDocumentContent.of_json in
      make ?content ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "The translated content."]
module Document =
  struct
    type nonrec t =
      {
      content: DocumentContent.t
        [@ocaml.doc
          "The Contentfield type is Binary large object (blob). This object contains the document content converted into base64-encoded binary data. If you use one of the AWS SDKs, the SDK performs the Base64-encoding on this field before sending the request."];
      contentType: ContentType.t
        [@ocaml.doc
          "Describes the format of the document. You can specify one of the following: text/html - The input data consists of HTML content. Amazon Translate translates only the text in the HTML element. text/plain - The input data consists of unformatted text. Amazon Translate translates every character in the content. application/vnd.openxmlformats-officedocument.wordprocessingml.document - The input data consists of a Word document (.docx)."]}
    let context_ = "Document"
    let make ~content =
      fun ~contentType -> fun () -> { content; contentType }
    let to_value x =
      structure_to_value
        [("Content", (Some (DocumentContent.to_value x.content)));
        ("ContentType", (Some (ContentType.to_value x.contentType)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let contentType =
        ContentType.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "ContentType") in
      let content =
        DocumentContent.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "Content") in
      make ~contentType ~content ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let contentType =
        field_map_exn json__ "ContentType" ContentType.of_json in
      let content = field_map_exn json__ "Content" DocumentContent.of_json in
      make ~contentType ~content ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "The content and content type of a document."]
module TooManyTagsException =
  struct
    type nonrec t =
      {
      message: String_.t option ;
      resourceArn: ResourceArn.t option }
    let make ?message =
      fun ?resourceArn -> fun () -> { message; resourceArn }
    let to_value x =
      structure_to_value
        [("message", (Option.map x.message ~f:String_.to_value));
        ("ResourceArn", (Option.map x.resourceArn ~f:ResourceArn.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let resourceArn =
        (Option.map ~f:ResourceArn.of_xml) (Xml.child xml_arg0 "ResourceArn") in
      let message =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "message") in
      make ?resourceArn ?message ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let resourceArn = field_map json__ "ResourceArn" ResourceArn.of_json in
      let message = field_map json__ "message" String_.of_json in
      make ?resourceArn ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "You have added too many tags to this resource. The maximum is 50 tags."]
module TagList =
  struct
    type nonrec t = Tag.t list
    let make i =
      let open Result in
        ok_or_failwith
          ((check_list_max i ~max:200) >>=
             (fun () -> check_list_min i ~min:0));
        i
    let of_string _ =
      failwithf "of_string is not implemented for List_shape objects" ()
      [@@warning "-32"]
    let to_value xs =
      (xs |> (List.map ~f:Tag.to_value)) |> (fun x -> `List x)
    let to_query v = to_query to_value v
    let to_header _ =
      failwithf "to_header is not implemented for List_shape objects" ()
    let of_xml x =
      make
        (List.map
           ((Xml.all_children x) |>
              (List.filter
                 ~f:(function
                     | `Data s ->
                         (match Stdlib.String.trim s with
                          | "" -> false
                          | _ -> true)
                     | _ -> true))) ~f:Tag.of_xml)
    let of_json j = list_of_json ~kind:"TagList" ~of_json:Tag.of_json j
    let to_json v = composed_to_json to_value v
  end
module InvalidFilterException =
  struct
    type nonrec t = {
      message: String_.t option }
    let make ?message = fun () -> { message }
    let to_value x =
      structure_to_value
        [("Message", (Option.map x.message ~f:String_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let message =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Message") in
      make ?message ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let message = field_map json__ "Message" String_.of_json in
      make ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The filter specified for the operation is not valid. Specify a different filter."]
module NextToken =
  struct
    type nonrec t = string
    let context_ = "NextToken"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_max i ~max:8192) >>=
             (fun () -> check_pattern i ~pattern:"\\p{ASCII}{0,8192}"));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"NextToken" j
    let to_json = simple_to_json to_value
  end
module TextTranslationJobPropertiesList =
  struct
    type nonrec t = TextTranslationJobProperties.t list
    let make i = i
    let of_string _ =
      failwithf "of_string is not implemented for List_shape objects" ()
      [@@warning "-32"]
    let to_value xs =
      (xs |> (List.map ~f:TextTranslationJobProperties.to_value)) |>
        (fun x -> `List x)
    let to_query v = to_query to_value v
    let to_header _ =
      failwithf "to_header is not implemented for List_shape objects" ()
    let of_xml x =
      make
        (List.map
           ((Xml.all_children x) |>
              (List.filter
                 ~f:(function
                     | `Data s ->
                         (match Stdlib.String.trim s with
                          | "" -> false
                          | _ -> true)
                     | _ -> true))) ~f:TextTranslationJobProperties.of_xml)
    let of_json j =
      list_of_json ~kind:"TextTranslationJobPropertiesList"
        ~of_json:TextTranslationJobProperties.of_json j
    let to_json v = composed_to_json to_value v
  end
module MaxResultsInteger =
  struct
    type nonrec t = int
    let make i =
      let open Result in
        ok_or_failwith
          ((check_int_max i ~max:500) >>= (fun () -> check_int_min i ~min:1));
        i
    let of_string = Int.of_string
    let to_value x = `Integer x
    let to_query v = to_query to_value v
    let to_header x = Int.to_string x
    let of_xml xml_arg0 =
      Int.of_string
        (string_of_xml ~kind:"an integer for MaxResultsInteger" xml_arg0)
    let of_json j = Int.of_float (float_of_json ~kind:"an integer" j)
    let to_json = simple_to_json to_value
  end
module TextTranslationJobFilter =
  struct
    type nonrec t =
      {
      jobName: JobName.t option
        [@ocaml.doc "Filters the list of jobs by name."];
      jobStatus: JobStatus.t option
        [@ocaml.doc "Filters the list of jobs based by job status."];
      submittedBeforeTime: Timestamp.t option
        [@ocaml.doc
          "Filters the list of jobs based on the time that the job was submitted for processing and returns only the jobs submitted before the specified time. Jobs are returned in ascending order, oldest to newest."];
      submittedAfterTime: Timestamp.t option
        [@ocaml.doc
          "Filters the list of jobs based on the time that the job was submitted for processing and returns only the jobs submitted after the specified time. Jobs are returned in descending order, newest to oldest."]}
    let make ?jobName =
      fun ?jobStatus ->
        fun ?submittedBeforeTime ->
          fun ?submittedAfterTime ->
            fun () ->
              { jobName; jobStatus; submittedBeforeTime; submittedAfterTime }
    let to_value x =
      structure_to_value
        [("JobName", (Option.map x.jobName ~f:JobName.to_value));
        ("JobStatus", (Option.map x.jobStatus ~f:JobStatus.to_value));
        ("SubmittedBeforeTime",
          (Option.map x.submittedBeforeTime ~f:Timestamp.to_value));
        ("SubmittedAfterTime",
          (Option.map x.submittedAfterTime ~f:Timestamp.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let submittedAfterTime =
        (Option.map ~f:Timestamp.of_xml)
          (Xml.child xml_arg0 "SubmittedAfterTime") in
      let submittedBeforeTime =
        (Option.map ~f:Timestamp.of_xml)
          (Xml.child xml_arg0 "SubmittedBeforeTime") in
      let jobStatus =
        (Option.map ~f:JobStatus.of_xml) (Xml.child xml_arg0 "JobStatus") in
      let jobName =
        (Option.map ~f:JobName.of_xml) (Xml.child xml_arg0 "JobName") in
      make ?submittedAfterTime ?submittedBeforeTime ?jobStatus ?jobName ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let submittedAfterTime =
        field_map json__ "SubmittedAfterTime" Timestamp.of_json in
      let submittedBeforeTime =
        field_map json__ "SubmittedBeforeTime" Timestamp.of_json in
      let jobStatus = field_map json__ "JobStatus" JobStatus.of_json in
      let jobName = field_map json__ "JobName" JobName.of_json in
      make ?submittedAfterTime ?submittedBeforeTime ?jobStatus ?jobName ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Provides information for filtering a list of translation jobs. For more information, see ListTextTranslationJobs."]
module TerminologyPropertiesList =
  struct
    type nonrec t = TerminologyProperties.t list
    let make i = i
    let of_string _ =
      failwithf "of_string is not implemented for List_shape objects" ()
      [@@warning "-32"]
    let to_value xs =
      (xs |> (List.map ~f:TerminologyProperties.to_value)) |>
        (fun x -> `List x)
    let to_query v = to_query to_value v
    let to_header _ =
      failwithf "to_header is not implemented for List_shape objects" ()
    let of_xml x =
      make
        (List.map
           ((Xml.all_children x) |>
              (List.filter
                 ~f:(function
                     | `Data s ->
                         (match Stdlib.String.trim s with
                          | "" -> false
                          | _ -> true)
                     | _ -> true))) ~f:TerminologyProperties.of_xml)
    let of_json j =
      list_of_json ~kind:"TerminologyPropertiesList"
        ~of_json:TerminologyProperties.of_json j
    let to_json v = composed_to_json to_value v
  end
module ParallelDataPropertiesList =
  struct
    type nonrec t = ParallelDataProperties.t list
    let make i = i
    let of_string _ =
      failwithf "of_string is not implemented for List_shape objects" ()
      [@@warning "-32"]
    let to_value xs =
      (xs |> (List.map ~f:ParallelDataProperties.to_value)) |>
        (fun x -> `List x)
    let to_query v = to_query to_value v
    let to_header _ =
      failwithf "to_header is not implemented for List_shape objects" ()
    let of_xml x =
      make
        (List.map
           ((Xml.all_children x) |>
              (List.filter
                 ~f:(function
                     | `Data s ->
                         (match Stdlib.String.trim s with
                          | "" -> false
                          | _ -> true)
                     | _ -> true))) ~f:ParallelDataProperties.of_xml)
    let of_json j =
      list_of_json ~kind:"ParallelDataPropertiesList"
        ~of_json:ParallelDataProperties.of_json j
    let to_json v = composed_to_json to_value v
  end
module DisplayLanguageCode =
  struct
    type nonrec t =
      | De 
      | En 
      | Es 
      | Fr 
      | It 
      | Ja 
      | Ko 
      | Pt 
      | Zh 
      | Zh_TW 
      | Non_static_id of string 
    let make i = i
    let to_string =
      function
      | De -> "de"
      | En -> "en"
      | Es -> "es"
      | Fr -> "fr"
      | It -> "it"
      | Ja -> "ja"
      | Ko -> "ko"
      | Pt -> "pt"
      | Zh -> "zh"
      | Zh_TW -> "zh-TW"
      | Non_static_id s -> s
    let of_string =
      function
      | "de" -> De
      | "en" -> En
      | "es" -> Es
      | "fr" -> Fr
      | "it" -> It
      | "ja" -> Ja
      | "ko" -> Ko
      | "pt" -> Pt
      | "zh" -> Zh
      | "zh-TW" -> Zh_TW
      | x -> Non_static_id x
    let to_value x = `Enum (to_string x)
    let to_query v = to_query to_value v
    let to_header x = to_string x
    let of_xml xml_arg0 =
      of_string
        (string_of_xml ~kind:"enumeration DisplayLanguageCode" xml_arg0)
    let of_json j = of_string (string_of_json ~kind:"DisplayLanguageCode" j)
    let to_json = simple_to_json to_value
  end
module LanguagesList =
  struct
    type nonrec t = Language.t list
    let make i = i
    let of_string _ =
      failwithf "of_string is not implemented for List_shape objects" ()
      [@@warning "-32"]
    let to_value xs =
      (xs |> (List.map ~f:Language.to_value)) |> (fun x -> `List x)
    let to_query v = to_query to_value v
    let to_header _ =
      failwithf "to_header is not implemented for List_shape objects" ()
    let of_xml x =
      make
        (List.map
           ((Xml.all_children x) |>
              (List.filter
                 ~f:(function
                     | `Data s ->
                         (match Stdlib.String.trim s with
                          | "" -> false
                          | _ -> true)
                     | _ -> true))) ~f:Language.of_xml)
    let of_json j =
      list_of_json ~kind:"LanguagesList" ~of_json:Language.of_json j
    let to_json v = composed_to_json to_value v
  end
module UnsupportedDisplayLanguageCodeException =
  struct
    type nonrec t =
      {
      message: String_.t option ;
      displayLanguageCode: LanguageCodeString.t option
        [@ocaml.doc "Language code passed in with the request."]}
    let make ?message =
      fun ?displayLanguageCode -> fun () -> { message; displayLanguageCode }
    let to_value x =
      structure_to_value
        [("Message", (Option.map x.message ~f:String_.to_value));
        ("DisplayLanguageCode",
          (Option.map x.displayLanguageCode ~f:LanguageCodeString.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let displayLanguageCode =
        (Option.map ~f:LanguageCodeString.of_xml)
          (Xml.child xml_arg0 "DisplayLanguageCode") in
      let message =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Message") in
      make ?displayLanguageCode ?message ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let displayLanguageCode =
        field_map json__ "DisplayLanguageCode" LanguageCodeString.of_json in
      let message = field_map json__ "Message" String_.of_json in
      make ?displayLanguageCode ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "Requested display language code is not supported."]
module TerminologyDataLocation =
  struct
    type nonrec t =
      {
      repositoryType: String_.t option
        [@ocaml.doc "The repository type for the custom terminology data."];
      location: String_.t option
        [@ocaml.doc
          "The Amazon S3 location of the most recent custom terminology input file that was successfully imported into Amazon Translate. The location is returned as a presigned URL that has a 30-minute expiration . Amazon Translate doesn't scan all input files for the risk of CSV injection attacks. CSV injection occurs when a .csv or .tsv file is altered so that a record contains malicious code. The record begins with a special character, such as =, +, -, or \\@. When the file is opened in a spreadsheet program, the program might interpret the record as a formula and run the code within it. Before you download an input file from Amazon S3, ensure that you recognize the file and trust its creator."]}
    let make ?repositoryType =
      fun ?location -> fun () -> { repositoryType; location }
    let to_value x =
      structure_to_value
        [("RepositoryType",
           (Option.map x.repositoryType ~f:String_.to_value));
        ("Location", (Option.map x.location ~f:String_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let location =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Location") in
      let repositoryType =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "RepositoryType") in
      make ?location ?repositoryType ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let location = field_map json__ "Location" String_.of_json in
      let repositoryType = field_map json__ "RepositoryType" String_.of_json in
      make ?location ?repositoryType ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "The location of the custom terminology data."]
module MergeStrategy =
  struct
    type nonrec t =
      | OVERWRITE 
      | Non_static_id of string 
    let make i = i
    let to_string =
      function | OVERWRITE -> "OVERWRITE" | Non_static_id s -> s
    let of_string =
      function | "OVERWRITE" -> OVERWRITE | x -> Non_static_id x
    let to_value x = `Enum (to_string x)
    let to_query v = to_query to_value v
    let to_header x = to_string x
    let of_xml xml_arg0 =
      of_string (string_of_xml ~kind:"enumeration MergeStrategy" xml_arg0)
    let of_json j = of_string (string_of_json ~kind:"MergeStrategy" j)
    let to_json = simple_to_json to_value
  end
module TerminologyData =
  struct
    type nonrec t =
      {
      file: TerminologyFile.t
        [@ocaml.doc
          "The file containing the custom terminology data. Your version of the AWS SDK performs a Base64-encoding on this field before sending a request to the AWS service. Users of the SDK should not perform Base64-encoding themselves."];
      format: TerminologyDataFormat.t
        [@ocaml.doc "The data format of the custom terminology."];
      directionality: Directionality.t option
        [@ocaml.doc
          "The directionality of your terminology resource indicates whether it has one source language (uni-directional) or multiple (multi-directional). UNI The terminology resource has one source language (for example, the first column in a CSV file), and all of its other languages are target languages. MULTI Any language in the terminology resource can be the source language or a target language. A single multi-directional terminology resource can be used for jobs that translate different language pairs. For example, if the terminology contains English and Spanish terms, it can be used for jobs that translate English to Spanish and Spanish to English. When you create a custom terminology resource without specifying the directionality, it behaves as uni-directional terminology, although this parameter will have a null value."]}
    let context_ = "TerminologyData"
    let make ?directionality =
      fun ~file -> fun ~format -> fun () -> { directionality; file; format }
    let to_value x =
      structure_to_value
        [("File", (Some (TerminologyFile.to_value x.file)));
        ("Format", (Some (TerminologyDataFormat.to_value x.format)));
        ("Directionality",
          (Option.map x.directionality ~f:Directionality.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let directionality =
        (Option.map ~f:Directionality.of_xml)
          (Xml.child xml_arg0 "Directionality") in
      let format =
        TerminologyDataFormat.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "Format") in
      let file =
        TerminologyFile.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "File") in
      make ?directionality ~format ~file ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let directionality =
        field_map json__ "Directionality" Directionality.of_json in
      let format =
        field_map_exn json__ "Format" TerminologyDataFormat.of_json in
      let file = field_map_exn json__ "File" TerminologyFile.of_json in
      make ?directionality ~format ~file ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The data associated with the custom terminology. For information about the custom terminology file, see Creating a Custom Terminology."]
module ParallelDataDataLocation =
  struct
    type nonrec t =
      {
      repositoryType: String_.t option
        [@ocaml.doc
          "Describes the repository that contains the parallel data input file."];
      location: String_.t option
        [@ocaml.doc
          "The Amazon S3 location of the parallel data input file. The location is returned as a presigned URL to that has a 30-minute expiration. Amazon Translate doesn't scan all input files for the risk of CSV injection attacks. CSV injection occurs when a .csv or .tsv file is altered so that a record contains malicious code. The record begins with a special character, such as =, +, -, or \\@. When the file is opened in a spreadsheet program, the program might interpret the record as a formula and run the code within it. Before you download an input file from Amazon S3, ensure that you recognize the file and trust its creator."]}
    let make ?repositoryType =
      fun ?location -> fun () -> { repositoryType; location }
    let to_value x =
      structure_to_value
        [("RepositoryType",
           (Option.map x.repositoryType ~f:String_.to_value));
        ("Location", (Option.map x.location ~f:String_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let location =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Location") in
      let repositoryType =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "RepositoryType") in
      make ?location ?repositoryType ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let location = field_map json__ "Location" String_.of_json in
      let repositoryType = field_map json__ "RepositoryType" String_.of_json in
      make ?location ?repositoryType ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The location of the most recent parallel data input file that was successfully imported into Amazon Translate."]
module UpdateParallelDataResponse =
  struct
    type nonrec t =
      {
      name: ResourceName.t option
        [@ocaml.doc "The name of the parallel data resource being updated."];
      status: ParallelDataStatus.t option
        [@ocaml.doc
          "The status of the parallel data resource that you are attempting to update. Your update request is accepted only if this status is either ACTIVE or FAILED."];
      latestUpdateAttemptStatus: ParallelDataStatus.t option
        [@ocaml.doc
          "The status of the parallel data update attempt. When the updated parallel data resource is ready for you to use, the status is ACTIVE."];
      latestUpdateAttemptAt: Timestamp.t option
        [@ocaml.doc "The time that the most recent update was attempted."]}
    type nonrec error =
      [
        `ConcurrentModificationException of ConcurrentModificationException.t 
      | `ConflictException of ConflictException.t 
      | `InternalServerException of InternalServerException.t 
      | `InvalidParameterValueException of InvalidParameterValueException.t 
      | `InvalidRequestException of InvalidRequestException.t 
      | `LimitExceededException of LimitExceededException.t 
      | `ResourceNotFoundException of ResourceNotFoundException.t 
      | `TooManyRequestsException of TooManyRequestsException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?name =
      fun ?status ->
        fun ?latestUpdateAttemptStatus ->
          fun ?latestUpdateAttemptAt ->
            fun () ->
              {
                name;
                status;
                latestUpdateAttemptStatus;
                latestUpdateAttemptAt
              }
    let error_of_json name json =
      match name with
      | "ConcurrentModificationException" ->
          `ConcurrentModificationException
            (ConcurrentModificationException.of_json json)
      | "ConflictException" ->
          `ConflictException (ConflictException.of_json json)
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_json json)
      | "InvalidParameterValueException" ->
          `InvalidParameterValueException
            (InvalidParameterValueException.of_json json)
      | "InvalidRequestException" ->
          `InvalidRequestException (InvalidRequestException.of_json json)
      | "LimitExceededException" ->
          `LimitExceededException (LimitExceededException.of_json json)
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_json json)
      | "TooManyRequestsException" ->
          `TooManyRequestsException (TooManyRequestsException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "ConcurrentModificationException" ->
          `ConcurrentModificationException
            (ConcurrentModificationException.of_xml xml)
      | "ConflictException" ->
          `ConflictException (ConflictException.of_xml xml)
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_xml xml)
      | "InvalidParameterValueException" ->
          `InvalidParameterValueException
            (InvalidParameterValueException.of_xml xml)
      | "InvalidRequestException" ->
          `InvalidRequestException (InvalidRequestException.of_xml xml)
      | "LimitExceededException" ->
          `LimitExceededException (LimitExceededException.of_xml xml)
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_xml xml)
      | "TooManyRequestsException" ->
          `TooManyRequestsException (TooManyRequestsException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `ConcurrentModificationException e ->
          `Assoc
            [("error", (`String "ConcurrentModificationException"));
            ("details", (ConcurrentModificationException.to_json e))]
      | `ConflictException e ->
          `Assoc
            [("error", (`String "ConflictException"));
            ("details", (ConflictException.to_json e))]
      | `InternalServerException e ->
          `Assoc
            [("error", (`String "InternalServerException"));
            ("details", (InternalServerException.to_json e))]
      | `InvalidParameterValueException e ->
          `Assoc
            [("error", (`String "InvalidParameterValueException"));
            ("details", (InvalidParameterValueException.to_json e))]
      | `InvalidRequestException e ->
          `Assoc
            [("error", (`String "InvalidRequestException"));
            ("details", (InvalidRequestException.to_json e))]
      | `LimitExceededException e ->
          `Assoc
            [("error", (`String "LimitExceededException"));
            ("details", (LimitExceededException.to_json e))]
      | `ResourceNotFoundException e ->
          `Assoc
            [("error", (`String "ResourceNotFoundException"));
            ("details", (ResourceNotFoundException.to_json e))]
      | `TooManyRequestsException e ->
          `Assoc
            [("error", (`String "TooManyRequestsException"));
            ("details", (TooManyRequestsException.to_json e))]
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let to_value x =
      structure_to_value
        [("Name", (Option.map x.name ~f:ResourceName.to_value));
        ("Status", (Option.map x.status ~f:ParallelDataStatus.to_value));
        ("LatestUpdateAttemptStatus",
          (Option.map x.latestUpdateAttemptStatus
             ~f:ParallelDataStatus.to_value));
        ("LatestUpdateAttemptAt",
          (Option.map x.latestUpdateAttemptAt ~f:Timestamp.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let latestUpdateAttemptAt =
        (Option.map ~f:Timestamp.of_xml)
          (Xml.child xml_arg0 "LatestUpdateAttemptAt") in
      let latestUpdateAttemptStatus =
        (Option.map ~f:ParallelDataStatus.of_xml)
          (Xml.child xml_arg0 "LatestUpdateAttemptStatus") in
      let status =
        (Option.map ~f:ParallelDataStatus.of_xml)
          (Xml.child xml_arg0 "Status") in
      let name =
        (Option.map ~f:ResourceName.of_xml) (Xml.child xml_arg0 "Name") in
      make ?latestUpdateAttemptAt ?latestUpdateAttemptStatus ?status ?name ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let latestUpdateAttemptAt =
        field_map json__ "LatestUpdateAttemptAt" Timestamp.of_json in
      let latestUpdateAttemptStatus =
        field_map json__ "LatestUpdateAttemptStatus"
          ParallelDataStatus.of_json in
      let status = field_map json__ "Status" ParallelDataStatus.of_json in
      let name = field_map json__ "Name" ResourceName.of_json in
      make ?latestUpdateAttemptAt ?latestUpdateAttemptStatus ?status ?name ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Updates a previously created parallel data resource by importing a new input file from Amazon S3."]
module UpdateParallelDataRequest =
  struct
    type nonrec t =
      {
      name: ResourceName.t
        [@ocaml.doc "The name of the parallel data resource being updated."];
      description: Description.t option
        [@ocaml.doc
          "A custom description for the parallel data resource in Amazon Translate."];
      parallelDataConfig: ParallelDataConfig.t
        [@ocaml.doc
          "Specifies the format and S3 location of the parallel data input file."];
      clientToken: ClientTokenString.t
        [@ocaml.doc
          "A unique identifier for the request. This token is automatically generated when you use Amazon Translate through an AWS SDK."]}
    let context_ = "UpdateParallelDataRequest"
    let make ?description =
      fun ~name ->
        fun ~parallelDataConfig ->
          fun ~clientToken ->
            fun () -> { description; name; parallelDataConfig; clientToken }
    let to_value x =
      structure_to_value
        [("Name", (Some (ResourceName.to_value x.name)));
        ("Description", (Option.map x.description ~f:Description.to_value));
        ("ParallelDataConfig",
          (Some (ParallelDataConfig.to_value x.parallelDataConfig)));
        ("ClientToken", (Some (ClientTokenString.to_value x.clientToken)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let clientToken =
        ClientTokenString.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "ClientToken") in
      let parallelDataConfig =
        ParallelDataConfig.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "ParallelDataConfig") in
      let description =
        (Option.map ~f:Description.of_xml) (Xml.child xml_arg0 "Description") in
      let name =
        ResourceName.of_xml (Xml.child_exn ~context:context_ xml_arg0 "Name") in
      make ~clientToken ~parallelDataConfig ?description ~name ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let clientToken =
        field_map_exn json__ "ClientToken" ClientTokenString.of_json in
      let parallelDataConfig =
        field_map_exn json__ "ParallelDataConfig" ParallelDataConfig.of_json in
      let description = field_map json__ "Description" Description.of_json in
      let name = field_map_exn json__ "Name" ResourceName.of_json in
      make ~clientToken ~parallelDataConfig ?description ~name ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Updates a previously created parallel data resource by importing a new input file from Amazon S3."]
module UntagResourceResponse =
  struct
    type nonrec t = unit
    type nonrec error =
      [
        `ConcurrentModificationException of ConcurrentModificationException.t 
      | `InternalServerException of InternalServerException.t 
      | `InvalidParameterValueException of InvalidParameterValueException.t 
      | `ResourceNotFoundException of ResourceNotFoundException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make () = ()
    let error_of_json name json =
      match name with
      | "ConcurrentModificationException" ->
          `ConcurrentModificationException
            (ConcurrentModificationException.of_json json)
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_json json)
      | "InvalidParameterValueException" ->
          `InvalidParameterValueException
            (InvalidParameterValueException.of_json json)
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "ConcurrentModificationException" ->
          `ConcurrentModificationException
            (ConcurrentModificationException.of_xml xml)
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_xml xml)
      | "InvalidParameterValueException" ->
          `InvalidParameterValueException
            (InvalidParameterValueException.of_xml xml)
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `ConcurrentModificationException e ->
          `Assoc
            [("error", (`String "ConcurrentModificationException"));
            ("details", (ConcurrentModificationException.to_json e))]
      | `InternalServerException e ->
          `Assoc
            [("error", (`String "InternalServerException"));
            ("details", (InternalServerException.to_json e))]
      | `InvalidParameterValueException e ->
          `Assoc
            [("error", (`String "InvalidParameterValueException"));
            ("details", (InvalidParameterValueException.to_json e))]
      | `ResourceNotFoundException e ->
          `Assoc
            [("error", (`String "ResourceNotFoundException"));
            ("details", (ResourceNotFoundException.to_json e))]
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let of_header_and_body = ((fun (xs, pipe) -> make ())[@warning "-27"])
    let to_value _ = `Structure []
    let to_query v = to_query to_value v
    let of_xml _ = make ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json _ = make ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Removes a specific tag associated with an Amazon Translate resource. For more information, see Tagging your resources."]
module UntagResourceRequest =
  struct
    type nonrec t =
      {
      resourceArn: ResourceArn.t
        [@ocaml.doc
          "The Amazon Resource Name (ARN) of the given Amazon Translate resource from which you want to remove the tags."];
      tagKeys: TagKeyList.t
        [@ocaml.doc
          "The initial part of a key-value pair that forms a tag being removed from a given resource. Keys must be unique and cannot be duplicated for a particular resource."]}
    let context_ = "UntagResourceRequest"
    let make ~resourceArn =
      fun ~tagKeys -> fun () -> { resourceArn; tagKeys }
    let to_value x =
      structure_to_value
        [("ResourceArn", (Some (ResourceArn.to_value x.resourceArn)));
        ("TagKeys", (Some (TagKeyList.to_value x.tagKeys)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let tagKeys =
        TagKeyList.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "TagKeys") in
      let resourceArn =
        ResourceArn.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "ResourceArn") in
      make ~tagKeys ~resourceArn ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let tagKeys = field_map_exn json__ "TagKeys" TagKeyList.of_json in
      let resourceArn =
        field_map_exn json__ "ResourceArn" ResourceArn.of_json in
      make ~tagKeys ~resourceArn ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Removes a specific tag associated with an Amazon Translate resource. For more information, see Tagging your resources."]
module TranslateTextResponse =
  struct
    type nonrec t =
      {
      translatedText: TranslatedTextString.t option
        [@ocaml.doc "The translated text."];
      sourceLanguageCode: LanguageCodeString.t option
        [@ocaml.doc "The language code for the language of the source text."];
      targetLanguageCode: LanguageCodeString.t option
        [@ocaml.doc "The language code for the language of the target text."];
      appliedTerminologies: AppliedTerminologyList.t option
        [@ocaml.doc
          "The names of the custom terminologies applied to the input text by Amazon Translate for the translated text response."];
      appliedSettings: TranslationSettings.t option
        [@ocaml.doc "Optional settings that modify the translation output."]}
    type nonrec error =
      [
        `DetectedLanguageLowConfidenceException of
          DetectedLanguageLowConfidenceException.t 
      | `InternalServerException of InternalServerException.t 
      | `InvalidRequestException of InvalidRequestException.t 
      | `ResourceNotFoundException of ResourceNotFoundException.t 
      | `ServiceUnavailableException of ServiceUnavailableException.t 
      | `TextSizeLimitExceededException of TextSizeLimitExceededException.t 
      | `TooManyRequestsException of TooManyRequestsException.t 
      | `UnsupportedLanguagePairException of
          UnsupportedLanguagePairException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?translatedText =
      fun ?sourceLanguageCode ->
        fun ?targetLanguageCode ->
          fun ?appliedTerminologies ->
            fun ?appliedSettings ->
              fun () ->
                {
                  translatedText;
                  sourceLanguageCode;
                  targetLanguageCode;
                  appliedTerminologies;
                  appliedSettings
                }
    let error_of_json name json =
      match name with
      | "DetectedLanguageLowConfidenceException" ->
          `DetectedLanguageLowConfidenceException
            (DetectedLanguageLowConfidenceException.of_json json)
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_json json)
      | "InvalidRequestException" ->
          `InvalidRequestException (InvalidRequestException.of_json json)
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_json json)
      | "ServiceUnavailableException" ->
          `ServiceUnavailableException
            (ServiceUnavailableException.of_json json)
      | "TextSizeLimitExceededException" ->
          `TextSizeLimitExceededException
            (TextSizeLimitExceededException.of_json json)
      | "TooManyRequestsException" ->
          `TooManyRequestsException (TooManyRequestsException.of_json json)
      | "UnsupportedLanguagePairException" ->
          `UnsupportedLanguagePairException
            (UnsupportedLanguagePairException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "DetectedLanguageLowConfidenceException" ->
          `DetectedLanguageLowConfidenceException
            (DetectedLanguageLowConfidenceException.of_xml xml)
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_xml xml)
      | "InvalidRequestException" ->
          `InvalidRequestException (InvalidRequestException.of_xml xml)
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_xml xml)
      | "ServiceUnavailableException" ->
          `ServiceUnavailableException
            (ServiceUnavailableException.of_xml xml)
      | "TextSizeLimitExceededException" ->
          `TextSizeLimitExceededException
            (TextSizeLimitExceededException.of_xml xml)
      | "TooManyRequestsException" ->
          `TooManyRequestsException (TooManyRequestsException.of_xml xml)
      | "UnsupportedLanguagePairException" ->
          `UnsupportedLanguagePairException
            (UnsupportedLanguagePairException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `DetectedLanguageLowConfidenceException e ->
          `Assoc
            [("error", (`String "DetectedLanguageLowConfidenceException"));
            ("details", (DetectedLanguageLowConfidenceException.to_json e))]
      | `InternalServerException e ->
          `Assoc
            [("error", (`String "InternalServerException"));
            ("details", (InternalServerException.to_json e))]
      | `InvalidRequestException e ->
          `Assoc
            [("error", (`String "InvalidRequestException"));
            ("details", (InvalidRequestException.to_json e))]
      | `ResourceNotFoundException e ->
          `Assoc
            [("error", (`String "ResourceNotFoundException"));
            ("details", (ResourceNotFoundException.to_json e))]
      | `ServiceUnavailableException e ->
          `Assoc
            [("error", (`String "ServiceUnavailableException"));
            ("details", (ServiceUnavailableException.to_json e))]
      | `TextSizeLimitExceededException e ->
          `Assoc
            [("error", (`String "TextSizeLimitExceededException"));
            ("details", (TextSizeLimitExceededException.to_json e))]
      | `TooManyRequestsException e ->
          `Assoc
            [("error", (`String "TooManyRequestsException"));
            ("details", (TooManyRequestsException.to_json e))]
      | `UnsupportedLanguagePairException e ->
          `Assoc
            [("error", (`String "UnsupportedLanguagePairException"));
            ("details", (UnsupportedLanguagePairException.to_json e))]
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let to_value x =
      structure_to_value
        [("TranslatedText",
           (Option.map x.translatedText ~f:TranslatedTextString.to_value));
        ("SourceLanguageCode",
          (Option.map x.sourceLanguageCode ~f:LanguageCodeString.to_value));
        ("TargetLanguageCode",
          (Option.map x.targetLanguageCode ~f:LanguageCodeString.to_value));
        ("AppliedTerminologies",
          (Option.map x.appliedTerminologies
             ~f:AppliedTerminologyList.to_value));
        ("AppliedSettings",
          (Option.map x.appliedSettings ~f:TranslationSettings.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let appliedSettings =
        (Option.map ~f:TranslationSettings.of_xml)
          (Xml.child xml_arg0 "AppliedSettings") in
      let appliedTerminologies =
        (Option.map ~f:AppliedTerminologyList.of_xml)
          (Xml.child xml_arg0 "AppliedTerminologies") in
      let targetLanguageCode =
        (Option.map ~f:LanguageCodeString.of_xml)
          (Xml.child xml_arg0 "TargetLanguageCode") in
      let sourceLanguageCode =
        (Option.map ~f:LanguageCodeString.of_xml)
          (Xml.child xml_arg0 "SourceLanguageCode") in
      let translatedText =
        (Option.map ~f:TranslatedTextString.of_xml)
          (Xml.child xml_arg0 "TranslatedText") in
      make ?appliedSettings ?appliedTerminologies ?targetLanguageCode
        ?sourceLanguageCode ?translatedText ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let appliedSettings =
        field_map json__ "AppliedSettings" TranslationSettings.of_json in
      let appliedTerminologies =
        field_map json__ "AppliedTerminologies"
          AppliedTerminologyList.of_json in
      let targetLanguageCode =
        field_map json__ "TargetLanguageCode" LanguageCodeString.of_json in
      let sourceLanguageCode =
        field_map json__ "SourceLanguageCode" LanguageCodeString.of_json in
      let translatedText =
        field_map json__ "TranslatedText" TranslatedTextString.of_json in
      make ?appliedSettings ?appliedTerminologies ?targetLanguageCode
        ?sourceLanguageCode ?translatedText ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Translates input text from the source language to the target language. For a list of available languages and language codes, see Supported languages."]
module TranslateTextRequest =
  struct
    type nonrec t =
      {
      text: BoundedLengthString.t
        [@ocaml.doc
          "The text to translate. The text string can be a maximum of 10,000 bytes long. Depending on your character set, this may be fewer than 10,000 characters."];
      terminologyNames: ResourceNameList.t option
        [@ocaml.doc
          "The name of a terminology list file to add to the translation job. This file provides source terms and the desired translation for each term. A terminology list can contain a maximum of 256 terms. You can use one custom terminology resource in your translation request. Use the ListTerminologies operation to get the available terminology lists. For more information about custom terminology lists, see Custom terminology."];
      sourceLanguageCode: LanguageCodeString.t
        [@ocaml.doc
          "The language code for the language of the source text. For a list of language codes, see Supported languages. To have Amazon Translate determine the source language of your text, you can specify auto in the SourceLanguageCode field. If you specify auto, Amazon Translate will call Amazon Comprehend to determine the source language. If you specify auto, you must send the TranslateText request in a region that supports Amazon Comprehend. Otherwise, the request returns an error indicating that autodetect is not supported."];
      targetLanguageCode: LanguageCodeString.t
        [@ocaml.doc
          "The language code requested for the language of the target text. For a list of language codes, see Supported languages."];
      settings: TranslationSettings.t option
        [@ocaml.doc
          "Settings to configure your translation output. You can configure the following options: Brevity: reduces the length of the translated output for most translations. Formality: sets the formality level of the output text. Profanity: masks profane words and phrases in your translation output."]}
    let context_ = "TranslateTextRequest"
    let make ?terminologyNames =
      fun ?settings ->
        fun ~text ->
          fun ~sourceLanguageCode ->
            fun ~targetLanguageCode ->
              fun () ->
                {
                  terminologyNames;
                  settings;
                  text;
                  sourceLanguageCode;
                  targetLanguageCode
                }
    let to_value x =
      structure_to_value
        [("Text", (Some (BoundedLengthString.to_value x.text)));
        ("TerminologyNames",
          (Option.map x.terminologyNames ~f:ResourceNameList.to_value));
        ("SourceLanguageCode",
          (Some (LanguageCodeString.to_value x.sourceLanguageCode)));
        ("TargetLanguageCode",
          (Some (LanguageCodeString.to_value x.targetLanguageCode)));
        ("Settings", (Option.map x.settings ~f:TranslationSettings.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let settings =
        (Option.map ~f:TranslationSettings.of_xml)
          (Xml.child xml_arg0 "Settings") in
      let targetLanguageCode =
        LanguageCodeString.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "TargetLanguageCode") in
      let sourceLanguageCode =
        LanguageCodeString.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "SourceLanguageCode") in
      let terminologyNames =
        (Option.map ~f:ResourceNameList.of_xml)
          (Xml.child xml_arg0 "TerminologyNames") in
      let text =
        BoundedLengthString.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "Text") in
      make ?settings ~targetLanguageCode ~sourceLanguageCode
        ?terminologyNames ~text ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let settings = field_map json__ "Settings" TranslationSettings.of_json in
      let targetLanguageCode =
        field_map_exn json__ "TargetLanguageCode" LanguageCodeString.of_json in
      let sourceLanguageCode =
        field_map_exn json__ "SourceLanguageCode" LanguageCodeString.of_json in
      let terminologyNames =
        field_map json__ "TerminologyNames" ResourceNameList.of_json in
      let text = field_map_exn json__ "Text" BoundedLengthString.of_json in
      make ?settings ~targetLanguageCode ~sourceLanguageCode
        ?terminologyNames ~text ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Translates input text from the source language to the target language. For a list of available languages and language codes, see Supported languages."]
module TranslateDocumentResponse =
  struct
    type nonrec t =
      {
      translatedDocument: TranslatedDocument.t option
        [@ocaml.doc
          "The document containing the translated content. The document format matches the source document format."];
      sourceLanguageCode: LanguageCodeString.t option
        [@ocaml.doc "The language code of the source document."];
      targetLanguageCode: LanguageCodeString.t option
        [@ocaml.doc "The language code of the translated document."];
      appliedTerminologies: AppliedTerminologyList.t option
        [@ocaml.doc
          "The names of the custom terminologies applied to the input text by Amazon Translate to produce the translated text document."];
      appliedSettings: TranslationSettings.t option }
    type nonrec error =
      [ `InternalServerException of InternalServerException.t 
      | `InvalidRequestException of InvalidRequestException.t 
      | `LimitExceededException of LimitExceededException.t 
      | `ResourceNotFoundException of ResourceNotFoundException.t 
      | `ServiceUnavailableException of ServiceUnavailableException.t 
      | `TooManyRequestsException of TooManyRequestsException.t 
      | `UnsupportedLanguagePairException of
          UnsupportedLanguagePairException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?translatedDocument =
      fun ?sourceLanguageCode ->
        fun ?targetLanguageCode ->
          fun ?appliedTerminologies ->
            fun ?appliedSettings ->
              fun () ->
                {
                  translatedDocument;
                  sourceLanguageCode;
                  targetLanguageCode;
                  appliedTerminologies;
                  appliedSettings
                }
    let error_of_json name json =
      match name with
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_json json)
      | "InvalidRequestException" ->
          `InvalidRequestException (InvalidRequestException.of_json json)
      | "LimitExceededException" ->
          `LimitExceededException (LimitExceededException.of_json json)
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_json json)
      | "ServiceUnavailableException" ->
          `ServiceUnavailableException
            (ServiceUnavailableException.of_json json)
      | "TooManyRequestsException" ->
          `TooManyRequestsException (TooManyRequestsException.of_json json)
      | "UnsupportedLanguagePairException" ->
          `UnsupportedLanguagePairException
            (UnsupportedLanguagePairException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_xml xml)
      | "InvalidRequestException" ->
          `InvalidRequestException (InvalidRequestException.of_xml xml)
      | "LimitExceededException" ->
          `LimitExceededException (LimitExceededException.of_xml xml)
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_xml xml)
      | "ServiceUnavailableException" ->
          `ServiceUnavailableException
            (ServiceUnavailableException.of_xml xml)
      | "TooManyRequestsException" ->
          `TooManyRequestsException (TooManyRequestsException.of_xml xml)
      | "UnsupportedLanguagePairException" ->
          `UnsupportedLanguagePairException
            (UnsupportedLanguagePairException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `InternalServerException e ->
          `Assoc
            [("error", (`String "InternalServerException"));
            ("details", (InternalServerException.to_json e))]
      | `InvalidRequestException e ->
          `Assoc
            [("error", (`String "InvalidRequestException"));
            ("details", (InvalidRequestException.to_json e))]
      | `LimitExceededException e ->
          `Assoc
            [("error", (`String "LimitExceededException"));
            ("details", (LimitExceededException.to_json e))]
      | `ResourceNotFoundException e ->
          `Assoc
            [("error", (`String "ResourceNotFoundException"));
            ("details", (ResourceNotFoundException.to_json e))]
      | `ServiceUnavailableException e ->
          `Assoc
            [("error", (`String "ServiceUnavailableException"));
            ("details", (ServiceUnavailableException.to_json e))]
      | `TooManyRequestsException e ->
          `Assoc
            [("error", (`String "TooManyRequestsException"));
            ("details", (TooManyRequestsException.to_json e))]
      | `UnsupportedLanguagePairException e ->
          `Assoc
            [("error", (`String "UnsupportedLanguagePairException"));
            ("details", (UnsupportedLanguagePairException.to_json e))]
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let to_value x =
      structure_to_value
        [("TranslatedDocument",
           (Option.map x.translatedDocument ~f:TranslatedDocument.to_value));
        ("SourceLanguageCode",
          (Option.map x.sourceLanguageCode ~f:LanguageCodeString.to_value));
        ("TargetLanguageCode",
          (Option.map x.targetLanguageCode ~f:LanguageCodeString.to_value));
        ("AppliedTerminologies",
          (Option.map x.appliedTerminologies
             ~f:AppliedTerminologyList.to_value));
        ("AppliedSettings",
          (Option.map x.appliedSettings ~f:TranslationSettings.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let appliedSettings =
        (Option.map ~f:TranslationSettings.of_xml)
          (Xml.child xml_arg0 "AppliedSettings") in
      let appliedTerminologies =
        (Option.map ~f:AppliedTerminologyList.of_xml)
          (Xml.child xml_arg0 "AppliedTerminologies") in
      let targetLanguageCode =
        (Option.map ~f:LanguageCodeString.of_xml)
          (Xml.child xml_arg0 "TargetLanguageCode") in
      let sourceLanguageCode =
        (Option.map ~f:LanguageCodeString.of_xml)
          (Xml.child xml_arg0 "SourceLanguageCode") in
      let translatedDocument =
        (Option.map ~f:TranslatedDocument.of_xml)
          (Xml.child xml_arg0 "TranslatedDocument") in
      make ?appliedSettings ?appliedTerminologies ?targetLanguageCode
        ?sourceLanguageCode ?translatedDocument ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let appliedSettings =
        field_map json__ "AppliedSettings" TranslationSettings.of_json in
      let appliedTerminologies =
        field_map json__ "AppliedTerminologies"
          AppliedTerminologyList.of_json in
      let targetLanguageCode =
        field_map json__ "TargetLanguageCode" LanguageCodeString.of_json in
      let sourceLanguageCode =
        field_map json__ "SourceLanguageCode" LanguageCodeString.of_json in
      let translatedDocument =
        field_map json__ "TranslatedDocument" TranslatedDocument.of_json in
      make ?appliedSettings ?appliedTerminologies ?targetLanguageCode
        ?sourceLanguageCode ?translatedDocument ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Translates the input document from the source language to the target language. This synchronous operation supports text, HTML, or Word documents as the input document. TranslateDocument supports translations from English to any supported language, and from any supported language to English. Therefore, specify either the source language code or the target language code as \226\128\156en\226\128\157 (English). If you set the Formality parameter, the request will fail if the target language does not support formality. For a list of target languages that support formality, see Setting formality."]
module TranslateDocumentRequest =
  struct
    type nonrec t =
      {
      document: Document.t
        [@ocaml.doc
          "The content and content type for the document to be translated. The document size must not exceed 100 KB."];
      terminologyNames: ResourceNameList.t option
        [@ocaml.doc
          "The name of a terminology list file to add to the translation job. This file provides source terms and the desired translation for each term. A terminology list can contain a maximum of 256 terms. You can use one custom terminology resource in your translation request. Use the ListTerminologies operation to get the available terminology lists. For more information about custom terminology lists, see Custom terminology."];
      sourceLanguageCode: LanguageCodeString.t
        [@ocaml.doc
          "The language code for the language of the source text. For a list of supported language codes, see Supported languages. To have Amazon Translate determine the source language of your text, you can specify auto in the SourceLanguageCode field. If you specify auto, Amazon Translate will call Amazon Comprehend to determine the source language. If you specify auto, you must send the TranslateDocument request in a region that supports Amazon Comprehend. Otherwise, the request returns an error indicating that autodetect is not supported."];
      targetLanguageCode: LanguageCodeString.t
        [@ocaml.doc
          "The language code requested for the translated document. For a list of supported language codes, see Supported languages."];
      settings: TranslationSettings.t option
        [@ocaml.doc
          "Settings to configure your translation output. You can configure the following options: Brevity: not supported. Formality: sets the formality level of the output text. Profanity: masks profane words and phrases in your translation output."]}
    let context_ = "TranslateDocumentRequest"
    let make ?terminologyNames =
      fun ?settings ->
        fun ~document ->
          fun ~sourceLanguageCode ->
            fun ~targetLanguageCode ->
              fun () ->
                {
                  terminologyNames;
                  settings;
                  document;
                  sourceLanguageCode;
                  targetLanguageCode
                }
    let to_value x =
      structure_to_value
        [("Document", (Some (Document.to_value x.document)));
        ("TerminologyNames",
          (Option.map x.terminologyNames ~f:ResourceNameList.to_value));
        ("SourceLanguageCode",
          (Some (LanguageCodeString.to_value x.sourceLanguageCode)));
        ("TargetLanguageCode",
          (Some (LanguageCodeString.to_value x.targetLanguageCode)));
        ("Settings", (Option.map x.settings ~f:TranslationSettings.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let settings =
        (Option.map ~f:TranslationSettings.of_xml)
          (Xml.child xml_arg0 "Settings") in
      let targetLanguageCode =
        LanguageCodeString.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "TargetLanguageCode") in
      let sourceLanguageCode =
        LanguageCodeString.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "SourceLanguageCode") in
      let terminologyNames =
        (Option.map ~f:ResourceNameList.of_xml)
          (Xml.child xml_arg0 "TerminologyNames") in
      let document =
        Document.of_xml (Xml.child_exn ~context:context_ xml_arg0 "Document") in
      make ?settings ~targetLanguageCode ~sourceLanguageCode
        ?terminologyNames ~document ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let settings = field_map json__ "Settings" TranslationSettings.of_json in
      let targetLanguageCode =
        field_map_exn json__ "TargetLanguageCode" LanguageCodeString.of_json in
      let sourceLanguageCode =
        field_map_exn json__ "SourceLanguageCode" LanguageCodeString.of_json in
      let terminologyNames =
        field_map json__ "TerminologyNames" ResourceNameList.of_json in
      let document = field_map_exn json__ "Document" Document.of_json in
      make ?settings ~targetLanguageCode ~sourceLanguageCode
        ?terminologyNames ~document ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Translates the input document from the source language to the target language. This synchronous operation supports text, HTML, or Word documents as the input document. TranslateDocument supports translations from English to any supported language, and from any supported language to English. Therefore, specify either the source language code or the target language code as \226\128\156en\226\128\157 (English). If you set the Formality parameter, the request will fail if the target language does not support formality. For a list of target languages that support formality, see Setting formality."]
module TagResourceResponse =
  struct
    type nonrec t = unit
    type nonrec error =
      [
        `ConcurrentModificationException of ConcurrentModificationException.t 
      | `InternalServerException of InternalServerException.t 
      | `InvalidParameterValueException of InvalidParameterValueException.t 
      | `ResourceNotFoundException of ResourceNotFoundException.t 
      | `TooManyTagsException of TooManyTagsException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make () = ()
    let error_of_json name json =
      match name with
      | "ConcurrentModificationException" ->
          `ConcurrentModificationException
            (ConcurrentModificationException.of_json json)
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_json json)
      | "InvalidParameterValueException" ->
          `InvalidParameterValueException
            (InvalidParameterValueException.of_json json)
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_json json)
      | "TooManyTagsException" ->
          `TooManyTagsException (TooManyTagsException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "ConcurrentModificationException" ->
          `ConcurrentModificationException
            (ConcurrentModificationException.of_xml xml)
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_xml xml)
      | "InvalidParameterValueException" ->
          `InvalidParameterValueException
            (InvalidParameterValueException.of_xml xml)
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_xml xml)
      | "TooManyTagsException" ->
          `TooManyTagsException (TooManyTagsException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `ConcurrentModificationException e ->
          `Assoc
            [("error", (`String "ConcurrentModificationException"));
            ("details", (ConcurrentModificationException.to_json e))]
      | `InternalServerException e ->
          `Assoc
            [("error", (`String "InternalServerException"));
            ("details", (InternalServerException.to_json e))]
      | `InvalidParameterValueException e ->
          `Assoc
            [("error", (`String "InvalidParameterValueException"));
            ("details", (InvalidParameterValueException.to_json e))]
      | `ResourceNotFoundException e ->
          `Assoc
            [("error", (`String "ResourceNotFoundException"));
            ("details", (ResourceNotFoundException.to_json e))]
      | `TooManyTagsException e ->
          `Assoc
            [("error", (`String "TooManyTagsException"));
            ("details", (TooManyTagsException.to_json e))]
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let of_header_and_body = ((fun (xs, pipe) -> make ())[@warning "-27"])
    let to_value _ = `Structure []
    let to_query v = to_query to_value v
    let of_xml _ = make ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json _ = make ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Associates a specific tag with a resource. A tag is a key-value pair that adds as a metadata to a resource. For more information, see Tagging your resources."]
module TagResourceRequest =
  struct
    type nonrec t =
      {
      resourceArn: ResourceArn.t
        [@ocaml.doc
          "The Amazon Resource Name (ARN) of the given Amazon Translate resource to which you want to associate the tags."];
      tags: TagList.t
        [@ocaml.doc
          "Tags being associated with a specific Amazon Translate resource. There can be a maximum of 50 tags (both existing and pending) associated with a specific resource."]}
    let context_ = "TagResourceRequest"
    let make ~resourceArn = fun ~tags -> fun () -> { resourceArn; tags }
    let to_value x =
      structure_to_value
        [("ResourceArn", (Some (ResourceArn.to_value x.resourceArn)));
        ("Tags", (Some (TagList.to_value x.tags)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let tags =
        TagList.of_xml (Xml.child_exn ~context:context_ xml_arg0 "Tags") in
      let resourceArn =
        ResourceArn.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "ResourceArn") in
      make ~tags ~resourceArn ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let tags = field_map_exn json__ "Tags" TagList.of_json in
      let resourceArn =
        field_map_exn json__ "ResourceArn" ResourceArn.of_json in
      make ~tags ~resourceArn ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Associates a specific tag with a resource. A tag is a key-value pair that adds as a metadata to a resource. For more information, see Tagging your resources."]
module StopTextTranslationJobResponse =
  struct
    type nonrec t =
      {
      jobId: JobId.t option
        [@ocaml.doc "The job ID of the stopped batch translation job."];
      jobStatus: JobStatus.t option
        [@ocaml.doc
          "The status of the designated job. Upon successful completion, the job's status will be STOPPED."]}
    type nonrec error =
      [ `InternalServerException of InternalServerException.t 
      | `ResourceNotFoundException of ResourceNotFoundException.t 
      | `TooManyRequestsException of TooManyRequestsException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?jobId = fun ?jobStatus -> fun () -> { jobId; jobStatus }
    let error_of_json name json =
      match name with
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_json json)
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_json json)
      | "TooManyRequestsException" ->
          `TooManyRequestsException (TooManyRequestsException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_xml xml)
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_xml xml)
      | "TooManyRequestsException" ->
          `TooManyRequestsException (TooManyRequestsException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `InternalServerException e ->
          `Assoc
            [("error", (`String "InternalServerException"));
            ("details", (InternalServerException.to_json e))]
      | `ResourceNotFoundException e ->
          `Assoc
            [("error", (`String "ResourceNotFoundException"));
            ("details", (ResourceNotFoundException.to_json e))]
      | `TooManyRequestsException e ->
          `Assoc
            [("error", (`String "TooManyRequestsException"));
            ("details", (TooManyRequestsException.to_json e))]
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let to_value x =
      structure_to_value
        [("JobId", (Option.map x.jobId ~f:JobId.to_value));
        ("JobStatus", (Option.map x.jobStatus ~f:JobStatus.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let jobStatus =
        (Option.map ~f:JobStatus.of_xml) (Xml.child xml_arg0 "JobStatus") in
      let jobId = (Option.map ~f:JobId.of_xml) (Xml.child xml_arg0 "JobId") in
      make ?jobStatus ?jobId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let jobStatus = field_map json__ "JobStatus" JobStatus.of_json in
      let jobId = field_map json__ "JobId" JobId.of_json in
      make ?jobStatus ?jobId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Stops an asynchronous batch translation job that is in progress. If the job's state is IN_PROGRESS, the job will be marked for termination and put into the STOP_REQUESTED state. If the job completes before it can be stopped, it is put into the COMPLETED state. Otherwise, the job is put into the STOPPED state. Asynchronous batch translation jobs are started with the StartTextTranslationJob operation. You can use the DescribeTextTranslationJob or ListTextTranslationJobs operations to get a batch translation job's JobId."]
module StopTextTranslationJobRequest =
  struct
    type nonrec t =
      {
      jobId: JobId.t [@ocaml.doc "The job ID of the job to be stopped."]}
    let context_ = "StopTextTranslationJobRequest"
    let make ~jobId = fun () -> { jobId }
    let to_value x =
      structure_to_value [("JobId", (Some (JobId.to_value x.jobId)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let jobId =
        JobId.of_xml (Xml.child_exn ~context:context_ xml_arg0 "JobId") in
      make ~jobId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let jobId = field_map_exn json__ "JobId" JobId.of_json in
      make ~jobId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Stops an asynchronous batch translation job that is in progress. If the job's state is IN_PROGRESS, the job will be marked for termination and put into the STOP_REQUESTED state. If the job completes before it can be stopped, it is put into the COMPLETED state. Otherwise, the job is put into the STOPPED state. Asynchronous batch translation jobs are started with the StartTextTranslationJob operation. You can use the DescribeTextTranslationJob or ListTextTranslationJobs operations to get a batch translation job's JobId."]
module StartTextTranslationJobResponse =
  struct
    type nonrec t =
      {
      jobId: JobId.t option
        [@ocaml.doc
          "The identifier generated for the job. To get the status of a job, use this ID with the DescribeTextTranslationJob operation."];
      jobStatus: JobStatus.t option
        [@ocaml.doc
          "The status of the job. Possible values include: SUBMITTED - The job has been received and is queued for processing. IN_PROGRESS - Amazon Translate is processing the job. COMPLETED - The job was successfully completed and the output is available. COMPLETED_WITH_ERROR - The job was completed with errors. The errors can be analyzed in the job's output. FAILED - The job did not complete. To get details, use the DescribeTextTranslationJob operation. STOP_REQUESTED - The user who started the job has requested that it be stopped. STOPPED - The job has been stopped."]}
    type nonrec error =
      [ `InternalServerException of InternalServerException.t 
      | `InvalidParameterValueException of InvalidParameterValueException.t 
      | `InvalidRequestException of InvalidRequestException.t 
      | `ResourceNotFoundException of ResourceNotFoundException.t 
      | `TooManyRequestsException of TooManyRequestsException.t 
      | `UnsupportedLanguagePairException of
          UnsupportedLanguagePairException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?jobId = fun ?jobStatus -> fun () -> { jobId; jobStatus }
    let error_of_json name json =
      match name with
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_json json)
      | "InvalidParameterValueException" ->
          `InvalidParameterValueException
            (InvalidParameterValueException.of_json json)
      | "InvalidRequestException" ->
          `InvalidRequestException (InvalidRequestException.of_json json)
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_json json)
      | "TooManyRequestsException" ->
          `TooManyRequestsException (TooManyRequestsException.of_json json)
      | "UnsupportedLanguagePairException" ->
          `UnsupportedLanguagePairException
            (UnsupportedLanguagePairException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_xml xml)
      | "InvalidParameterValueException" ->
          `InvalidParameterValueException
            (InvalidParameterValueException.of_xml xml)
      | "InvalidRequestException" ->
          `InvalidRequestException (InvalidRequestException.of_xml xml)
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_xml xml)
      | "TooManyRequestsException" ->
          `TooManyRequestsException (TooManyRequestsException.of_xml xml)
      | "UnsupportedLanguagePairException" ->
          `UnsupportedLanguagePairException
            (UnsupportedLanguagePairException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `InternalServerException e ->
          `Assoc
            [("error", (`String "InternalServerException"));
            ("details", (InternalServerException.to_json e))]
      | `InvalidParameterValueException e ->
          `Assoc
            [("error", (`String "InvalidParameterValueException"));
            ("details", (InvalidParameterValueException.to_json e))]
      | `InvalidRequestException e ->
          `Assoc
            [("error", (`String "InvalidRequestException"));
            ("details", (InvalidRequestException.to_json e))]
      | `ResourceNotFoundException e ->
          `Assoc
            [("error", (`String "ResourceNotFoundException"));
            ("details", (ResourceNotFoundException.to_json e))]
      | `TooManyRequestsException e ->
          `Assoc
            [("error", (`String "TooManyRequestsException"));
            ("details", (TooManyRequestsException.to_json e))]
      | `UnsupportedLanguagePairException e ->
          `Assoc
            [("error", (`String "UnsupportedLanguagePairException"));
            ("details", (UnsupportedLanguagePairException.to_json e))]
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let to_value x =
      structure_to_value
        [("JobId", (Option.map x.jobId ~f:JobId.to_value));
        ("JobStatus", (Option.map x.jobStatus ~f:JobStatus.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let jobStatus =
        (Option.map ~f:JobStatus.of_xml) (Xml.child xml_arg0 "JobStatus") in
      let jobId = (Option.map ~f:JobId.of_xml) (Xml.child xml_arg0 "JobId") in
      make ?jobStatus ?jobId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let jobStatus = field_map json__ "JobStatus" JobStatus.of_json in
      let jobId = field_map json__ "JobId" JobId.of_json in
      make ?jobStatus ?jobId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Starts an asynchronous batch translation job. Use batch translation jobs to translate large volumes of text across multiple documents at once. For batch translation, you can input documents with different source languages (specify auto as the source language). You can specify one or more target languages. Batch translation translates each input document into each of the target languages. For more information, see Asynchronous batch processing. Batch translation jobs can be described with the DescribeTextTranslationJob operation, listed with the ListTextTranslationJobs operation, and stopped with the StopTextTranslationJob operation."]
module StartTextTranslationJobRequest =
  struct
    type nonrec t =
      {
      jobName: JobName.t option
        [@ocaml.doc "The name of the batch translation job to be performed."];
      inputDataConfig: InputDataConfig.t
        [@ocaml.doc
          "Specifies the format and location of the input documents for the translation job."];
      outputDataConfig: OutputDataConfig.t
        [@ocaml.doc
          "Specifies the S3 folder to which your job output will be saved."];
      dataAccessRoleArn: IamRoleArn.t
        [@ocaml.doc
          "The Amazon Resource Name (ARN) of an AWS Identity Access and Management (IAM) role that grants Amazon Translate read access to your input data. For more information, see Identity and access management ."];
      sourceLanguageCode: LanguageCodeString.t
        [@ocaml.doc
          "The language code of the input language. Specify the language if all input documents share the same language. If you don't know the language of the source files, or your input documents contains different source languages, select auto. Amazon Translate auto detects the source language for each input document. For a list of supported language codes, see Supported languages."];
      targetLanguageCodes: TargetLanguageCodeStringList.t
        [@ocaml.doc
          "The target languages of the translation job. Enter up to 10 language codes. Each input file is translated into each target language. Each language code is 2 or 5 characters long. For a list of language codes, see Supported languages."];
      terminologyNames: ResourceNameList.t option
        [@ocaml.doc
          "The name of a custom terminology resource to add to the translation job. This resource lists examples source terms and the desired translation for each term. This parameter accepts only one custom terminology resource. If you specify multiple target languages for the job, translate uses the designated terminology for each requested target language that has an entry for the source term in the terminology file. For a list of available custom terminology resources, use the ListTerminologies operation. For more information, see Custom terminology."];
      parallelDataNames: ResourceNameList.t option
        [@ocaml.doc
          "The name of a parallel data resource to add to the translation job. This resource consists of examples that show how you want segments of text to be translated. If you specify multiple target languages for the job, the parallel data file must include translations for all the target languages. When you add parallel data to a translation job, you create an Active Custom Translation job. This parameter accepts only one parallel data resource. Active Custom Translation jobs are priced at a higher rate than other jobs that don't use parallel data. For more information, see Amazon Translate pricing. For a list of available parallel data resources, use the ListParallelData operation. For more information, see Customizing your translations with parallel data."];
      clientToken: ClientTokenString.t
        [@ocaml.doc
          "A unique identifier for the request. This token is generated for you when using the Amazon Translate SDK."];
      settings: TranslationSettings.t option
        [@ocaml.doc
          "Settings to configure your translation output. You can configure the following options: Brevity: not supported. Formality: sets the formality level of the output text. Profanity: masks profane words and phrases in your translation output."]}
    let context_ = "StartTextTranslationJobRequest"
    let make ?jobName =
      fun ?terminologyNames ->
        fun ?parallelDataNames ->
          fun ?settings ->
            fun ~inputDataConfig ->
              fun ~outputDataConfig ->
                fun ~dataAccessRoleArn ->
                  fun ~sourceLanguageCode ->
                    fun ~targetLanguageCodes ->
                      fun ~clientToken ->
                        fun () ->
                          {
                            jobName;
                            terminologyNames;
                            parallelDataNames;
                            settings;
                            inputDataConfig;
                            outputDataConfig;
                            dataAccessRoleArn;
                            sourceLanguageCode;
                            targetLanguageCodes;
                            clientToken
                          }
    let to_value x =
      structure_to_value
        [("JobName", (Option.map x.jobName ~f:JobName.to_value));
        ("InputDataConfig",
          (Some (InputDataConfig.to_value x.inputDataConfig)));
        ("OutputDataConfig",
          (Some (OutputDataConfig.to_value x.outputDataConfig)));
        ("DataAccessRoleArn",
          (Some (IamRoleArn.to_value x.dataAccessRoleArn)));
        ("SourceLanguageCode",
          (Some (LanguageCodeString.to_value x.sourceLanguageCode)));
        ("TargetLanguageCodes",
          (Some (TargetLanguageCodeStringList.to_value x.targetLanguageCodes)));
        ("TerminologyNames",
          (Option.map x.terminologyNames ~f:ResourceNameList.to_value));
        ("ParallelDataNames",
          (Option.map x.parallelDataNames ~f:ResourceNameList.to_value));
        ("ClientToken", (Some (ClientTokenString.to_value x.clientToken)));
        ("Settings", (Option.map x.settings ~f:TranslationSettings.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let settings =
        (Option.map ~f:TranslationSettings.of_xml)
          (Xml.child xml_arg0 "Settings") in
      let clientToken =
        ClientTokenString.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "ClientToken") in
      let parallelDataNames =
        (Option.map ~f:ResourceNameList.of_xml)
          (Xml.child xml_arg0 "ParallelDataNames") in
      let terminologyNames =
        (Option.map ~f:ResourceNameList.of_xml)
          (Xml.child xml_arg0 "TerminologyNames") in
      let targetLanguageCodes =
        TargetLanguageCodeStringList.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "TargetLanguageCodes") in
      let sourceLanguageCode =
        LanguageCodeString.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "SourceLanguageCode") in
      let dataAccessRoleArn =
        IamRoleArn.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "DataAccessRoleArn") in
      let outputDataConfig =
        OutputDataConfig.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "OutputDataConfig") in
      let inputDataConfig =
        InputDataConfig.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "InputDataConfig") in
      let jobName =
        (Option.map ~f:JobName.of_xml) (Xml.child xml_arg0 "JobName") in
      make ?settings ~clientToken ?parallelDataNames ?terminologyNames
        ~targetLanguageCodes ~sourceLanguageCode ~dataAccessRoleArn
        ~outputDataConfig ~inputDataConfig ?jobName ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let settings = field_map json__ "Settings" TranslationSettings.of_json in
      let clientToken =
        field_map_exn json__ "ClientToken" ClientTokenString.of_json in
      let parallelDataNames =
        field_map json__ "ParallelDataNames" ResourceNameList.of_json in
      let terminologyNames =
        field_map json__ "TerminologyNames" ResourceNameList.of_json in
      let targetLanguageCodes =
        field_map_exn json__ "TargetLanguageCodes"
          TargetLanguageCodeStringList.of_json in
      let sourceLanguageCode =
        field_map_exn json__ "SourceLanguageCode" LanguageCodeString.of_json in
      let dataAccessRoleArn =
        field_map_exn json__ "DataAccessRoleArn" IamRoleArn.of_json in
      let outputDataConfig =
        field_map_exn json__ "OutputDataConfig" OutputDataConfig.of_json in
      let inputDataConfig =
        field_map_exn json__ "InputDataConfig" InputDataConfig.of_json in
      let jobName = field_map json__ "JobName" JobName.of_json in
      make ?settings ~clientToken ?parallelDataNames ?terminologyNames
        ~targetLanguageCodes ~sourceLanguageCode ~dataAccessRoleArn
        ~outputDataConfig ~inputDataConfig ?jobName ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Starts an asynchronous batch translation job. Use batch translation jobs to translate large volumes of text across multiple documents at once. For batch translation, you can input documents with different source languages (specify auto as the source language). You can specify one or more target languages. Batch translation translates each input document into each of the target languages. For more information, see Asynchronous batch processing. Batch translation jobs can be described with the DescribeTextTranslationJob operation, listed with the ListTextTranslationJobs operation, and stopped with the StopTextTranslationJob operation."]
module ListTextTranslationJobsResponse =
  struct
    type nonrec t =
      {
      textTranslationJobPropertiesList:
        TextTranslationJobPropertiesList.t option
        [@ocaml.doc
          "A list containing the properties of each job that is returned."];
      nextToken: NextToken.t option
        [@ocaml.doc
          "The token to use to retrieve the next page of results. This value is null when there are no more results to return."]}
    type nonrec error =
      [ `InternalServerException of InternalServerException.t 
      | `InvalidFilterException of InvalidFilterException.t 
      | `InvalidRequestException of InvalidRequestException.t 
      | `TooManyRequestsException of TooManyRequestsException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?textTranslationJobPropertiesList =
      fun ?nextToken ->
        fun () -> { textTranslationJobPropertiesList; nextToken }
    let error_of_json name json =
      match name with
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_json json)
      | "InvalidFilterException" ->
          `InvalidFilterException (InvalidFilterException.of_json json)
      | "InvalidRequestException" ->
          `InvalidRequestException (InvalidRequestException.of_json json)
      | "TooManyRequestsException" ->
          `TooManyRequestsException (TooManyRequestsException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_xml xml)
      | "InvalidFilterException" ->
          `InvalidFilterException (InvalidFilterException.of_xml xml)
      | "InvalidRequestException" ->
          `InvalidRequestException (InvalidRequestException.of_xml xml)
      | "TooManyRequestsException" ->
          `TooManyRequestsException (TooManyRequestsException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `InternalServerException e ->
          `Assoc
            [("error", (`String "InternalServerException"));
            ("details", (InternalServerException.to_json e))]
      | `InvalidFilterException e ->
          `Assoc
            [("error", (`String "InvalidFilterException"));
            ("details", (InvalidFilterException.to_json e))]
      | `InvalidRequestException e ->
          `Assoc
            [("error", (`String "InvalidRequestException"));
            ("details", (InvalidRequestException.to_json e))]
      | `TooManyRequestsException e ->
          `Assoc
            [("error", (`String "TooManyRequestsException"));
            ("details", (TooManyRequestsException.to_json e))]
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let to_value x =
      structure_to_value
        [("TextTranslationJobPropertiesList",
           (Option.map x.textTranslationJobPropertiesList
              ~f:TextTranslationJobPropertiesList.to_value));
        ("NextToken", (Option.map x.nextToken ~f:NextToken.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let nextToken =
        (Option.map ~f:NextToken.of_xml) (Xml.child xml_arg0 "NextToken") in
      let textTranslationJobPropertiesList =
        (Option.map ~f:TextTranslationJobPropertiesList.of_xml)
          (Xml.child xml_arg0 "TextTranslationJobPropertiesList") in
      make ?nextToken ?textTranslationJobPropertiesList ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let nextToken = field_map json__ "NextToken" NextToken.of_json in
      let textTranslationJobPropertiesList =
        field_map json__ "TextTranslationJobPropertiesList"
          TextTranslationJobPropertiesList.of_json in
      make ?nextToken ?textTranslationJobPropertiesList ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Gets a list of the batch translation jobs that you have submitted."]
module ListTextTranslationJobsRequest =
  struct
    type nonrec t =
      {
      filter: TextTranslationJobFilter.t option
        [@ocaml.doc
          "The parameters that specify which batch translation jobs to retrieve. Filters include job name, job status, and submission time. You can only set one filter at a time."];
      nextToken: NextToken.t option
        [@ocaml.doc "The token to request the next page of results."];
      maxResults: MaxResultsInteger.t option
        [@ocaml.doc
          "The maximum number of results to return in each page. The default value is 100."]}
    let make ?filter =
      fun ?nextToken ->
        fun ?maxResults -> fun () -> { filter; nextToken; maxResults }
    let to_value x =
      structure_to_value
        [("Filter",
           (Option.map x.filter ~f:TextTranslationJobFilter.to_value));
        ("NextToken", (Option.map x.nextToken ~f:NextToken.to_value));
        ("MaxResults",
          (Option.map x.maxResults ~f:MaxResultsInteger.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let maxResults =
        (Option.map ~f:MaxResultsInteger.of_xml)
          (Xml.child xml_arg0 "MaxResults") in
      let nextToken =
        (Option.map ~f:NextToken.of_xml) (Xml.child xml_arg0 "NextToken") in
      let filter =
        (Option.map ~f:TextTranslationJobFilter.of_xml)
          (Xml.child xml_arg0 "Filter") in
      make ?maxResults ?nextToken ?filter ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let maxResults =
        field_map json__ "MaxResults" MaxResultsInteger.of_json in
      let nextToken = field_map json__ "NextToken" NextToken.of_json in
      let filter = field_map json__ "Filter" TextTranslationJobFilter.of_json in
      make ?maxResults ?nextToken ?filter ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Gets a list of the batch translation jobs that you have submitted."]
module ListTerminologiesResponse =
  struct
    type nonrec t =
      {
      terminologyPropertiesList: TerminologyPropertiesList.t option
        [@ocaml.doc
          "The properties list of the custom terminologies returned on the list request."];
      nextToken: NextToken.t option
        [@ocaml.doc
          "If the response to the ListTerminologies was truncated, the NextToken fetches the next group of custom terminologies."]}
    type nonrec error =
      [ `InternalServerException of InternalServerException.t 
      | `InvalidParameterValueException of InvalidParameterValueException.t 
      | `TooManyRequestsException of TooManyRequestsException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?terminologyPropertiesList =
      fun ?nextToken -> fun () -> { terminologyPropertiesList; nextToken }
    let error_of_json name json =
      match name with
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_json json)
      | "InvalidParameterValueException" ->
          `InvalidParameterValueException
            (InvalidParameterValueException.of_json json)
      | "TooManyRequestsException" ->
          `TooManyRequestsException (TooManyRequestsException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_xml xml)
      | "InvalidParameterValueException" ->
          `InvalidParameterValueException
            (InvalidParameterValueException.of_xml xml)
      | "TooManyRequestsException" ->
          `TooManyRequestsException (TooManyRequestsException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `InternalServerException e ->
          `Assoc
            [("error", (`String "InternalServerException"));
            ("details", (InternalServerException.to_json e))]
      | `InvalidParameterValueException e ->
          `Assoc
            [("error", (`String "InvalidParameterValueException"));
            ("details", (InvalidParameterValueException.to_json e))]
      | `TooManyRequestsException e ->
          `Assoc
            [("error", (`String "TooManyRequestsException"));
            ("details", (TooManyRequestsException.to_json e))]
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let to_value x =
      structure_to_value
        [("TerminologyPropertiesList",
           (Option.map x.terminologyPropertiesList
              ~f:TerminologyPropertiesList.to_value));
        ("NextToken", (Option.map x.nextToken ~f:NextToken.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let nextToken =
        (Option.map ~f:NextToken.of_xml) (Xml.child xml_arg0 "NextToken") in
      let terminologyPropertiesList =
        (Option.map ~f:TerminologyPropertiesList.of_xml)
          (Xml.child xml_arg0 "TerminologyPropertiesList") in
      make ?nextToken ?terminologyPropertiesList ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let nextToken = field_map json__ "NextToken" NextToken.of_json in
      let terminologyPropertiesList =
        field_map json__ "TerminologyPropertiesList"
          TerminologyPropertiesList.of_json in
      make ?nextToken ?terminologyPropertiesList ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Provides a list of custom terminologies associated with your account."]
module ListTerminologiesRequest =
  struct
    type nonrec t =
      {
      nextToken: NextToken.t option
        [@ocaml.doc
          "If the result of the request to ListTerminologies was truncated, include the NextToken to fetch the next group of custom terminologies."];
      maxResults: MaxResultsInteger.t option
        [@ocaml.doc
          "The maximum number of custom terminologies returned per list request."]}
    let make ?nextToken =
      fun ?maxResults -> fun () -> { nextToken; maxResults }
    let to_value x =
      structure_to_value
        [("NextToken", (Option.map x.nextToken ~f:NextToken.to_value));
        ("MaxResults",
          (Option.map x.maxResults ~f:MaxResultsInteger.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let maxResults =
        (Option.map ~f:MaxResultsInteger.of_xml)
          (Xml.child xml_arg0 "MaxResults") in
      let nextToken =
        (Option.map ~f:NextToken.of_xml) (Xml.child xml_arg0 "NextToken") in
      make ?maxResults ?nextToken ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let maxResults =
        field_map json__ "MaxResults" MaxResultsInteger.of_json in
      let nextToken = field_map json__ "NextToken" NextToken.of_json in
      make ?maxResults ?nextToken ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Provides a list of custom terminologies associated with your account."]
module ListTagsForResourceResponse =
  struct
    type nonrec t =
      {
      tags: TagList.t option
        [@ocaml.doc
          "Tags associated with the Amazon Translate resource being queried. A tag is a key-value pair that adds as a metadata to a resource used by Amazon Translate. For example, a tag with \"Sales\" as the key might be added to a resource to indicate its use by the sales department."]}
    type nonrec error =
      [ `InternalServerException of InternalServerException.t 
      | `InvalidParameterValueException of InvalidParameterValueException.t 
      | `ResourceNotFoundException of ResourceNotFoundException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?tags = fun () -> { tags }
    let error_of_json name json =
      match name with
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_json json)
      | "InvalidParameterValueException" ->
          `InvalidParameterValueException
            (InvalidParameterValueException.of_json json)
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_xml xml)
      | "InvalidParameterValueException" ->
          `InvalidParameterValueException
            (InvalidParameterValueException.of_xml xml)
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `InternalServerException e ->
          `Assoc
            [("error", (`String "InternalServerException"));
            ("details", (InternalServerException.to_json e))]
      | `InvalidParameterValueException e ->
          `Assoc
            [("error", (`String "InvalidParameterValueException"));
            ("details", (InvalidParameterValueException.to_json e))]
      | `ResourceNotFoundException e ->
          `Assoc
            [("error", (`String "ResourceNotFoundException"));
            ("details", (ResourceNotFoundException.to_json e))]
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let to_value x =
      structure_to_value [("Tags", (Option.map x.tags ~f:TagList.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let tags = (Option.map ~f:TagList.of_xml) (Xml.child xml_arg0 "Tags") in
      make ?tags ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let tags = field_map json__ "Tags" TagList.of_json in make ?tags ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Lists all tags associated with a given Amazon Translate resource. For more information, see Tagging your resources."]
module ListTagsForResourceRequest =
  struct
    type nonrec t =
      {
      resourceArn: ResourceArn.t
        [@ocaml.doc
          "The Amazon Resource Name (ARN) of the given Amazon Translate resource you are querying."]}
    let context_ = "ListTagsForResourceRequest"
    let make ~resourceArn = fun () -> { resourceArn }
    let to_value x =
      structure_to_value
        [("ResourceArn", (Some (ResourceArn.to_value x.resourceArn)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let resourceArn =
        ResourceArn.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "ResourceArn") in
      make ~resourceArn ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let resourceArn =
        field_map_exn json__ "ResourceArn" ResourceArn.of_json in
      make ~resourceArn ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Lists all tags associated with a given Amazon Translate resource. For more information, see Tagging your resources."]
module ListParallelDataResponse =
  struct
    type nonrec t =
      {
      parallelDataPropertiesList: ParallelDataPropertiesList.t option
        [@ocaml.doc
          "The properties of the parallel data resources returned by this request."];
      nextToken: NextToken.t option
        [@ocaml.doc
          "The string to use in a subsequent request to get the next page of results in a paginated response. This value is null if there are no additional pages."]}
    type nonrec error =
      [ `InternalServerException of InternalServerException.t 
      | `InvalidParameterValueException of InvalidParameterValueException.t 
      | `TooManyRequestsException of TooManyRequestsException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?parallelDataPropertiesList =
      fun ?nextToken -> fun () -> { parallelDataPropertiesList; nextToken }
    let error_of_json name json =
      match name with
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_json json)
      | "InvalidParameterValueException" ->
          `InvalidParameterValueException
            (InvalidParameterValueException.of_json json)
      | "TooManyRequestsException" ->
          `TooManyRequestsException (TooManyRequestsException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_xml xml)
      | "InvalidParameterValueException" ->
          `InvalidParameterValueException
            (InvalidParameterValueException.of_xml xml)
      | "TooManyRequestsException" ->
          `TooManyRequestsException (TooManyRequestsException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `InternalServerException e ->
          `Assoc
            [("error", (`String "InternalServerException"));
            ("details", (InternalServerException.to_json e))]
      | `InvalidParameterValueException e ->
          `Assoc
            [("error", (`String "InvalidParameterValueException"));
            ("details", (InvalidParameterValueException.to_json e))]
      | `TooManyRequestsException e ->
          `Assoc
            [("error", (`String "TooManyRequestsException"));
            ("details", (TooManyRequestsException.to_json e))]
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let to_value x =
      structure_to_value
        [("ParallelDataPropertiesList",
           (Option.map x.parallelDataPropertiesList
              ~f:ParallelDataPropertiesList.to_value));
        ("NextToken", (Option.map x.nextToken ~f:NextToken.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let nextToken =
        (Option.map ~f:NextToken.of_xml) (Xml.child xml_arg0 "NextToken") in
      let parallelDataPropertiesList =
        (Option.map ~f:ParallelDataPropertiesList.of_xml)
          (Xml.child xml_arg0 "ParallelDataPropertiesList") in
      make ?nextToken ?parallelDataPropertiesList ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let nextToken = field_map json__ "NextToken" NextToken.of_json in
      let parallelDataPropertiesList =
        field_map json__ "ParallelDataPropertiesList"
          ParallelDataPropertiesList.of_json in
      make ?nextToken ?parallelDataPropertiesList ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Provides a list of your parallel data resources in Amazon Translate."]
module ListParallelDataRequest =
  struct
    type nonrec t =
      {
      nextToken: NextToken.t option
        [@ocaml.doc
          "A string that specifies the next page of results to return in a paginated response."];
      maxResults: MaxResultsInteger.t option
        [@ocaml.doc
          "The maximum number of parallel data resources returned for each request."]}
    let make ?nextToken =
      fun ?maxResults -> fun () -> { nextToken; maxResults }
    let to_value x =
      structure_to_value
        [("NextToken", (Option.map x.nextToken ~f:NextToken.to_value));
        ("MaxResults",
          (Option.map x.maxResults ~f:MaxResultsInteger.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let maxResults =
        (Option.map ~f:MaxResultsInteger.of_xml)
          (Xml.child xml_arg0 "MaxResults") in
      let nextToken =
        (Option.map ~f:NextToken.of_xml) (Xml.child xml_arg0 "NextToken") in
      make ?maxResults ?nextToken ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let maxResults =
        field_map json__ "MaxResults" MaxResultsInteger.of_json in
      let nextToken = field_map json__ "NextToken" NextToken.of_json in
      make ?maxResults ?nextToken ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Provides a list of your parallel data resources in Amazon Translate."]
module ListLanguagesResponse =
  struct
    type nonrec t =
      {
      languages: LanguagesList.t option
        [@ocaml.doc "The list of supported languages."];
      displayLanguageCode: DisplayLanguageCode.t option
        [@ocaml.doc "The language code passed in with the request."];
      nextToken: NextToken.t option
        [@ocaml.doc
          "If the response does not include all remaining results, use the NextToken in the next request to fetch the next group of supported languages."]}
    type nonrec error =
      [ `InternalServerException of InternalServerException.t 
      | `InvalidParameterValueException of InvalidParameterValueException.t 
      | `TooManyRequestsException of TooManyRequestsException.t 
      | `UnsupportedDisplayLanguageCodeException of
          UnsupportedDisplayLanguageCodeException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?languages =
      fun ?displayLanguageCode ->
        fun ?nextToken ->
          fun () -> { languages; displayLanguageCode; nextToken }
    let error_of_json name json =
      match name with
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_json json)
      | "InvalidParameterValueException" ->
          `InvalidParameterValueException
            (InvalidParameterValueException.of_json json)
      | "TooManyRequestsException" ->
          `TooManyRequestsException (TooManyRequestsException.of_json json)
      | "UnsupportedDisplayLanguageCodeException" ->
          `UnsupportedDisplayLanguageCodeException
            (UnsupportedDisplayLanguageCodeException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_xml xml)
      | "InvalidParameterValueException" ->
          `InvalidParameterValueException
            (InvalidParameterValueException.of_xml xml)
      | "TooManyRequestsException" ->
          `TooManyRequestsException (TooManyRequestsException.of_xml xml)
      | "UnsupportedDisplayLanguageCodeException" ->
          `UnsupportedDisplayLanguageCodeException
            (UnsupportedDisplayLanguageCodeException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `InternalServerException e ->
          `Assoc
            [("error", (`String "InternalServerException"));
            ("details", (InternalServerException.to_json e))]
      | `InvalidParameterValueException e ->
          `Assoc
            [("error", (`String "InvalidParameterValueException"));
            ("details", (InvalidParameterValueException.to_json e))]
      | `TooManyRequestsException e ->
          `Assoc
            [("error", (`String "TooManyRequestsException"));
            ("details", (TooManyRequestsException.to_json e))]
      | `UnsupportedDisplayLanguageCodeException e ->
          `Assoc
            [("error", (`String "UnsupportedDisplayLanguageCodeException"));
            ("details", (UnsupportedDisplayLanguageCodeException.to_json e))]
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let to_value x =
      structure_to_value
        [("Languages", (Option.map x.languages ~f:LanguagesList.to_value));
        ("DisplayLanguageCode",
          (Option.map x.displayLanguageCode ~f:DisplayLanguageCode.to_value));
        ("NextToken", (Option.map x.nextToken ~f:NextToken.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let nextToken =
        (Option.map ~f:NextToken.of_xml) (Xml.child xml_arg0 "NextToken") in
      let displayLanguageCode =
        (Option.map ~f:DisplayLanguageCode.of_xml)
          (Xml.child xml_arg0 "DisplayLanguageCode") in
      let languages =
        (Option.map ~f:LanguagesList.of_xml) (Xml.child xml_arg0 "Languages") in
      make ?nextToken ?displayLanguageCode ?languages ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let nextToken = field_map json__ "NextToken" NextToken.of_json in
      let displayLanguageCode =
        field_map json__ "DisplayLanguageCode" DisplayLanguageCode.of_json in
      let languages = field_map json__ "Languages" LanguagesList.of_json in
      make ?nextToken ?displayLanguageCode ?languages ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Provides a list of languages (RFC-5646 codes and names) that Amazon Translate supports."]
module ListLanguagesRequest =
  struct
    type nonrec t =
      {
      displayLanguageCode: DisplayLanguageCode.t option
        [@ocaml.doc
          "The language code for the language to use to display the language names in the response. The language code is en by default."];
      nextToken: NextToken.t option
        [@ocaml.doc
          "Include the NextToken value to fetch the next group of supported languages."];
      maxResults: MaxResultsInteger.t option
        [@ocaml.doc
          "The maximum number of results to return in each response."]}
    let make ?displayLanguageCode =
      fun ?nextToken ->
        fun ?maxResults ->
          fun () -> { displayLanguageCode; nextToken; maxResults }
    let to_value x =
      structure_to_value
        [("DisplayLanguageCode",
           (Option.map x.displayLanguageCode ~f:DisplayLanguageCode.to_value));
        ("NextToken", (Option.map x.nextToken ~f:NextToken.to_value));
        ("MaxResults",
          (Option.map x.maxResults ~f:MaxResultsInteger.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let maxResults =
        (Option.map ~f:MaxResultsInteger.of_xml)
          (Xml.child xml_arg0 "MaxResults") in
      let nextToken =
        (Option.map ~f:NextToken.of_xml) (Xml.child xml_arg0 "NextToken") in
      let displayLanguageCode =
        (Option.map ~f:DisplayLanguageCode.of_xml)
          (Xml.child xml_arg0 "DisplayLanguageCode") in
      make ?maxResults ?nextToken ?displayLanguageCode ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let maxResults =
        field_map json__ "MaxResults" MaxResultsInteger.of_json in
      let nextToken = field_map json__ "NextToken" NextToken.of_json in
      let displayLanguageCode =
        field_map json__ "DisplayLanguageCode" DisplayLanguageCode.of_json in
      make ?maxResults ?nextToken ?displayLanguageCode ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Provides a list of languages (RFC-5646 codes and names) that Amazon Translate supports."]
module ImportTerminologyResponse =
  struct
    type nonrec t =
      {
      terminologyProperties: TerminologyProperties.t option
        [@ocaml.doc
          "The properties of the custom terminology being imported."];
      auxiliaryDataLocation: TerminologyDataLocation.t option
        [@ocaml.doc
          "The Amazon S3 location of a file that provides any errors or warnings that were produced by your input file. This file was created when Amazon Translate attempted to create a terminology resource. The location is returned as a presigned URL to that has a 30 minute expiration."]}
    type nonrec error =
      [
        `ConcurrentModificationException of ConcurrentModificationException.t 
      | `InternalServerException of InternalServerException.t 
      | `InvalidParameterValueException of InvalidParameterValueException.t 
      | `LimitExceededException of LimitExceededException.t 
      | `TooManyRequestsException of TooManyRequestsException.t 
      | `TooManyTagsException of TooManyTagsException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?terminologyProperties =
      fun ?auxiliaryDataLocation ->
        fun () -> { terminologyProperties; auxiliaryDataLocation }
    let error_of_json name json =
      match name with
      | "ConcurrentModificationException" ->
          `ConcurrentModificationException
            (ConcurrentModificationException.of_json json)
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_json json)
      | "InvalidParameterValueException" ->
          `InvalidParameterValueException
            (InvalidParameterValueException.of_json json)
      | "LimitExceededException" ->
          `LimitExceededException (LimitExceededException.of_json json)
      | "TooManyRequestsException" ->
          `TooManyRequestsException (TooManyRequestsException.of_json json)
      | "TooManyTagsException" ->
          `TooManyTagsException (TooManyTagsException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "ConcurrentModificationException" ->
          `ConcurrentModificationException
            (ConcurrentModificationException.of_xml xml)
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_xml xml)
      | "InvalidParameterValueException" ->
          `InvalidParameterValueException
            (InvalidParameterValueException.of_xml xml)
      | "LimitExceededException" ->
          `LimitExceededException (LimitExceededException.of_xml xml)
      | "TooManyRequestsException" ->
          `TooManyRequestsException (TooManyRequestsException.of_xml xml)
      | "TooManyTagsException" ->
          `TooManyTagsException (TooManyTagsException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `ConcurrentModificationException e ->
          `Assoc
            [("error", (`String "ConcurrentModificationException"));
            ("details", (ConcurrentModificationException.to_json e))]
      | `InternalServerException e ->
          `Assoc
            [("error", (`String "InternalServerException"));
            ("details", (InternalServerException.to_json e))]
      | `InvalidParameterValueException e ->
          `Assoc
            [("error", (`String "InvalidParameterValueException"));
            ("details", (InvalidParameterValueException.to_json e))]
      | `LimitExceededException e ->
          `Assoc
            [("error", (`String "LimitExceededException"));
            ("details", (LimitExceededException.to_json e))]
      | `TooManyRequestsException e ->
          `Assoc
            [("error", (`String "TooManyRequestsException"));
            ("details", (TooManyRequestsException.to_json e))]
      | `TooManyTagsException e ->
          `Assoc
            [("error", (`String "TooManyTagsException"));
            ("details", (TooManyTagsException.to_json e))]
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let to_value x =
      structure_to_value
        [("TerminologyProperties",
           (Option.map x.terminologyProperties
              ~f:TerminologyProperties.to_value));
        ("AuxiliaryDataLocation",
          (Option.map x.auxiliaryDataLocation
             ~f:TerminologyDataLocation.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let auxiliaryDataLocation =
        (Option.map ~f:TerminologyDataLocation.of_xml)
          (Xml.child xml_arg0 "AuxiliaryDataLocation") in
      let terminologyProperties =
        (Option.map ~f:TerminologyProperties.of_xml)
          (Xml.child xml_arg0 "TerminologyProperties") in
      make ?auxiliaryDataLocation ?terminologyProperties ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let auxiliaryDataLocation =
        field_map json__ "AuxiliaryDataLocation"
          TerminologyDataLocation.of_json in
      let terminologyProperties =
        field_map json__ "TerminologyProperties"
          TerminologyProperties.of_json in
      make ?auxiliaryDataLocation ?terminologyProperties ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Creates or updates a custom terminology, depending on whether one already exists for the given terminology name. Importing a terminology with the same name as an existing one will merge the terminologies based on the chosen merge strategy. The only supported merge strategy is OVERWRITE, where the imported terminology overwrites the existing terminology of the same name. If you import a terminology that overwrites an existing one, the new terminology takes up to 10 minutes to fully propagate. After that, translations have access to the new terminology."]
module ImportTerminologyRequest =
  struct
    type nonrec t =
      {
      name: ResourceName.t
        [@ocaml.doc "The name of the custom terminology being imported."];
      mergeStrategy: MergeStrategy.t
        [@ocaml.doc
          "The merge strategy of the custom terminology being imported. Currently, only the OVERWRITE merge strategy is supported. In this case, the imported terminology will overwrite an existing terminology of the same name."];
      description: Description.t option
        [@ocaml.doc
          "The description of the custom terminology being imported."];
      terminologyData: TerminologyData.t
        [@ocaml.doc
          "The terminology data for the custom terminology being imported."];
      encryptionKey: EncryptionKey.t option
        [@ocaml.doc
          "The encryption key for the custom terminology being imported."];
      tags: TagList.t option
        [@ocaml.doc
          "Tags to be associated with this resource. A tag is a key-value pair that adds metadata to a resource. Each tag key for the resource must be unique. For more information, see Tagging your resources."]}
    let context_ = "ImportTerminologyRequest"
    let make ?description =
      fun ?encryptionKey ->
        fun ?tags ->
          fun ~name ->
            fun ~mergeStrategy ->
              fun ~terminologyData ->
                fun () ->
                  {
                    description;
                    encryptionKey;
                    tags;
                    name;
                    mergeStrategy;
                    terminologyData
                  }
    let to_value x =
      structure_to_value
        [("Name", (Some (ResourceName.to_value x.name)));
        ("MergeStrategy", (Some (MergeStrategy.to_value x.mergeStrategy)));
        ("Description", (Option.map x.description ~f:Description.to_value));
        ("TerminologyData",
          (Some (TerminologyData.to_value x.terminologyData)));
        ("EncryptionKey",
          (Option.map x.encryptionKey ~f:EncryptionKey.to_value));
        ("Tags", (Option.map x.tags ~f:TagList.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let tags = (Option.map ~f:TagList.of_xml) (Xml.child xml_arg0 "Tags") in
      let encryptionKey =
        (Option.map ~f:EncryptionKey.of_xml)
          (Xml.child xml_arg0 "EncryptionKey") in
      let terminologyData =
        TerminologyData.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "TerminologyData") in
      let description =
        (Option.map ~f:Description.of_xml) (Xml.child xml_arg0 "Description") in
      let mergeStrategy =
        MergeStrategy.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "MergeStrategy") in
      let name =
        ResourceName.of_xml (Xml.child_exn ~context:context_ xml_arg0 "Name") in
      make ?tags ?encryptionKey ~terminologyData ?description ~mergeStrategy
        ~name ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let tags = field_map json__ "Tags" TagList.of_json in
      let encryptionKey =
        field_map json__ "EncryptionKey" EncryptionKey.of_json in
      let terminologyData =
        field_map_exn json__ "TerminologyData" TerminologyData.of_json in
      let description = field_map json__ "Description" Description.of_json in
      let mergeStrategy =
        field_map_exn json__ "MergeStrategy" MergeStrategy.of_json in
      let name = field_map_exn json__ "Name" ResourceName.of_json in
      make ?tags ?encryptionKey ~terminologyData ?description ~mergeStrategy
        ~name ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Creates or updates a custom terminology, depending on whether one already exists for the given terminology name. Importing a terminology with the same name as an existing one will merge the terminologies based on the chosen merge strategy. The only supported merge strategy is OVERWRITE, where the imported terminology overwrites the existing terminology of the same name. If you import a terminology that overwrites an existing one, the new terminology takes up to 10 minutes to fully propagate. After that, translations have access to the new terminology."]
module GetTerminologyResponse =
  struct
    type nonrec t =
      {
      terminologyProperties: TerminologyProperties.t option
        [@ocaml.doc
          "The properties of the custom terminology being retrieved."];
      terminologyDataLocation: TerminologyDataLocation.t option
        [@ocaml.doc
          "The Amazon S3 location of the most recent custom terminology input file that was successfully imported into Amazon Translate. The location is returned as a presigned URL that has a 30-minute expiration. Amazon Translate doesn't scan all input files for the risk of CSV injection attacks. CSV injection occurs when a .csv or .tsv file is altered so that a record contains malicious code. The record begins with a special character, such as =, +, -, or \\@. When the file is opened in a spreadsheet program, the program might interpret the record as a formula and run the code within it. Before you download an input file from Amazon S3, ensure that you recognize the file and trust its creator."];
      auxiliaryDataLocation: TerminologyDataLocation.t option
        [@ocaml.doc
          "The Amazon S3 location of a file that provides any errors or warnings that were produced by your input file. This file was created when Amazon Translate attempted to create a terminology resource. The location is returned as a presigned URL to that has a 30-minute expiration."]}
    type nonrec error =
      [ `InternalServerException of InternalServerException.t 
      | `InvalidParameterValueException of InvalidParameterValueException.t 
      | `ResourceNotFoundException of ResourceNotFoundException.t 
      | `TooManyRequestsException of TooManyRequestsException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?terminologyProperties =
      fun ?terminologyDataLocation ->
        fun ?auxiliaryDataLocation ->
          fun () ->
            {
              terminologyProperties;
              terminologyDataLocation;
              auxiliaryDataLocation
            }
    let error_of_json name json =
      match name with
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_json json)
      | "InvalidParameterValueException" ->
          `InvalidParameterValueException
            (InvalidParameterValueException.of_json json)
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_json json)
      | "TooManyRequestsException" ->
          `TooManyRequestsException (TooManyRequestsException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_xml xml)
      | "InvalidParameterValueException" ->
          `InvalidParameterValueException
            (InvalidParameterValueException.of_xml xml)
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_xml xml)
      | "TooManyRequestsException" ->
          `TooManyRequestsException (TooManyRequestsException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `InternalServerException e ->
          `Assoc
            [("error", (`String "InternalServerException"));
            ("details", (InternalServerException.to_json e))]
      | `InvalidParameterValueException e ->
          `Assoc
            [("error", (`String "InvalidParameterValueException"));
            ("details", (InvalidParameterValueException.to_json e))]
      | `ResourceNotFoundException e ->
          `Assoc
            [("error", (`String "ResourceNotFoundException"));
            ("details", (ResourceNotFoundException.to_json e))]
      | `TooManyRequestsException e ->
          `Assoc
            [("error", (`String "TooManyRequestsException"));
            ("details", (TooManyRequestsException.to_json e))]
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let to_value x =
      structure_to_value
        [("TerminologyProperties",
           (Option.map x.terminologyProperties
              ~f:TerminologyProperties.to_value));
        ("TerminologyDataLocation",
          (Option.map x.terminologyDataLocation
             ~f:TerminologyDataLocation.to_value));
        ("AuxiliaryDataLocation",
          (Option.map x.auxiliaryDataLocation
             ~f:TerminologyDataLocation.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let auxiliaryDataLocation =
        (Option.map ~f:TerminologyDataLocation.of_xml)
          (Xml.child xml_arg0 "AuxiliaryDataLocation") in
      let terminologyDataLocation =
        (Option.map ~f:TerminologyDataLocation.of_xml)
          (Xml.child xml_arg0 "TerminologyDataLocation") in
      let terminologyProperties =
        (Option.map ~f:TerminologyProperties.of_xml)
          (Xml.child xml_arg0 "TerminologyProperties") in
      make ?auxiliaryDataLocation ?terminologyDataLocation
        ?terminologyProperties ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let auxiliaryDataLocation =
        field_map json__ "AuxiliaryDataLocation"
          TerminologyDataLocation.of_json in
      let terminologyDataLocation =
        field_map json__ "TerminologyDataLocation"
          TerminologyDataLocation.of_json in
      let terminologyProperties =
        field_map json__ "TerminologyProperties"
          TerminologyProperties.of_json in
      make ?auxiliaryDataLocation ?terminologyDataLocation
        ?terminologyProperties ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "Retrieves a custom terminology."]
module GetTerminologyRequest =
  struct
    type nonrec t =
      {
      name: ResourceName.t
        [@ocaml.doc "The name of the custom terminology being retrieved."];
      terminologyDataFormat: TerminologyDataFormat.t option
        [@ocaml.doc
          "The data format of the custom terminology being retrieved. If you don't specify this parameter, Amazon Translate returns a file with the same format as the file that was imported to create the terminology. If you specify this parameter when you retrieve a multi-directional terminology resource, you must specify the same format as the input file that was imported to create it. Otherwise, Amazon Translate throws an error."]}
    let context_ = "GetTerminologyRequest"
    let make ?terminologyDataFormat =
      fun ~name -> fun () -> { terminologyDataFormat; name }
    let to_value x =
      structure_to_value
        [("Name", (Some (ResourceName.to_value x.name)));
        ("TerminologyDataFormat",
          (Option.map x.terminologyDataFormat
             ~f:TerminologyDataFormat.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let terminologyDataFormat =
        (Option.map ~f:TerminologyDataFormat.of_xml)
          (Xml.child xml_arg0 "TerminologyDataFormat") in
      let name =
        ResourceName.of_xml (Xml.child_exn ~context:context_ xml_arg0 "Name") in
      make ?terminologyDataFormat ~name ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let terminologyDataFormat =
        field_map json__ "TerminologyDataFormat"
          TerminologyDataFormat.of_json in
      let name = field_map_exn json__ "Name" ResourceName.of_json in
      make ?terminologyDataFormat ~name ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "Retrieves a custom terminology."]
module GetParallelDataResponse =
  struct
    type nonrec t =
      {
      parallelDataProperties: ParallelDataProperties.t option
        [@ocaml.doc
          "The properties of the parallel data resource that is being retrieved."];
      dataLocation: ParallelDataDataLocation.t option
        [@ocaml.doc
          "The Amazon S3 location of the most recent parallel data input file that was successfully imported into Amazon Translate. The location is returned as a presigned URL that has a 30-minute expiration. Amazon Translate doesn't scan all input files for the risk of CSV injection attacks. CSV injection occurs when a .csv or .tsv file is altered so that a record contains malicious code. The record begins with a special character, such as =, +, -, or \\@. When the file is opened in a spreadsheet program, the program might interpret the record as a formula and run the code within it. Before you download an input file from Amazon S3, ensure that you recognize the file and trust its creator."];
      auxiliaryDataLocation: ParallelDataDataLocation.t option
        [@ocaml.doc
          "The Amazon S3 location of a file that provides any errors or warnings that were produced by your input file. This file was created when Amazon Translate attempted to create a parallel data resource. The location is returned as a presigned URL to that has a 30-minute expiration."];
      latestUpdateAttemptAuxiliaryDataLocation:
        ParallelDataDataLocation.t option
        [@ocaml.doc
          "The Amazon S3 location of a file that provides any errors or warnings that were produced by your input file. This file was created when Amazon Translate attempted to update a parallel data resource. The location is returned as a presigned URL to that has a 30-minute expiration."]}
    type nonrec error =
      [ `InternalServerException of InternalServerException.t 
      | `InvalidParameterValueException of InvalidParameterValueException.t 
      | `ResourceNotFoundException of ResourceNotFoundException.t 
      | `TooManyRequestsException of TooManyRequestsException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?parallelDataProperties =
      fun ?dataLocation ->
        fun ?auxiliaryDataLocation ->
          fun ?latestUpdateAttemptAuxiliaryDataLocation ->
            fun () ->
              {
                parallelDataProperties;
                dataLocation;
                auxiliaryDataLocation;
                latestUpdateAttemptAuxiliaryDataLocation
              }
    let error_of_json name json =
      match name with
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_json json)
      | "InvalidParameterValueException" ->
          `InvalidParameterValueException
            (InvalidParameterValueException.of_json json)
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_json json)
      | "TooManyRequestsException" ->
          `TooManyRequestsException (TooManyRequestsException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_xml xml)
      | "InvalidParameterValueException" ->
          `InvalidParameterValueException
            (InvalidParameterValueException.of_xml xml)
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_xml xml)
      | "TooManyRequestsException" ->
          `TooManyRequestsException (TooManyRequestsException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `InternalServerException e ->
          `Assoc
            [("error", (`String "InternalServerException"));
            ("details", (InternalServerException.to_json e))]
      | `InvalidParameterValueException e ->
          `Assoc
            [("error", (`String "InvalidParameterValueException"));
            ("details", (InvalidParameterValueException.to_json e))]
      | `ResourceNotFoundException e ->
          `Assoc
            [("error", (`String "ResourceNotFoundException"));
            ("details", (ResourceNotFoundException.to_json e))]
      | `TooManyRequestsException e ->
          `Assoc
            [("error", (`String "TooManyRequestsException"));
            ("details", (TooManyRequestsException.to_json e))]
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let to_value x =
      structure_to_value
        [("ParallelDataProperties",
           (Option.map x.parallelDataProperties
              ~f:ParallelDataProperties.to_value));
        ("DataLocation",
          (Option.map x.dataLocation ~f:ParallelDataDataLocation.to_value));
        ("AuxiliaryDataLocation",
          (Option.map x.auxiliaryDataLocation
             ~f:ParallelDataDataLocation.to_value));
        ("LatestUpdateAttemptAuxiliaryDataLocation",
          (Option.map x.latestUpdateAttemptAuxiliaryDataLocation
             ~f:ParallelDataDataLocation.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let latestUpdateAttemptAuxiliaryDataLocation =
        (Option.map ~f:ParallelDataDataLocation.of_xml)
          (Xml.child xml_arg0 "LatestUpdateAttemptAuxiliaryDataLocation") in
      let auxiliaryDataLocation =
        (Option.map ~f:ParallelDataDataLocation.of_xml)
          (Xml.child xml_arg0 "AuxiliaryDataLocation") in
      let dataLocation =
        (Option.map ~f:ParallelDataDataLocation.of_xml)
          (Xml.child xml_arg0 "DataLocation") in
      let parallelDataProperties =
        (Option.map ~f:ParallelDataProperties.of_xml)
          (Xml.child xml_arg0 "ParallelDataProperties") in
      make ?latestUpdateAttemptAuxiliaryDataLocation ?auxiliaryDataLocation
        ?dataLocation ?parallelDataProperties ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let latestUpdateAttemptAuxiliaryDataLocation =
        field_map json__ "LatestUpdateAttemptAuxiliaryDataLocation"
          ParallelDataDataLocation.of_json in
      let auxiliaryDataLocation =
        field_map json__ "AuxiliaryDataLocation"
          ParallelDataDataLocation.of_json in
      let dataLocation =
        field_map json__ "DataLocation" ParallelDataDataLocation.of_json in
      let parallelDataProperties =
        field_map json__ "ParallelDataProperties"
          ParallelDataProperties.of_json in
      make ?latestUpdateAttemptAuxiliaryDataLocation ?auxiliaryDataLocation
        ?dataLocation ?parallelDataProperties ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "Provides information about a parallel data resource."]
module GetParallelDataRequest =
  struct
    type nonrec t =
      {
      name: ResourceName.t
        [@ocaml.doc
          "The name of the parallel data resource that is being retrieved."]}
    let context_ = "GetParallelDataRequest"
    let make ~name = fun () -> { name }
    let to_value x =
      structure_to_value [("Name", (Some (ResourceName.to_value x.name)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let name =
        ResourceName.of_xml (Xml.child_exn ~context:context_ xml_arg0 "Name") in
      make ~name ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let name = field_map_exn json__ "Name" ResourceName.of_json in
      make ~name ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "Provides information about a parallel data resource."]
module DescribeTextTranslationJobResponse =
  struct
    type nonrec t =
      {
      textTranslationJobProperties: TextTranslationJobProperties.t option
        [@ocaml.doc
          "An object that contains the properties associated with an asynchronous batch translation job."]}
    type nonrec error =
      [ `InternalServerException of InternalServerException.t 
      | `ResourceNotFoundException of ResourceNotFoundException.t 
      | `TooManyRequestsException of TooManyRequestsException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?textTranslationJobProperties =
      fun () -> { textTranslationJobProperties }
    let error_of_json name json =
      match name with
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_json json)
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_json json)
      | "TooManyRequestsException" ->
          `TooManyRequestsException (TooManyRequestsException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_xml xml)
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_xml xml)
      | "TooManyRequestsException" ->
          `TooManyRequestsException (TooManyRequestsException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `InternalServerException e ->
          `Assoc
            [("error", (`String "InternalServerException"));
            ("details", (InternalServerException.to_json e))]
      | `ResourceNotFoundException e ->
          `Assoc
            [("error", (`String "ResourceNotFoundException"));
            ("details", (ResourceNotFoundException.to_json e))]
      | `TooManyRequestsException e ->
          `Assoc
            [("error", (`String "TooManyRequestsException"));
            ("details", (TooManyRequestsException.to_json e))]
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let to_value x =
      structure_to_value
        [("TextTranslationJobProperties",
           (Option.map x.textTranslationJobProperties
              ~f:TextTranslationJobProperties.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let textTranslationJobProperties =
        (Option.map ~f:TextTranslationJobProperties.of_xml)
          (Xml.child xml_arg0 "TextTranslationJobProperties") in
      make ?textTranslationJobProperties ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let textTranslationJobProperties =
        field_map json__ "TextTranslationJobProperties"
          TextTranslationJobProperties.of_json in
      make ?textTranslationJobProperties ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Gets the properties associated with an asynchronous batch translation job including name, ID, status, source and target languages, input/output S3 buckets, and so on."]
module DescribeTextTranslationJobRequest =
  struct
    type nonrec t =
      {
      jobId: JobId.t
        [@ocaml.doc
          "The identifier that Amazon Translate generated for the job. The StartTextTranslationJob operation returns this identifier in its response."]}
    let context_ = "DescribeTextTranslationJobRequest"
    let make ~jobId = fun () -> { jobId }
    let to_value x =
      structure_to_value [("JobId", (Some (JobId.to_value x.jobId)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let jobId =
        JobId.of_xml (Xml.child_exn ~context:context_ xml_arg0 "JobId") in
      make ~jobId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let jobId = field_map_exn json__ "JobId" JobId.of_json in
      make ~jobId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Gets the properties associated with an asynchronous batch translation job including name, ID, status, source and target languages, input/output S3 buckets, and so on."]
module DeleteTerminologyRequest =
  struct
    type nonrec t =
      {
      name: ResourceName.t
        [@ocaml.doc "The name of the custom terminology being deleted."]}
    let context_ = "DeleteTerminologyRequest"
    let make ~name = fun () -> { name }
    let to_value x =
      structure_to_value [("Name", (Some (ResourceName.to_value x.name)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let name =
        ResourceName.of_xml (Xml.child_exn ~context:context_ xml_arg0 "Name") in
      make ~name ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let name = field_map_exn json__ "Name" ResourceName.of_json in
      make ~name ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "A synchronous action that deletes a custom terminology."]
module DeleteParallelDataResponse =
  struct
    type nonrec t =
      {
      name: ResourceName.t option
        [@ocaml.doc
          "The name of the parallel data resource that is being deleted."];
      status: ParallelDataStatus.t option
        [@ocaml.doc "The status of the parallel data deletion."]}
    type nonrec error =
      [
        `ConcurrentModificationException of ConcurrentModificationException.t 
      | `InternalServerException of InternalServerException.t 
      | `ResourceNotFoundException of ResourceNotFoundException.t 
      | `TooManyRequestsException of TooManyRequestsException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?name = fun ?status -> fun () -> { name; status }
    let error_of_json name json =
      match name with
      | "ConcurrentModificationException" ->
          `ConcurrentModificationException
            (ConcurrentModificationException.of_json json)
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_json json)
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_json json)
      | "TooManyRequestsException" ->
          `TooManyRequestsException (TooManyRequestsException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "ConcurrentModificationException" ->
          `ConcurrentModificationException
            (ConcurrentModificationException.of_xml xml)
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_xml xml)
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_xml xml)
      | "TooManyRequestsException" ->
          `TooManyRequestsException (TooManyRequestsException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `ConcurrentModificationException e ->
          `Assoc
            [("error", (`String "ConcurrentModificationException"));
            ("details", (ConcurrentModificationException.to_json e))]
      | `InternalServerException e ->
          `Assoc
            [("error", (`String "InternalServerException"));
            ("details", (InternalServerException.to_json e))]
      | `ResourceNotFoundException e ->
          `Assoc
            [("error", (`String "ResourceNotFoundException"));
            ("details", (ResourceNotFoundException.to_json e))]
      | `TooManyRequestsException e ->
          `Assoc
            [("error", (`String "TooManyRequestsException"));
            ("details", (TooManyRequestsException.to_json e))]
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let to_value x =
      structure_to_value
        [("Name", (Option.map x.name ~f:ResourceName.to_value));
        ("Status", (Option.map x.status ~f:ParallelDataStatus.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let status =
        (Option.map ~f:ParallelDataStatus.of_xml)
          (Xml.child xml_arg0 "Status") in
      let name =
        (Option.map ~f:ResourceName.of_xml) (Xml.child xml_arg0 "Name") in
      make ?status ?name ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let status = field_map json__ "Status" ParallelDataStatus.of_json in
      let name = field_map json__ "Name" ResourceName.of_json in
      make ?status ?name ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "Deletes a parallel data resource in Amazon Translate."]
module DeleteParallelDataRequest =
  struct
    type nonrec t =
      {
      name: ResourceName.t
        [@ocaml.doc
          "The name of the parallel data resource that is being deleted."]}
    let context_ = "DeleteParallelDataRequest"
    let make ~name = fun () -> { name }
    let to_value x =
      structure_to_value [("Name", (Some (ResourceName.to_value x.name)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let name =
        ResourceName.of_xml (Xml.child_exn ~context:context_ xml_arg0 "Name") in
      make ~name ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let name = field_map_exn json__ "Name" ResourceName.of_json in
      make ~name ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "Deletes a parallel data resource in Amazon Translate."]
module CreateParallelDataResponse =
  struct
    type nonrec t =
      {
      name: ResourceName.t option
        [@ocaml.doc
          "The custom name that you assigned to the parallel data resource."];
      status: ParallelDataStatus.t option
        [@ocaml.doc
          "The status of the parallel data resource. When the resource is ready for you to use, the status is ACTIVE."]}
    type nonrec error =
      [
        `ConcurrentModificationException of ConcurrentModificationException.t 
      | `ConflictException of ConflictException.t 
      | `InternalServerException of InternalServerException.t 
      | `InvalidParameterValueException of InvalidParameterValueException.t 
      | `InvalidRequestException of InvalidRequestException.t 
      | `LimitExceededException of LimitExceededException.t 
      | `TooManyRequestsException of TooManyRequestsException.t 
      | `TooManyTagsException of TooManyTagsException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?name = fun ?status -> fun () -> { name; status }
    let error_of_json name json =
      match name with
      | "ConcurrentModificationException" ->
          `ConcurrentModificationException
            (ConcurrentModificationException.of_json json)
      | "ConflictException" ->
          `ConflictException (ConflictException.of_json json)
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_json json)
      | "InvalidParameterValueException" ->
          `InvalidParameterValueException
            (InvalidParameterValueException.of_json json)
      | "InvalidRequestException" ->
          `InvalidRequestException (InvalidRequestException.of_json json)
      | "LimitExceededException" ->
          `LimitExceededException (LimitExceededException.of_json json)
      | "TooManyRequestsException" ->
          `TooManyRequestsException (TooManyRequestsException.of_json json)
      | "TooManyTagsException" ->
          `TooManyTagsException (TooManyTagsException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "ConcurrentModificationException" ->
          `ConcurrentModificationException
            (ConcurrentModificationException.of_xml xml)
      | "ConflictException" ->
          `ConflictException (ConflictException.of_xml xml)
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_xml xml)
      | "InvalidParameterValueException" ->
          `InvalidParameterValueException
            (InvalidParameterValueException.of_xml xml)
      | "InvalidRequestException" ->
          `InvalidRequestException (InvalidRequestException.of_xml xml)
      | "LimitExceededException" ->
          `LimitExceededException (LimitExceededException.of_xml xml)
      | "TooManyRequestsException" ->
          `TooManyRequestsException (TooManyRequestsException.of_xml xml)
      | "TooManyTagsException" ->
          `TooManyTagsException (TooManyTagsException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `ConcurrentModificationException e ->
          `Assoc
            [("error", (`String "ConcurrentModificationException"));
            ("details", (ConcurrentModificationException.to_json e))]
      | `ConflictException e ->
          `Assoc
            [("error", (`String "ConflictException"));
            ("details", (ConflictException.to_json e))]
      | `InternalServerException e ->
          `Assoc
            [("error", (`String "InternalServerException"));
            ("details", (InternalServerException.to_json e))]
      | `InvalidParameterValueException e ->
          `Assoc
            [("error", (`String "InvalidParameterValueException"));
            ("details", (InvalidParameterValueException.to_json e))]
      | `InvalidRequestException e ->
          `Assoc
            [("error", (`String "InvalidRequestException"));
            ("details", (InvalidRequestException.to_json e))]
      | `LimitExceededException e ->
          `Assoc
            [("error", (`String "LimitExceededException"));
            ("details", (LimitExceededException.to_json e))]
      | `TooManyRequestsException e ->
          `Assoc
            [("error", (`String "TooManyRequestsException"));
            ("details", (TooManyRequestsException.to_json e))]
      | `TooManyTagsException e ->
          `Assoc
            [("error", (`String "TooManyTagsException"));
            ("details", (TooManyTagsException.to_json e))]
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let to_value x =
      structure_to_value
        [("Name", (Option.map x.name ~f:ResourceName.to_value));
        ("Status", (Option.map x.status ~f:ParallelDataStatus.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let status =
        (Option.map ~f:ParallelDataStatus.of_xml)
          (Xml.child xml_arg0 "Status") in
      let name =
        (Option.map ~f:ResourceName.of_xml) (Xml.child xml_arg0 "Name") in
      make ?status ?name ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let status = field_map json__ "Status" ParallelDataStatus.of_json in
      let name = field_map json__ "Name" ResourceName.of_json in
      make ?status ?name ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Creates a parallel data resource in Amazon Translate by importing an input file from Amazon S3. Parallel data files contain examples that show how you want segments of text to be translated. By adding parallel data, you can influence the style, tone, and word choice in your translation output."]
module CreateParallelDataRequest =
  struct
    type nonrec t =
      {
      name: ResourceName.t
        [@ocaml.doc
          "A custom name for the parallel data resource in Amazon Translate. You must assign a name that is unique in the account and region."];
      description: Description.t option
        [@ocaml.doc
          "A custom description for the parallel data resource in Amazon Translate."];
      parallelDataConfig: ParallelDataConfig.t
        [@ocaml.doc
          "Specifies the format and S3 location of the parallel data input file."];
      encryptionKey: EncryptionKey.t option ;
      clientToken: ClientTokenString.t
        [@ocaml.doc
          "A unique identifier for the request. This token is automatically generated when you use Amazon Translate through an AWS SDK."];
      tags: TagList.t option
        [@ocaml.doc
          "Tags to be associated with this resource. A tag is a key-value pair that adds metadata to a resource. Each tag key for the resource must be unique. For more information, see Tagging your resources."]}
    let context_ = "CreateParallelDataRequest"
    let make ?description =
      fun ?encryptionKey ->
        fun ?tags ->
          fun ~name ->
            fun ~parallelDataConfig ->
              fun ~clientToken ->
                fun () ->
                  {
                    description;
                    encryptionKey;
                    tags;
                    name;
                    parallelDataConfig;
                    clientToken
                  }
    let to_value x =
      structure_to_value
        [("Name", (Some (ResourceName.to_value x.name)));
        ("Description", (Option.map x.description ~f:Description.to_value));
        ("ParallelDataConfig",
          (Some (ParallelDataConfig.to_value x.parallelDataConfig)));
        ("EncryptionKey",
          (Option.map x.encryptionKey ~f:EncryptionKey.to_value));
        ("ClientToken", (Some (ClientTokenString.to_value x.clientToken)));
        ("Tags", (Option.map x.tags ~f:TagList.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let tags = (Option.map ~f:TagList.of_xml) (Xml.child xml_arg0 "Tags") in
      let clientToken =
        ClientTokenString.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "ClientToken") in
      let encryptionKey =
        (Option.map ~f:EncryptionKey.of_xml)
          (Xml.child xml_arg0 "EncryptionKey") in
      let parallelDataConfig =
        ParallelDataConfig.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "ParallelDataConfig") in
      let description =
        (Option.map ~f:Description.of_xml) (Xml.child xml_arg0 "Description") in
      let name =
        ResourceName.of_xml (Xml.child_exn ~context:context_ xml_arg0 "Name") in
      make ?tags ~clientToken ?encryptionKey ~parallelDataConfig ?description
        ~name ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let tags = field_map json__ "Tags" TagList.of_json in
      let clientToken =
        field_map_exn json__ "ClientToken" ClientTokenString.of_json in
      let encryptionKey =
        field_map json__ "EncryptionKey" EncryptionKey.of_json in
      let parallelDataConfig =
        field_map_exn json__ "ParallelDataConfig" ParallelDataConfig.of_json in
      let description = field_map json__ "Description" Description.of_json in
      let name = field_map_exn json__ "Name" ResourceName.of_json in
      make ?tags ~clientToken ?encryptionKey ~parallelDataConfig ?description
        ~name ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Creates a parallel data resource in Amazon Translate by importing an input file from Amazon S3. Parallel data files contain examples that show how you want segments of text to be translated. By adding parallel data, you can influence the style, tone, and word choice in your translation output."]