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
(* 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.chime_sdk_meetings
let apiVersion = "2021-07-15"
let endpointPrefix = "meetings-chime"
let serviceFullName = "Amazon Chime SDK Meetings"
let signatureVersion = "v4"
let protocol = "rest_json"
let globalEndpoint = endpointPrefix ^ ".amazonaws.com"
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 MediaCapabilities =
  struct
    type nonrec t =
      | SendReceive 
      | Send 
      | Receive 
      | None 
      | Non_static_id of string 
    let make i = i
    let to_string =
      function
      | SendReceive -> "SendReceive"
      | Send -> "Send"
      | Receive -> "Receive"
      | None -> "None"
      | Non_static_id s -> s
    let of_string =
      function
      | "SendReceive" -> SendReceive
      | "Send" -> Send
      | "Receive" -> Receive
      | "None" -> None
      | 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 MediaCapabilities" xml_arg0)
    let of_json j = of_string (string_of_json ~kind:"MediaCapabilities" j)
    let to_json = simple_to_json to_value
  end
module AttendeeMax =
  struct
    type nonrec t = int
    let make i =
      let open Result in
        ok_or_failwith
          ((check_int_max i ~max:250) >>= (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 AttendeeMax" 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 MeetingFeatureStatus =
  struct
    type nonrec t =
      | AVAILABLE 
      | UNAVAILABLE 
      | Non_static_id of string 
    let make i = i
    let to_string =
      function
      | AVAILABLE -> "AVAILABLE"
      | UNAVAILABLE -> "UNAVAILABLE"
      | Non_static_id s -> s
    let of_string =
      function
      | "AVAILABLE" -> AVAILABLE
      | "UNAVAILABLE" -> UNAVAILABLE
      | 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 MeetingFeatureStatus" xml_arg0)
    let of_json j = of_string (string_of_json ~kind:"MeetingFeatureStatus" j)
    let to_json = simple_to_json to_value
  end
module ContentResolution =
  struct
    type nonrec t =
      | None 
      | FHD 
      | UHD 
      | Non_static_id of string 
    let make i = i
    let to_string =
      function
      | None -> "None"
      | FHD -> "FHD"
      | UHD -> "UHD"
      | Non_static_id s -> s
    let of_string =
      function
      | "None" -> None
      | "FHD" -> FHD
      | "UHD" -> UHD
      | 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 ContentResolution" xml_arg0)
    let of_json j = of_string (string_of_json ~kind:"ContentResolution" j)
    let to_json = simple_to_json to_value
  end
module VideoResolution =
  struct
    type nonrec t =
      | None 
      | HD 
      | FHD 
      | Non_static_id of string 
    let make i = i
    let to_string =
      function
      | None -> "None"
      | HD -> "HD"
      | FHD -> "FHD"
      | Non_static_id s -> s
    let of_string =
      function
      | "None" -> None
      | "HD" -> HD
      | "FHD" -> FHD
      | 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 VideoResolution" xml_arg0)
    let of_json j = of_string (string_of_json ~kind:"VideoResolution" j)
    let to_json = simple_to_json to_value
  end
module TagKey =
  struct
    type nonrec t = string
    let context_ = "TagKey"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:1) >>=
             (fun () ->
                (check_string_max i ~max:128) >>=
                  (fun () -> check_pattern i ~pattern:"^[a-zA-Z+-=._:/]+$")));
        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_min i ~min:0) >>=
             (fun () ->
                (check_string_max i ~max:256) >>=
                  (fun () -> check_pattern i ~pattern:"[\\s\\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:"TagValue" j
    let to_json = simple_to_json to_value
  end
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:4096); 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 TranscribeMedicalContentIdentificationType =
  struct
    type nonrec t =
      | PHI 
      | Non_static_id of string 
    let make i = i
    let to_string = function | PHI -> "PHI" | Non_static_id s -> s
    let of_string = function | "PHI" -> PHI | 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 TranscribeMedicalContentIdentificationType"
           xml_arg0)
    let of_json j =
      of_string
        (string_of_json ~kind:"TranscribeMedicalContentIdentificationType" j)
    let to_json = simple_to_json to_value
  end
module TranscribeMedicalLanguageCode =
  struct
    type nonrec t =
      | En_US 
      | Non_static_id of string 
    let make i = i
    let to_string = function | En_US -> "en-US" | Non_static_id s -> s
    let of_string = function | "en-US" -> En_US | 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 TranscribeMedicalLanguageCode"
           xml_arg0)
    let of_json j =
      of_string (string_of_json ~kind:"TranscribeMedicalLanguageCode" j)
    let to_json = simple_to_json to_value
  end
module TranscribeMedicalRegion =
  struct
    type nonrec t =
      | Us_east_1 
      | Us_east_2 
      | Us_west_2 
      | Ap_southeast_2 
      | Ca_central_1 
      | Eu_west_1 
      | Auto 
      | Non_static_id of string 
    let make i = i
    let to_string =
      function
      | Us_east_1 -> "us-east-1"
      | Us_east_2 -> "us-east-2"
      | Us_west_2 -> "us-west-2"
      | Ap_southeast_2 -> "ap-southeast-2"
      | Ca_central_1 -> "ca-central-1"
      | Eu_west_1 -> "eu-west-1"
      | Auto -> "auto"
      | Non_static_id s -> s
    let of_string =
      function
      | "us-east-1" -> Us_east_1
      | "us-east-2" -> Us_east_2
      | "us-west-2" -> Us_west_2
      | "ap-southeast-2" -> Ap_southeast_2
      | "ca-central-1" -> Ca_central_1
      | "eu-west-1" -> Eu_west_1
      | "auto" -> Auto
      | 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 TranscribeMedicalRegion" xml_arg0)
    let of_json j =
      of_string (string_of_json ~kind:"TranscribeMedicalRegion" j)
    let to_json = simple_to_json to_value
  end
module TranscribeMedicalSpecialty =
  struct
    type nonrec t =
      | PRIMARYCARE 
      | CARDIOLOGY 
      | NEUROLOGY 
      | ONCOLOGY 
      | RADIOLOGY 
      | UROLOGY 
      | Non_static_id of string 
    let make i = i
    let to_string =
      function
      | PRIMARYCARE -> "PRIMARYCARE"
      | CARDIOLOGY -> "CARDIOLOGY"
      | NEUROLOGY -> "NEUROLOGY"
      | ONCOLOGY -> "ONCOLOGY"
      | RADIOLOGY -> "RADIOLOGY"
      | UROLOGY -> "UROLOGY"
      | Non_static_id s -> s
    let of_string =
      function
      | "PRIMARYCARE" -> PRIMARYCARE
      | "CARDIOLOGY" -> CARDIOLOGY
      | "NEUROLOGY" -> NEUROLOGY
      | "ONCOLOGY" -> ONCOLOGY
      | "RADIOLOGY" -> RADIOLOGY
      | "UROLOGY" -> UROLOGY
      | 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 TranscribeMedicalSpecialty"
           xml_arg0)
    let of_json j =
      of_string (string_of_json ~kind:"TranscribeMedicalSpecialty" j)
    let to_json = simple_to_json to_value
  end
module TranscribeMedicalType =
  struct
    type nonrec t =
      | CONVERSATION 
      | DICTATION 
      | Non_static_id of string 
    let make i = i
    let to_string =
      function
      | CONVERSATION -> "CONVERSATION"
      | DICTATION -> "DICTATION"
      | Non_static_id s -> s
    let of_string =
      function
      | "CONVERSATION" -> CONVERSATION
      | "DICTATION" -> DICTATION
      | 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 TranscribeMedicalType" xml_arg0)
    let of_json j =
      of_string (string_of_json ~kind:"TranscribeMedicalType" j)
    let to_json = simple_to_json to_value
  end
module Boolean =
  struct
    type nonrec t = bool
    let make i = i
    let of_string = Bool.of_string
    let to_value x = `Boolean x
    let to_query v = to_query to_value v
    let to_header x = Bool.to_string x
    let of_xml xml_arg0 =
      Bool.of_string (string_of_xml ~kind:"a boolean" xml_arg0)
    let of_json = bool_of_json
    let to_json = simple_to_json to_value
  end
module TranscribeContentIdentificationType =
  struct
    type nonrec t =
      | PII 
      | Non_static_id of string 
    let make i = i
    let to_string = function | PII -> "PII" | Non_static_id s -> s
    let of_string = function | "PII" -> PII | 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 TranscribeContentIdentificationType" xml_arg0)
    let of_json j =
      of_string
        (string_of_json ~kind:"TranscribeContentIdentificationType" j)
    let to_json = simple_to_json to_value
  end
module TranscribeContentRedactionType =
  struct
    type nonrec t =
      | PII 
      | Non_static_id of string 
    let make i = i
    let to_string = function | PII -> "PII" | Non_static_id s -> s
    let of_string = function | "PII" -> PII | 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 TranscribeContentRedactionType"
           xml_arg0)
    let of_json j =
      of_string (string_of_json ~kind:"TranscribeContentRedactionType" j)
    let to_json = simple_to_json to_value
  end
module TranscribeLanguageCode =
  struct
    type nonrec t =
      | En_US 
      | En_GB 
      | Es_US 
      | Fr_CA 
      | Fr_FR 
      | En_AU 
      | It_IT 
      | De_DE 
      | Pt_BR 
      | Ja_JP 
      | Ko_KR 
      | Zh_CN 
      | Th_TH 
      | Hi_IN 
      | Non_static_id of string 
    let make i = i
    let to_string =
      function
      | En_US -> "en-US"
      | En_GB -> "en-GB"
      | Es_US -> "es-US"
      | Fr_CA -> "fr-CA"
      | Fr_FR -> "fr-FR"
      | En_AU -> "en-AU"
      | It_IT -> "it-IT"
      | De_DE -> "de-DE"
      | Pt_BR -> "pt-BR"
      | Ja_JP -> "ja-JP"
      | Ko_KR -> "ko-KR"
      | Zh_CN -> "zh-CN"
      | Th_TH -> "th-TH"
      | Hi_IN -> "hi-IN"
      | Non_static_id s -> s
    let of_string =
      function
      | "en-US" -> En_US
      | "en-GB" -> En_GB
      | "es-US" -> Es_US
      | "fr-CA" -> Fr_CA
      | "fr-FR" -> Fr_FR
      | "en-AU" -> En_AU
      | "it-IT" -> It_IT
      | "de-DE" -> De_DE
      | "pt-BR" -> Pt_BR
      | "ja-JP" -> Ja_JP
      | "ko-KR" -> Ko_KR
      | "zh-CN" -> Zh_CN
      | "th-TH" -> Th_TH
      | "hi-IN" -> Hi_IN
      | 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 TranscribeLanguageCode" xml_arg0)
    let of_json j =
      of_string (string_of_json ~kind:"TranscribeLanguageCode" j)
    let to_json = simple_to_json to_value
  end
module TranscribeLanguageModelName =
  struct
    type nonrec t = string
    let context_ = "TranscribeLanguageModelName"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:1) >>=
             (fun () ->
                (check_string_max i ~max:200) >>=
                  (fun () -> check_pattern i ~pattern:"^[0-9a-zA-Z._-]+")));
        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:"TranscribeLanguageModelName" j
    let to_json = simple_to_json to_value
  end
module TranscribeLanguageOptions =
  struct
    type nonrec t = string
    let context_ = "TranscribeLanguageOptions"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:1) >>=
             (fun () ->
                (check_string_max i ~max:200) >>=
                  (fun () -> check_pattern i ~pattern:"^[a-zA-Z-,]+")));
        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:"TranscribeLanguageOptions" j
    let to_json = simple_to_json to_value
  end
module TranscribePartialResultsStability =
  struct
    type nonrec t =
      | Low 
      | Medium 
      | High 
      | Non_static_id of string 
    let make i = i
    let to_string =
      function
      | Low -> "low"
      | Medium -> "medium"
      | High -> "high"
      | Non_static_id s -> s
    let of_string =
      function
      | "low" -> Low
      | "medium" -> Medium
      | "high" -> High
      | 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 TranscribePartialResultsStability"
           xml_arg0)
    let of_json j =
      of_string (string_of_json ~kind:"TranscribePartialResultsStability" j)
    let to_json = simple_to_json to_value
  end
module TranscribePiiEntityTypes =
  struct
    type nonrec t = string
    let context_ = "TranscribePiiEntityTypes"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:1) >>=
             (fun () ->
                (check_string_max i ~max:300) >>=
                  (fun () -> check_pattern i ~pattern:"^[A-Z_, ]+")));
        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:"TranscribePiiEntityTypes" j
    let to_json = simple_to_json to_value
  end
module TranscribeRegion =
  struct
    type nonrec t =
      | Us_east_2 
      | Us_east_1 
      | Us_west_2 
      | Ap_northeast_2 
      | Ap_southeast_2 
      | Ap_northeast_1 
      | Ca_central_1 
      | Eu_central_1 
      | Eu_west_1 
      | Eu_west_2 
      | Sa_east_1 
      | Auto 
      | Us_gov_west_1 
      | Non_static_id of string 
    let make i = i
    let to_string =
      function
      | Us_east_2 -> "us-east-2"
      | Us_east_1 -> "us-east-1"
      | Us_west_2 -> "us-west-2"
      | Ap_northeast_2 -> "ap-northeast-2"
      | Ap_southeast_2 -> "ap-southeast-2"
      | Ap_northeast_1 -> "ap-northeast-1"
      | Ca_central_1 -> "ca-central-1"
      | Eu_central_1 -> "eu-central-1"
      | Eu_west_1 -> "eu-west-1"
      | Eu_west_2 -> "eu-west-2"
      | Sa_east_1 -> "sa-east-1"
      | Auto -> "auto"
      | Us_gov_west_1 -> "us-gov-west-1"
      | Non_static_id s -> s
    let of_string =
      function
      | "us-east-2" -> Us_east_2
      | "us-east-1" -> Us_east_1
      | "us-west-2" -> Us_west_2
      | "ap-northeast-2" -> Ap_northeast_2
      | "ap-southeast-2" -> Ap_southeast_2
      | "ap-northeast-1" -> Ap_northeast_1
      | "ca-central-1" -> Ca_central_1
      | "eu-central-1" -> Eu_central_1
      | "eu-west-1" -> Eu_west_1
      | "eu-west-2" -> Eu_west_2
      | "sa-east-1" -> Sa_east_1
      | "auto" -> Auto
      | "us-gov-west-1" -> Us_gov_west_1
      | 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 TranscribeRegion" xml_arg0)
    let of_json j = of_string (string_of_json ~kind:"TranscribeRegion" j)
    let to_json = simple_to_json to_value
  end
module TranscribeVocabularyFilterMethod =
  struct
    type nonrec t =
      | Remove 
      | Mask 
      | Tag 
      | Non_static_id of string 
    let make i = i
    let to_string =
      function
      | Remove -> "remove"
      | Mask -> "mask"
      | Tag -> "tag"
      | Non_static_id s -> s
    let of_string =
      function
      | "remove" -> Remove
      | "mask" -> Mask
      | "tag" -> Tag
      | 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 TranscribeVocabularyFilterMethod"
           xml_arg0)
    let of_json j =
      of_string (string_of_json ~kind:"TranscribeVocabularyFilterMethod" j)
    let to_json = simple_to_json to_value
  end
module TranscribeVocabularyNamesOrFilterNamesString =
  struct
    type nonrec t = string
    let context_ = "TranscribeVocabularyNamesOrFilterNamesString"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:1) >>=
             (fun () ->
                (check_string_max i ~max:3000) >>=
                  (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:"TranscribeVocabularyNamesOrFilterNamesString" j
    let to_json = simple_to_json to_value
  end
module AttendeeCapabilities =
  struct
    type nonrec t =
      {
      audio: MediaCapabilities.t
        [@ocaml.doc "The audio capability assigned to an attendee."];
      video: MediaCapabilities.t
        [@ocaml.doc "The video capability assigned to an attendee."];
      content: MediaCapabilities.t
        [@ocaml.doc "The content capability assigned to an attendee."]}
    let context_ = "AttendeeCapabilities"
    let make ~audio =
      fun ~video -> fun ~content -> fun () -> { audio; video; content }
    let to_value x =
      structure_to_value
        [("Audio", (Some (MediaCapabilities.to_value x.audio)));
        ("Video", (Some (MediaCapabilities.to_value x.video)));
        ("Content", (Some (MediaCapabilities.to_value x.content)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let content =
        MediaCapabilities.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "Content") in
      let video =
        MediaCapabilities.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "Video") in
      let audio =
        MediaCapabilities.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "Audio") in
      make ~content ~video ~audio ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let content = field_map_exn json__ "Content" MediaCapabilities.of_json in
      let video = field_map_exn json__ "Video" MediaCapabilities.of_json in
      let audio = field_map_exn json__ "Audio" MediaCapabilities.of_json in
      make ~content ~video ~audio ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The media capabilities of an attendee: audio, video, or content. You use the capabilities with a set of values that control what the capabilities can do, such as SendReceive data. For more information, refer to and . When using capabilities, be aware of these corner cases: If you specify MeetingFeatures:Video:MaxResolution:None when you create a meeting, all API requests that include SendReceive, Send, or Receive for AttendeeCapabilities:Video will be rejected with ValidationError 400. If you specify MeetingFeatures:Content:MaxResolution:None when you create a meeting, all API requests that include SendReceive, Send, or Receive for AttendeeCapabilities:Content will be rejected with ValidationError 400. You can't set content capabilities to SendReceive or Receive unless you also set video capabilities to SendReceive or Receive. If you don't set the video capability to receive, the response will contain an HTTP 400 Bad Request status code. However, you can set your video capability to receive and you set your content capability to not receive. If meeting features is defined as Video:MaxResolution:None but Content:MaxResolution is defined as something other than None and attendee capabilities are not defined in the API request, then the default attendee video capability is set to Receive and attendee content capability is set to SendReceive. This is because content SendReceive requires video to be at least Receive. When you change an audio capability from None or Receive to Send or SendReceive , and an attendee unmutes their microphone, audio flows from the attendee to the other meeting participants. When you change a video or content capability from None or Receive to Send or SendReceive , and the attendee turns on their video or content streams, remote attendees can receive those streams, but only after media renegotiation between the client and the Amazon Chime back-end server."]
module ExternalUserId =
  struct
    type nonrec t = string
    let context_ = "ExternalUserId"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_max i ~max:64) >>=
             (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:"ExternalUserId" j
    let to_json = simple_to_json to_value
  end
module GuidString =
  struct
    type nonrec t = string
    let context_ = "GuidString"
    let make i =
      let open Result in
        ok_or_failwith
          (check_pattern i
             ~pattern:"[a-fA-F0-9]{8}(?:-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}");
        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:"GuidString" j
    let to_json = simple_to_json to_value
  end
module JoinTokenString =
  struct
    type nonrec t = string
    let context_ = "JoinTokenString"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_max i ~max:2048) >>=
             (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:"JoinTokenString" j
    let to_json = simple_to_json to_value
  end
module AttendeeFeatures =
  struct
    type nonrec t =
      {
      maxCount: AttendeeMax.t option
        [@ocaml.doc
          "The maximum number of attendees allowed into the meeting."]}
    let make ?maxCount = fun () -> { maxCount }
    let to_value x =
      structure_to_value
        [("MaxCount", (Option.map x.maxCount ~f:AttendeeMax.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let maxCount =
        (Option.map ~f:AttendeeMax.of_xml) (Xml.child xml_arg0 "MaxCount") in
      make ?maxCount ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let maxCount = field_map json__ "MaxCount" AttendeeMax.of_json in
      make ?maxCount ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Lists the maximum number of attendees allowed into the meeting. If you specify FHD for MeetingFeatures:Video:MaxResolution, or if you specify UHD for MeetingFeatures:Content:MaxResolution, the maximum number of attendees changes from the default of 250 to 25."]
module AudioFeatures =
  struct
    type nonrec t =
      {
      echoReduction: MeetingFeatureStatus.t option
        [@ocaml.doc
          "Makes echo reduction available to clients who connect to the meeting."]}
    let make ?echoReduction = fun () -> { echoReduction }
    let to_value x =
      structure_to_value
        [("EchoReduction",
           (Option.map x.echoReduction ~f:MeetingFeatureStatus.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let echoReduction =
        (Option.map ~f:MeetingFeatureStatus.of_xml)
          (Xml.child xml_arg0 "EchoReduction") in
      make ?echoReduction ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let echoReduction =
        field_map json__ "EchoReduction" MeetingFeatureStatus.of_json in
      make ?echoReduction ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "An optional category of meeting features that contains audio-specific configurations, such as operating parameters for Amazon Voice Focus."]
module ContentFeatures =
  struct
    type nonrec t =
      {
      maxResolution: ContentResolution.t option
        [@ocaml.doc
          "The maximum resolution for the meeting content. Defaults to FHD. To use UHD, you must also provide a MeetingFeatures:Attendee:MaxCount value and override the default size limit of 250 attendees."]}
    let make ?maxResolution = fun () -> { maxResolution }
    let to_value x =
      structure_to_value
        [("MaxResolution",
           (Option.map x.maxResolution ~f:ContentResolution.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let maxResolution =
        (Option.map ~f:ContentResolution.of_xml)
          (Xml.child xml_arg0 "MaxResolution") in
      make ?maxResolution ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let maxResolution =
        field_map json__ "MaxResolution" ContentResolution.of_json in
      make ?maxResolution ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Lists the content (screen share) features for the meeting. Applies to all attendees. If you specify MeetingFeatures:Content:MaxResolution:None when you create a meeting, all API requests that include SendReceive, Send, or Receive for AttendeeCapabilities:Content will be rejected with ValidationError 400."]
module VideoFeatures =
  struct
    type nonrec t =
      {
      maxResolution: VideoResolution.t option
        [@ocaml.doc
          "The maximum video resolution for the meeting. Applies to all attendees. Defaults to HD. To use FHD, you must also provide a MeetingFeatures:Attendee:MaxCount value and override the default size limit of 250 attendees."]}
    let make ?maxResolution = fun () -> { maxResolution }
    let to_value x =
      structure_to_value
        [("MaxResolution",
           (Option.map x.maxResolution ~f:VideoResolution.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let maxResolution =
        (Option.map ~f:VideoResolution.of_xml)
          (Xml.child xml_arg0 "MaxResolution") in
      make ?maxResolution ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let maxResolution =
        field_map json__ "MaxResolution" VideoResolution.of_json in
      make ?maxResolution ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The video features set for the meeting. Applies to all attendees. If you specify MeetingFeatures:Video:MaxResolution:None when you create a meeting, all API requests that include SendReceive, Send, or Receive for AttendeeCapabilities:Video will be rejected with ValidationError 400."]
module TenantId =
  struct
    type nonrec t = string
    let context_ = "TenantId"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:2) >>=
             (fun () ->
                (check_string_max i ~max:256) >>=
                  (fun () ->
                     check_pattern i
                       ~pattern:"^(?!.*?(.)\\1{3})[-_!@#$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:"TenantId" j
    let to_json = simple_to_json to_value
  end
module RetryAfterSeconds =
  struct
    type nonrec t = string
    let context_ = "RetryAfterSeconds"
    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:"RetryAfterSeconds" j
    let to_json = simple_to_json to_value
  end
module AmazonResourceName =
  struct
    type nonrec t = string
    let context_ = "AmazonResourceName"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:1) >>=
             (fun () ->
                (check_string_max i ~max:1011) >>=
                  (fun () -> check_pattern i ~pattern:"^arn:.*")));
        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:"AmazonResourceName" j
    let to_json = simple_to_json to_value
  end
module Tag =
  struct
    type nonrec t =
      {
      key: TagKey.t [@ocaml.doc "The tag's key."];
      value: TagValue.t [@ocaml.doc "The tag's value."]}
    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 you define."]
module EngineTranscribeMedicalSettings =
  struct
    type nonrec t =
      {
      languageCode: TranscribeMedicalLanguageCode.t
        [@ocaml.doc
          "The language code specified for the Amazon Transcribe Medical engine."];
      specialty: TranscribeMedicalSpecialty.t
        [@ocaml.doc
          "The specialty specified for the Amazon Transcribe Medical engine."];
      type_: TranscribeMedicalType.t
        [@ocaml.doc "The type of transcription."];
      vocabularyName: String_.t option
        [@ocaml.doc
          "The name of the vocabulary passed to Amazon Transcribe Medical."];
      region: TranscribeMedicalRegion.t option
        [@ocaml.doc
          "The Amazon Web Services Region passed to Amazon Transcribe Medical. If you don't specify a Region, Amazon Chime uses the meeting's Region."];
      contentIdentificationType:
        TranscribeMedicalContentIdentificationType.t option
        [@ocaml.doc
          "Set this field to PHI to identify personal health information in the transcription output."]}
    let context_ = "EngineTranscribeMedicalSettings"
    let make ?vocabularyName =
      fun ?region ->
        fun ?contentIdentificationType ->
          fun ~languageCode ->
            fun ~specialty ->
              fun ~type_ ->
                fun () ->
                  {
                    vocabularyName;
                    region;
                    contentIdentificationType;
                    languageCode;
                    specialty;
                    type_
                  }
    let to_value x =
      structure_to_value
        [("LanguageCode",
           (Some (TranscribeMedicalLanguageCode.to_value x.languageCode)));
        ("Specialty",
          (Some (TranscribeMedicalSpecialty.to_value x.specialty)));
        ("Type", (Some (TranscribeMedicalType.to_value x.type_)));
        ("VocabularyName", (Option.map x.vocabularyName ~f:String_.to_value));
        ("Region", (Option.map x.region ~f:TranscribeMedicalRegion.to_value));
        ("ContentIdentificationType",
          (Option.map x.contentIdentificationType
             ~f:TranscribeMedicalContentIdentificationType.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let contentIdentificationType =
        (Option.map ~f:TranscribeMedicalContentIdentificationType.of_xml)
          (Xml.child xml_arg0 "ContentIdentificationType") in
      let region =
        (Option.map ~f:TranscribeMedicalRegion.of_xml)
          (Xml.child xml_arg0 "Region") in
      let vocabularyName =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "VocabularyName") in
      let type_ =
        TranscribeMedicalType.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "Type") in
      let specialty =
        TranscribeMedicalSpecialty.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "Specialty") in
      let languageCode =
        TranscribeMedicalLanguageCode.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "LanguageCode") in
      make ?contentIdentificationType ?region ?vocabularyName ~type_
        ~specialty ~languageCode ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let contentIdentificationType =
        field_map json__ "ContentIdentificationType"
          TranscribeMedicalContentIdentificationType.of_json in
      let region = field_map json__ "Region" TranscribeMedicalRegion.of_json in
      let vocabularyName = field_map json__ "VocabularyName" String_.of_json in
      let type_ = field_map_exn json__ "Type" TranscribeMedicalType.of_json in
      let specialty =
        field_map_exn json__ "Specialty" TranscribeMedicalSpecialty.of_json in
      let languageCode =
        field_map_exn json__ "LanguageCode"
          TranscribeMedicalLanguageCode.of_json in
      make ?contentIdentificationType ?region ?vocabularyName ~type_
        ~specialty ~languageCode ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Settings specific to the Amazon Transcribe Medical engine."]
module EngineTranscribeSettings =
  struct
    type nonrec t =
      {
      languageCode: TranscribeLanguageCode.t option
        [@ocaml.doc
          "Specify the language code that represents the language spoken. If you're unsure of the language spoken in your audio, consider using IdentifyLanguage to enable automatic language identification."];
      vocabularyFilterMethod: TranscribeVocabularyFilterMethod.t option
        [@ocaml.doc
          "Specify how you want your vocabulary filter applied to your transcript. To replace words with ***, choose mask. To delete words, choose remove. To flag words without changing them, choose tag."];
      vocabularyFilterName: String_.t option
        [@ocaml.doc
          "Specify the name of the custom vocabulary filter that you want to use when processing your transcription. Note that vocabulary filter names are case sensitive. If you use Amazon Transcribe in multiple Regions, the vocabulary filter must be available in Amazon Transcribe in each Region. If you include IdentifyLanguage and want to use one or more vocabulary filters with your transcription, use the VocabularyFilterNames parameter instead."];
      vocabularyName: String_.t option
        [@ocaml.doc
          "Specify the name of the custom vocabulary that you want to use when processing your transcription. Note that vocabulary names are case sensitive. If you use Amazon Transcribe multiple Regions, the vocabulary must be available in Amazon Transcribe in each Region. If you include IdentifyLanguage and want to use one or more custom vocabularies with your transcription, use the VocabularyNames parameter instead."];
      region: TranscribeRegion.t option
        [@ocaml.doc
          "The Amazon Web Services Region in which to use Amazon Transcribe. If you don't specify a Region, then the MediaRegion of the meeting is used. However, if Amazon Transcribe is not available in the MediaRegion, then a TranscriptFailed event is sent. Use auto to use Amazon Transcribe in a Region near the meeting\226\128\153s MediaRegion. For more information, refer to Choosing a transcription Region in the Amazon Chime SDK Developer Guide."];
      enablePartialResultsStabilization: Boolean.t option
        [@ocaml.doc
          "Enables partial result stabilization for your transcription. Partial result stabilization can reduce latency in your output, but may impact accuracy."];
      partialResultsStability: TranscribePartialResultsStability.t option
        [@ocaml.doc
          "Specify the level of stability to use when you enable partial results stabilization (EnablePartialResultsStabilization). Low stability provides the highest accuracy. High stability transcribes faster, but with slightly lower accuracy."];
      contentIdentificationType: TranscribeContentIdentificationType.t option
        [@ocaml.doc
          "Labels all personally identifiable information (PII) identified in your transcript. If you don't include PiiEntityTypes, all PII is identified. You can\226\128\153t set ContentIdentificationType and ContentRedactionType."];
      contentRedactionType: TranscribeContentRedactionType.t option
        [@ocaml.doc
          "Content redaction is performed at the segment level. If you don't include PiiEntityTypes, all PII is redacted. You can\226\128\153t set ContentRedactionType and ContentIdentificationType."];
      piiEntityTypes: TranscribePiiEntityTypes.t option
        [@ocaml.doc
          "Specify which types of personally identifiable information (PII) you want to redact in your transcript. You can include as many types as you'd like, or you can select ALL. Values must be comma-separated and can include: ADDRESS, BANK_ACCOUNT_NUMBER, BANK_ROUTING, CREDIT_DEBIT_CVV, CREDIT_DEBIT_EXPIRY CREDIT_DEBIT_NUMBER, EMAIL,NAME, PHONE, PIN, SSN, or ALL. Note that if you include PiiEntityTypes, you must also include ContentIdentificationType or ContentRedactionType. If you include ContentRedactionType or ContentIdentificationType, but do not include PiiEntityTypes, all PII is redacted or identified."];
      languageModelName: TranscribeLanguageModelName.t option
        [@ocaml.doc
          "Specify the name of the custom language model that you want to use when processing your transcription. Note that language model names are case sensitive. The language of the specified language model must match the language code. If the languages don't match, the custom language model isn't applied. There are no errors or warnings associated with a language mismatch. If you use Amazon Transcribe in multiple Regions, the custom language model must be available in Amazon Transcribe in each Region."];
      identifyLanguage: Boolean.t option
        [@ocaml.doc
          "Enables automatic language identification for your transcription. If you include IdentifyLanguage, you can optionally use LanguageOptions to include a list of language codes that you think may be present in your audio stream. Including language options can improve transcription accuracy. You can also use PreferredLanguage to include a preferred language. Doing so can help Amazon Transcribe identify the language faster. You must include either LanguageCode or IdentifyLanguage. Language identification can't be combined with custom language models or redaction."];
      languageOptions: TranscribeLanguageOptions.t option
        [@ocaml.doc
          "Specify two or more language codes that represent the languages you think may be present in your media; including more than five is not recommended. If you're unsure what languages are present, do not include this parameter. Including language options can improve the accuracy of language identification. If you include LanguageOptions, you must also include IdentifyLanguage. You can only include one language dialect per language. For example, you cannot include en-US and en-AU."];
      preferredLanguage: TranscribeLanguageCode.t option
        [@ocaml.doc
          "Specify a preferred language from the subset of languages codes you specified in LanguageOptions. You can only use this parameter if you include IdentifyLanguage and LanguageOptions."];
      vocabularyNames: TranscribeVocabularyNamesOrFilterNamesString.t option
        [@ocaml.doc
          "Specify the names of the custom vocabularies that you want to use when processing your transcription. Note that vocabulary names are case sensitive. If you use Amazon Transcribe in multiple Regions, the vocabulary must be available in Amazon Transcribe in each Region. If you don't include IdentifyLanguage and want to use a custom vocabulary with your transcription, use the VocabularyName parameter instead."];
      vocabularyFilterNames:
        TranscribeVocabularyNamesOrFilterNamesString.t option
        [@ocaml.doc
          "Specify the names of the custom vocabulary filters that you want to use when processing your transcription. Note that vocabulary filter names are case sensitive. If you use Amazon Transcribe in multiple Regions, the vocabulary filter must be available in Amazon Transcribe in each Region. If you're not including IdentifyLanguage and want to use a custom vocabulary filter with your transcription, use the VocabularyFilterName parameter instead."]}
    let make ?languageCode =
      fun ?vocabularyFilterMethod ->
        fun ?vocabularyFilterName ->
          fun ?vocabularyName ->
            fun ?region ->
              fun ?enablePartialResultsStabilization ->
                fun ?partialResultsStability ->
                  fun ?contentIdentificationType ->
                    fun ?contentRedactionType ->
                      fun ?piiEntityTypes ->
                        fun ?languageModelName ->
                          fun ?identifyLanguage ->
                            fun ?languageOptions ->
                              fun ?preferredLanguage ->
                                fun ?vocabularyNames ->
                                  fun ?vocabularyFilterNames ->
                                    fun () ->
                                      {
                                        languageCode;
                                        vocabularyFilterMethod;
                                        vocabularyFilterName;
                                        vocabularyName;
                                        region;
                                        enablePartialResultsStabilization;
                                        partialResultsStability;
                                        contentIdentificationType;
                                        contentRedactionType;
                                        piiEntityTypes;
                                        languageModelName;
                                        identifyLanguage;
                                        languageOptions;
                                        preferredLanguage;
                                        vocabularyNames;
                                        vocabularyFilterNames
                                      }
    let to_value x =
      structure_to_value
        [("LanguageCode",
           (Option.map x.languageCode ~f:TranscribeLanguageCode.to_value));
        ("VocabularyFilterMethod",
          (Option.map x.vocabularyFilterMethod
             ~f:TranscribeVocabularyFilterMethod.to_value));
        ("VocabularyFilterName",
          (Option.map x.vocabularyFilterName ~f:String_.to_value));
        ("VocabularyName", (Option.map x.vocabularyName ~f:String_.to_value));
        ("Region", (Option.map x.region ~f:TranscribeRegion.to_value));
        ("EnablePartialResultsStabilization",
          (Option.map x.enablePartialResultsStabilization ~f:Boolean.to_value));
        ("PartialResultsStability",
          (Option.map x.partialResultsStability
             ~f:TranscribePartialResultsStability.to_value));
        ("ContentIdentificationType",
          (Option.map x.contentIdentificationType
             ~f:TranscribeContentIdentificationType.to_value));
        ("ContentRedactionType",
          (Option.map x.contentRedactionType
             ~f:TranscribeContentRedactionType.to_value));
        ("PiiEntityTypes",
          (Option.map x.piiEntityTypes ~f:TranscribePiiEntityTypes.to_value));
        ("LanguageModelName",
          (Option.map x.languageModelName
             ~f:TranscribeLanguageModelName.to_value));
        ("IdentifyLanguage",
          (Option.map x.identifyLanguage ~f:Boolean.to_value));
        ("LanguageOptions",
          (Option.map x.languageOptions ~f:TranscribeLanguageOptions.to_value));
        ("PreferredLanguage",
          (Option.map x.preferredLanguage ~f:TranscribeLanguageCode.to_value));
        ("VocabularyNames",
          (Option.map x.vocabularyNames
             ~f:TranscribeVocabularyNamesOrFilterNamesString.to_value));
        ("VocabularyFilterNames",
          (Option.map x.vocabularyFilterNames
             ~f:TranscribeVocabularyNamesOrFilterNamesString.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let vocabularyFilterNames =
        (Option.map ~f:TranscribeVocabularyNamesOrFilterNamesString.of_xml)
          (Xml.child xml_arg0 "VocabularyFilterNames") in
      let vocabularyNames =
        (Option.map ~f:TranscribeVocabularyNamesOrFilterNamesString.of_xml)
          (Xml.child xml_arg0 "VocabularyNames") in
      let preferredLanguage =
        (Option.map ~f:TranscribeLanguageCode.of_xml)
          (Xml.child xml_arg0 "PreferredLanguage") in
      let languageOptions =
        (Option.map ~f:TranscribeLanguageOptions.of_xml)
          (Xml.child xml_arg0 "LanguageOptions") in
      let identifyLanguage =
        (Option.map ~f:Boolean.of_xml)
          (Xml.child xml_arg0 "IdentifyLanguage") in
      let languageModelName =
        (Option.map ~f:TranscribeLanguageModelName.of_xml)
          (Xml.child xml_arg0 "LanguageModelName") in
      let piiEntityTypes =
        (Option.map ~f:TranscribePiiEntityTypes.of_xml)
          (Xml.child xml_arg0 "PiiEntityTypes") in
      let contentRedactionType =
        (Option.map ~f:TranscribeContentRedactionType.of_xml)
          (Xml.child xml_arg0 "ContentRedactionType") in
      let contentIdentificationType =
        (Option.map ~f:TranscribeContentIdentificationType.of_xml)
          (Xml.child xml_arg0 "ContentIdentificationType") in
      let partialResultsStability =
        (Option.map ~f:TranscribePartialResultsStability.of_xml)
          (Xml.child xml_arg0 "PartialResultsStability") in
      let enablePartialResultsStabilization =
        (Option.map ~f:Boolean.of_xml)
          (Xml.child xml_arg0 "EnablePartialResultsStabilization") in
      let region =
        (Option.map ~f:TranscribeRegion.of_xml) (Xml.child xml_arg0 "Region") in
      let vocabularyName =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "VocabularyName") in
      let vocabularyFilterName =
        (Option.map ~f:String_.of_xml)
          (Xml.child xml_arg0 "VocabularyFilterName") in
      let vocabularyFilterMethod =
        (Option.map ~f:TranscribeVocabularyFilterMethod.of_xml)
          (Xml.child xml_arg0 "VocabularyFilterMethod") in
      let languageCode =
        (Option.map ~f:TranscribeLanguageCode.of_xml)
          (Xml.child xml_arg0 "LanguageCode") in
      make ?vocabularyFilterNames ?vocabularyNames ?preferredLanguage
        ?languageOptions ?identifyLanguage ?languageModelName ?piiEntityTypes
        ?contentRedactionType ?contentIdentificationType
        ?partialResultsStability ?enablePartialResultsStabilization ?region
        ?vocabularyName ?vocabularyFilterName ?vocabularyFilterMethod
        ?languageCode ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let vocabularyFilterNames =
        field_map json__ "VocabularyFilterNames"
          TranscribeVocabularyNamesOrFilterNamesString.of_json in
      let vocabularyNames =
        field_map json__ "VocabularyNames"
          TranscribeVocabularyNamesOrFilterNamesString.of_json in
      let preferredLanguage =
        field_map json__ "PreferredLanguage" TranscribeLanguageCode.of_json in
      let languageOptions =
        field_map json__ "LanguageOptions" TranscribeLanguageOptions.of_json in
      let identifyLanguage =
        field_map json__ "IdentifyLanguage" Boolean.of_json in
      let languageModelName =
        field_map json__ "LanguageModelName"
          TranscribeLanguageModelName.of_json in
      let piiEntityTypes =
        field_map json__ "PiiEntityTypes" TranscribePiiEntityTypes.of_json in
      let contentRedactionType =
        field_map json__ "ContentRedactionType"
          TranscribeContentRedactionType.of_json in
      let contentIdentificationType =
        field_map json__ "ContentIdentificationType"
          TranscribeContentIdentificationType.of_json in
      let partialResultsStability =
        field_map json__ "PartialResultsStability"
          TranscribePartialResultsStability.of_json in
      let enablePartialResultsStabilization =
        field_map json__ "EnablePartialResultsStabilization" Boolean.of_json in
      let region = field_map json__ "Region" TranscribeRegion.of_json in
      let vocabularyName = field_map json__ "VocabularyName" String_.of_json in
      let vocabularyFilterName =
        field_map json__ "VocabularyFilterName" String_.of_json in
      let vocabularyFilterMethod =
        field_map json__ "VocabularyFilterMethod"
          TranscribeVocabularyFilterMethod.of_json in
      let languageCode =
        field_map json__ "LanguageCode" TranscribeLanguageCode.of_json in
      make ?vocabularyFilterNames ?vocabularyNames ?preferredLanguage
        ?languageOptions ?identifyLanguage ?languageModelName ?piiEntityTypes
        ?contentRedactionType ?contentIdentificationType
        ?partialResultsStability ?enablePartialResultsStabilization ?region
        ?vocabularyName ?vocabularyFilterName ?vocabularyFilterMethod
        ?languageCode ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Settings specific for Amazon Transcribe as the live transcription engine. If you specify an invalid combination of parameters, a TranscriptFailed event will be sent with the contents of the BadRequestException generated by Amazon Transcribe. For more information on each parameter and which combinations are valid, refer to the StartStreamTranscription API in the Amazon Transcribe Developer Guide."]
module Attendee =
  struct
    type nonrec t =
      {
      externalUserId: ExternalUserId.t option
        [@ocaml.doc
          "The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application. Pattern: \\[-_&\\@+=,()\\{\\}\\\\[\\\\]\\/\194\171\194\187.:|'\"#a-zA-Z0-9\195\128-\195\191\\s\\]* Values that begin with aws: are reserved. You can't configure a value that uses this prefix. Case insensitive."];
      attendeeId: GuidString.t option
        [@ocaml.doc "The Amazon Chime SDK attendee ID."];
      joinToken: JoinTokenString.t option
        [@ocaml.doc "The join token used by the Amazon Chime SDK attendee."];
      capabilities: AttendeeCapabilities.t option
        [@ocaml.doc
          "The capabilities assigned to an attendee: audio, video, or content. You use the capabilities with a set of values that control what the capabilities can do, such as SendReceive data. For more information about those values, see . When using capabilities, be aware of these corner cases: If you specify MeetingFeatures:Video:MaxResolution:None when you create a meeting, all API requests that include SendReceive, Send, or Receive for AttendeeCapabilities:Video will be rejected with ValidationError 400. If you specify MeetingFeatures:Content:MaxResolution:None when you create a meeting, all API requests that include SendReceive, Send, or Receive for AttendeeCapabilities:Content will be rejected with ValidationError 400. You can't set content capabilities to SendReceive or Receive unless you also set video capabilities to SendReceive or Receive. If you don't set the video capability to receive, the response will contain an HTTP 400 Bad Request status code. However, you can set your video capability to receive and you set your content capability to not receive. If meeting features is defined as Video:MaxResolution:None but Content:MaxResolution is defined as something other than None and attendee capabilities are not defined in the API request, then the default attendee video capability is set to Receive and attendee content capability is set to SendReceive. This is because content SendReceive requires video to be at least Receive. When you change an audio capability from None or Receive to Send or SendReceive , and if the attendee left their microphone unmuted, audio will flow from the attendee to the other meeting participants. When you change a video or content capability from None or Receive to Send or SendReceive , and if the attendee turned on their video or content streams, remote attendees can receive those streams, but only after media renegotiation between the client and the Amazon Chime back-end server."]}
    let make ?externalUserId =
      fun ?attendeeId ->
        fun ?joinToken ->
          fun ?capabilities ->
            fun () -> { externalUserId; attendeeId; joinToken; capabilities }
    let to_value x =
      structure_to_value
        [("ExternalUserId",
           (Option.map x.externalUserId ~f:ExternalUserId.to_value));
        ("AttendeeId", (Option.map x.attendeeId ~f:GuidString.to_value));
        ("JoinToken", (Option.map x.joinToken ~f:JoinTokenString.to_value));
        ("Capabilities",
          (Option.map x.capabilities ~f:AttendeeCapabilities.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let capabilities =
        (Option.map ~f:AttendeeCapabilities.of_xml)
          (Xml.child xml_arg0 "Capabilities") in
      let joinToken =
        (Option.map ~f:JoinTokenString.of_xml)
          (Xml.child xml_arg0 "JoinToken") in
      let attendeeId =
        (Option.map ~f:GuidString.of_xml) (Xml.child xml_arg0 "AttendeeId") in
      let externalUserId =
        (Option.map ~f:ExternalUserId.of_xml)
          (Xml.child xml_arg0 "ExternalUserId") in
      make ?capabilities ?joinToken ?attendeeId ?externalUserId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let capabilities =
        field_map json__ "Capabilities" AttendeeCapabilities.of_json in
      let joinToken = field_map json__ "JoinToken" JoinTokenString.of_json in
      let attendeeId = field_map json__ "AttendeeId" GuidString.of_json in
      let externalUserId =
        field_map json__ "ExternalUserId" ExternalUserId.of_json in
      make ?capabilities ?joinToken ?attendeeId ?externalUserId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "An Amazon Chime SDK meeting attendee. Includes a unique AttendeeId and JoinToken. The JoinToken allows a client to authenticate and join as the specified attendee. The JoinToken expires when the meeting ends, or when DeleteAttendee is called. After that, the attendee is unable to join the meeting. We recommend securely transferring each JoinToken from your server application to the client so that no other client has access to the token except for the one authorized to represent the attendee."]
module ExternalMeetingId =
  struct
    type nonrec t = string
    let context_ = "ExternalMeetingId"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_max i ~max:64) >>=
             (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:"ExternalMeetingId" j
    let to_json = simple_to_json to_value
  end
module MediaPlacement =
  struct
    type nonrec t =
      {
      audioHostUrl: String_.t option [@ocaml.doc "The audio host URL."];
      audioFallbackUrl: String_.t option
        [@ocaml.doc "The audio fallback URL."];
      signalingUrl: String_.t option [@ocaml.doc "The signaling URL."];
      turnControlUrl: String_.t option
        [@ocaml.doc
          "The turn control URL. This parameter is deprecated and no longer used by the Amazon Chime SDK."];
      screenDataUrl: String_.t option
        [@ocaml.doc
          "The screen data URL. This parameter is deprecated and no longer used by the Amazon Chime SDK."];
      screenViewingUrl: String_.t option
        [@ocaml.doc
          "The screen viewing URL. This parameter is deprecated and no longer used by the Amazon Chime SDK."];
      screenSharingUrl: String_.t option
        [@ocaml.doc
          "The screen sharing URL. This parameter is deprecated and no longer used by the Amazon Chime SDK."];
      eventIngestionUrl: String_.t option
        [@ocaml.doc "The event ingestion URL."]}
    let make ?audioHostUrl =
      fun ?audioFallbackUrl ->
        fun ?signalingUrl ->
          fun ?turnControlUrl ->
            fun ?screenDataUrl ->
              fun ?screenViewingUrl ->
                fun ?screenSharingUrl ->
                  fun ?eventIngestionUrl ->
                    fun () ->
                      {
                        audioHostUrl;
                        audioFallbackUrl;
                        signalingUrl;
                        turnControlUrl;
                        screenDataUrl;
                        screenViewingUrl;
                        screenSharingUrl;
                        eventIngestionUrl
                      }
    let to_value x =
      structure_to_value
        [("AudioHostUrl", (Option.map x.audioHostUrl ~f:String_.to_value));
        ("AudioFallbackUrl",
          (Option.map x.audioFallbackUrl ~f:String_.to_value));
        ("SignalingUrl", (Option.map x.signalingUrl ~f:String_.to_value));
        ("TurnControlUrl", (Option.map x.turnControlUrl ~f:String_.to_value));
        ("ScreenDataUrl", (Option.map x.screenDataUrl ~f:String_.to_value));
        ("ScreenViewingUrl",
          (Option.map x.screenViewingUrl ~f:String_.to_value));
        ("ScreenSharingUrl",
          (Option.map x.screenSharingUrl ~f:String_.to_value));
        ("EventIngestionUrl",
          (Option.map x.eventIngestionUrl ~f:String_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let eventIngestionUrl =
        (Option.map ~f:String_.of_xml)
          (Xml.child xml_arg0 "EventIngestionUrl") in
      let screenSharingUrl =
        (Option.map ~f:String_.of_xml)
          (Xml.child xml_arg0 "ScreenSharingUrl") in
      let screenViewingUrl =
        (Option.map ~f:String_.of_xml)
          (Xml.child xml_arg0 "ScreenViewingUrl") in
      let screenDataUrl =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "ScreenDataUrl") in
      let turnControlUrl =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "TurnControlUrl") in
      let signalingUrl =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "SignalingUrl") in
      let audioFallbackUrl =
        (Option.map ~f:String_.of_xml)
          (Xml.child xml_arg0 "AudioFallbackUrl") in
      let audioHostUrl =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "AudioHostUrl") in
      make ?eventIngestionUrl ?screenSharingUrl ?screenViewingUrl
        ?screenDataUrl ?turnControlUrl ?signalingUrl ?audioFallbackUrl
        ?audioHostUrl ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let eventIngestionUrl =
        field_map json__ "EventIngestionUrl" String_.of_json in
      let screenSharingUrl =
        field_map json__ "ScreenSharingUrl" String_.of_json in
      let screenViewingUrl =
        field_map json__ "ScreenViewingUrl" String_.of_json in
      let screenDataUrl = field_map json__ "ScreenDataUrl" String_.of_json in
      let turnControlUrl = field_map json__ "TurnControlUrl" String_.of_json in
      let signalingUrl = field_map json__ "SignalingUrl" String_.of_json in
      let audioFallbackUrl =
        field_map json__ "AudioFallbackUrl" String_.of_json in
      let audioHostUrl = field_map json__ "AudioHostUrl" String_.of_json in
      make ?eventIngestionUrl ?screenSharingUrl ?screenViewingUrl
        ?screenDataUrl ?turnControlUrl ?signalingUrl ?audioFallbackUrl
        ?audioHostUrl ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "A set of endpoints used by clients to connect to the media service group for an Amazon Chime SDK meeting."]
module MediaRegion =
  struct
    type nonrec t = string
    let context_ = "MediaRegion"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_max i ~max:64) >>=
             (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:"MediaRegion" j
    let to_json = simple_to_json to_value
  end
module MeetingFeaturesConfiguration =
  struct
    type nonrec t =
      {
      audio: AudioFeatures.t option
        [@ocaml.doc
          "The configuration settings for the audio features available to a meeting."];
      video: VideoFeatures.t option
        [@ocaml.doc
          "The configuration settings for the video features available to a meeting."];
      content: ContentFeatures.t option
        [@ocaml.doc
          "The configuration settings for the content features available to a meeting."];
      attendee: AttendeeFeatures.t option
        [@ocaml.doc
          "The configuration settings for the attendee features available to a meeting."]}
    let make ?audio =
      fun ?video ->
        fun ?content ->
          fun ?attendee -> fun () -> { audio; video; content; attendee }
    let to_value x =
      structure_to_value
        [("Audio", (Option.map x.audio ~f:AudioFeatures.to_value));
        ("Video", (Option.map x.video ~f:VideoFeatures.to_value));
        ("Content", (Option.map x.content ~f:ContentFeatures.to_value));
        ("Attendee", (Option.map x.attendee ~f:AttendeeFeatures.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let attendee =
        (Option.map ~f:AttendeeFeatures.of_xml)
          (Xml.child xml_arg0 "Attendee") in
      let content =
        (Option.map ~f:ContentFeatures.of_xml) (Xml.child xml_arg0 "Content") in
      let video =
        (Option.map ~f:VideoFeatures.of_xml) (Xml.child xml_arg0 "Video") in
      let audio =
        (Option.map ~f:AudioFeatures.of_xml) (Xml.child xml_arg0 "Audio") in
      make ?attendee ?content ?video ?audio ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let attendee = field_map json__ "Attendee" AttendeeFeatures.of_json in
      let content = field_map json__ "Content" ContentFeatures.of_json in
      let video = field_map json__ "Video" VideoFeatures.of_json in
      let audio = field_map json__ "Audio" AudioFeatures.of_json in
      make ?attendee ?content ?video ?audio ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The configuration settings of the features available to a meeting."]
module PrimaryMeetingId =
  struct
    type nonrec t = string
    let context_ = "PrimaryMeetingId"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_max i ~max:64) >>=
             (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:"PrimaryMeetingId" j
    let to_json = simple_to_json to_value
  end
module TenantIdList =
  struct
    type nonrec t = TenantId.t list
    let make i =
      let open Result in
        ok_or_failwith
          ((check_list_max i ~max:5) >>= (fun () -> 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:TenantId.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:TenantId.of_xml)
    let of_json j =
      list_of_json ~kind:"TenantIdList" ~of_json:TenantId.of_json j
    let to_json v = composed_to_json to_value v
  end
module CreateAttendeeError =
  struct
    type nonrec t =
      {
      externalUserId: ExternalUserId.t option
        [@ocaml.doc
          "The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application. Pattern: \\[-_&\\@+=,()\\{\\}\\\\[\\\\]\\/\194\171\194\187.:|'\"#a-zA-Z0-9\195\128-\195\191\\s\\]* Values that begin with aws: are reserved. You can't configure a value that uses this prefix. Case insensitive."];
      errorCode: String_.t option [@ocaml.doc "The error code."];
      errorMessage: String_.t option [@ocaml.doc "The error message."]}
    let make ?externalUserId =
      fun ?errorCode ->
        fun ?errorMessage ->
          fun () -> { externalUserId; errorCode; errorMessage }
    let to_value x =
      structure_to_value
        [("ExternalUserId",
           (Option.map x.externalUserId ~f:ExternalUserId.to_value));
        ("ErrorCode", (Option.map x.errorCode ~f:String_.to_value));
        ("ErrorMessage", (Option.map x.errorMessage ~f:String_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let errorMessage =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "ErrorMessage") in
      let errorCode =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "ErrorCode") in
      let externalUserId =
        (Option.map ~f:ExternalUserId.of_xml)
          (Xml.child xml_arg0 "ExternalUserId") in
      make ?errorMessage ?errorCode ?externalUserId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let errorMessage = field_map json__ "ErrorMessage" String_.of_json in
      let errorCode = field_map json__ "ErrorCode" String_.of_json in
      let externalUserId =
        field_map json__ "ExternalUserId" ExternalUserId.of_json in
      make ?errorMessage ?errorCode ?externalUserId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The list of errors returned when errors are encountered during the BatchCreateAttendee and CreateAttendee actions. This includes external user IDs, error codes, and error messages."]
module CreateAttendeeRequestItem =
  struct
    type nonrec t =
      {
      externalUserId: ExternalUserId.t
        [@ocaml.doc
          "The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application. Pattern: \\[-_&\\@+=,()\\{\\}\\\\[\\\\]\\/\194\171\194\187.:|'\"#a-zA-Z0-9\195\128-\195\191\\s\\]* Values that begin with aws: are reserved. You can't configure a value that uses this prefix. Case insensitive."];
      capabilities: AttendeeCapabilities.t option
        [@ocaml.doc "A list of one or more capabilities."]}
    let context_ = "CreateAttendeeRequestItem"
    let make ?capabilities =
      fun ~externalUserId -> fun () -> { capabilities; externalUserId }
    let to_value x =
      structure_to_value
        [("ExternalUserId",
           (Some (ExternalUserId.to_value x.externalUserId)));
        ("Capabilities",
          (Option.map x.capabilities ~f:AttendeeCapabilities.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let capabilities =
        (Option.map ~f:AttendeeCapabilities.of_xml)
          (Xml.child xml_arg0 "Capabilities") in
      let externalUserId =
        ExternalUserId.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "ExternalUserId") in
      make ?capabilities ~externalUserId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let capabilities =
        field_map json__ "Capabilities" AttendeeCapabilities.of_json in
      let externalUserId =
        field_map_exn json__ "ExternalUserId" ExternalUserId.of_json in
      make ?capabilities ~externalUserId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The Amazon Chime SDK attendee fields to create, used with the BatchCreateAttendee action."]
module Arn =
  struct
    type nonrec t = string
    let context_ = "Arn"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:1) >>=
             (fun () ->
                (check_string_max i ~max:1024) >>=
                  (fun () ->
                     check_pattern i
                       ~pattern:"^arn[\\/\\:\\-\\_\\.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:"Arn" j
    let to_json = simple_to_json to_value
  end
module AttendeeIdItem =
  struct
    type nonrec t =
      {
      attendeeId: GuidString.t
        [@ocaml.doc "A list of one or more attendee IDs."]}
    let context_ = "AttendeeIdItem"
    let make ~attendeeId = fun () -> { attendeeId }
    let to_value x =
      structure_to_value
        [("AttendeeId", (Some (GuidString.to_value x.attendeeId)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let attendeeId =
        GuidString.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "AttendeeId") in
      make ~attendeeId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let attendeeId = field_map_exn json__ "AttendeeId" GuidString.of_json in
      make ~attendeeId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "A structure that contains one or more attendee IDs."]
module BadRequestException =
  struct
    type nonrec t =
      {
      code: String_.t option ;
      message: String_.t option ;
      requestId: String_.t option
        [@ocaml.doc
          "The request id associated with the call responsible for the exception."]}
    let make ?code =
      fun ?message ->
        fun ?requestId -> fun () -> { code; message; requestId }
    let to_value x =
      structure_to_value
        [("Code", (Option.map x.code ~f:String_.to_value));
        ("Message", (Option.map x.message ~f:String_.to_value));
        ("RequestId", (Option.map x.requestId ~f:String_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let requestId =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "RequestId") in
      let message =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Message") in
      let code = (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Code") in
      make ?requestId ?message ?code ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let requestId = field_map json__ "RequestId" String_.of_json in
      let message = field_map json__ "Message" String_.of_json in
      let code = field_map json__ "Code" String_.of_json in
      make ?requestId ?message ?code ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The input parameters don't match the service's restrictions."]
module ConflictException =
  struct
    type nonrec t =
      {
      code: String_.t option ;
      message: String_.t option ;
      requestId: String_.t option
        [@ocaml.doc "The ID of the request involved in the conflict."]}
    let make ?code =
      fun ?message ->
        fun ?requestId -> fun () -> { code; message; requestId }
    let to_value x =
      structure_to_value
        [("Code", (Option.map x.code ~f:String_.to_value));
        ("Message", (Option.map x.message ~f:String_.to_value));
        ("RequestId", (Option.map x.requestId ~f:String_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let requestId =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "RequestId") in
      let message =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Message") in
      let code = (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Code") in
      make ?requestId ?message ?code ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let requestId = field_map json__ "RequestId" String_.of_json in
      let message = field_map json__ "Message" String_.of_json in
      let code = field_map json__ "Code" String_.of_json in
      make ?requestId ?message ?code ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Multiple instances of the same request have been made simultaneously."]
module ForbiddenException =
  struct
    type nonrec t =
      {
      code: String_.t option ;
      message: String_.t option ;
      requestId: String_.t option
        [@ocaml.doc
          "The request id associated with the call responsible for the exception."]}
    let make ?code =
      fun ?message ->
        fun ?requestId -> fun () -> { code; message; requestId }
    let to_value x =
      structure_to_value
        [("Code", (Option.map x.code ~f:String_.to_value));
        ("Message", (Option.map x.message ~f:String_.to_value));
        ("RequestId", (Option.map x.requestId ~f:String_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let requestId =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "RequestId") in
      let message =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Message") in
      let code = (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Code") in
      make ?requestId ?message ?code ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let requestId = field_map json__ "RequestId" String_.of_json in
      let message = field_map json__ "Message" String_.of_json in
      let code = field_map json__ "Code" String_.of_json in
      make ?requestId ?message ?code ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The client is permanently forbidden from making the request."]
module NotFoundException =
  struct
    type nonrec t =
      {
      code: String_.t option ;
      message: String_.t option ;
      requestId: String_.t option
        [@ocaml.doc
          "The request ID associated with the call responsible for the exception."]}
    let make ?code =
      fun ?message ->
        fun ?requestId -> fun () -> { code; message; requestId }
    let to_value x =
      structure_to_value
        [("Code", (Option.map x.code ~f:String_.to_value));
        ("Message", (Option.map x.message ~f:String_.to_value));
        ("RequestId", (Option.map x.requestId ~f:String_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let requestId =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "RequestId") in
      let message =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Message") in
      let code = (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Code") in
      make ?requestId ?message ?code ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let requestId = field_map json__ "RequestId" String_.of_json in
      let message = field_map json__ "Message" String_.of_json in
      let code = field_map json__ "Code" String_.of_json in
      make ?requestId ?message ?code ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "One or more of the resources in the request does not exist in the system."]
module ServiceFailureException =
  struct
    type nonrec t =
      {
      code: String_.t option ;
      message: String_.t option ;
      requestId: String_.t option
        [@ocaml.doc "The ID of the failed request."]}
    let make ?code =
      fun ?message ->
        fun ?requestId -> fun () -> { code; message; requestId }
    let to_value x =
      structure_to_value
        [("Code", (Option.map x.code ~f:String_.to_value));
        ("Message", (Option.map x.message ~f:String_.to_value));
        ("RequestId", (Option.map x.requestId ~f:String_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let requestId =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "RequestId") in
      let message =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Message") in
      let code = (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Code") in
      make ?requestId ?message ?code ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let requestId = field_map json__ "RequestId" String_.of_json in
      let message = field_map json__ "Message" String_.of_json in
      let code = field_map json__ "Code" String_.of_json in
      make ?requestId ?message ?code ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "The service encountered an unexpected error."]
module ServiceUnavailableException =
  struct
    type nonrec t =
      {
      code: String_.t option ;
      message: String_.t option ;
      requestId: String_.t option
        [@ocaml.doc
          "The request id associated with the call responsible for the exception."];
      retryAfterSeconds: RetryAfterSeconds.t option
        [@ocaml.doc
          "The number of seconds the caller should wait before retrying."]}
    let make ?code =
      fun ?message ->
        fun ?requestId ->
          fun ?retryAfterSeconds ->
            fun () -> { code; message; requestId; retryAfterSeconds }
    let to_value x =
      structure_to_value
        [("Code", (Option.map x.code ~f:String_.to_value));
        ("Message", (Option.map x.message ~f:String_.to_value));
        ("RequestId", (Option.map x.requestId ~f:String_.to_value));
        ("Retry-After",
          (Option.map x.retryAfterSeconds ~f:RetryAfterSeconds.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let retryAfterSeconds =
        (Option.map ~f:RetryAfterSeconds.of_xml)
          (Xml.child xml_arg0 "Retry-After") in
      let requestId =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "RequestId") in
      let message =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Message") in
      let code = (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Code") in
      make ?retryAfterSeconds ?requestId ?message ?code ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let retryAfterSeconds =
        field_map json__ "RetryAfterSeconds" RetryAfterSeconds.of_json in
      let requestId = field_map json__ "RequestId" String_.of_json in
      let message = field_map json__ "Message" String_.of_json in
      let code = field_map json__ "Code" String_.of_json in
      make ?retryAfterSeconds ?requestId ?message ?code ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "The service is currently unavailable."]
module ThrottlingException =
  struct
    type nonrec t =
      {
      code: String_.t option ;
      message: String_.t option ;
      requestId: String_.t option
        [@ocaml.doc
          "The ID of the request that exceeded the throttling limit."]}
    let make ?code =
      fun ?message ->
        fun ?requestId -> fun () -> { code; message; requestId }
    let to_value x =
      structure_to_value
        [("Code", (Option.map x.code ~f:String_.to_value));
        ("Message", (Option.map x.message ~f:String_.to_value));
        ("RequestId", (Option.map x.requestId ~f:String_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let requestId =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "RequestId") in
      let message =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Message") in
      let code = (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Code") in
      make ?requestId ?message ?code ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let requestId = field_map json__ "RequestId" String_.of_json in
      let message = field_map json__ "Message" String_.of_json in
      let code = field_map json__ "Code" String_.of_json in
      make ?requestId ?message ?code ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The number of customer requests exceeds the request rate limit."]
module UnauthorizedException =
  struct
    type nonrec t =
      {
      code: String_.t option ;
      message: String_.t option ;
      requestId: String_.t option
        [@ocaml.doc
          "The request id associated with the call responsible for the exception."]}
    let make ?code =
      fun ?message ->
        fun ?requestId -> fun () -> { code; message; requestId }
    let to_value x =
      structure_to_value
        [("Code", (Option.map x.code ~f:String_.to_value));
        ("Message", (Option.map x.message ~f:String_.to_value));
        ("RequestId", (Option.map x.requestId ~f:String_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let requestId =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "RequestId") in
      let message =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Message") in
      let code = (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Code") in
      make ?requestId ?message ?code ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let requestId = field_map json__ "RequestId" String_.of_json in
      let message = field_map json__ "Message" String_.of_json in
      let code = field_map json__ "Code" String_.of_json in
      make ?requestId ?message ?code ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "The user isn't authorized to request a resource."]
module LimitExceededException =
  struct
    type nonrec t =
      {
      code: String_.t option ;
      message: String_.t option ;
      requestId: String_.t option
        [@ocaml.doc
          "The request id associated with the call responsible for the exception."]}
    let make ?code =
      fun ?message ->
        fun ?requestId -> fun () -> { code; message; requestId }
    let to_value x =
      structure_to_value
        [("Code", (Option.map x.code ~f:String_.to_value));
        ("Message", (Option.map x.message ~f:String_.to_value));
        ("RequestId", (Option.map x.requestId ~f:String_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let requestId =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "RequestId") in
      let message =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Message") in
      let code = (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Code") in
      make ?requestId ?message ?code ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let requestId = field_map json__ "RequestId" String_.of_json in
      let message = field_map json__ "Message" String_.of_json in
      let code = field_map json__ "Code" String_.of_json in
      make ?requestId ?message ?code ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "The request exceeds the resource limit."]
module ResourceNotFoundException =
  struct
    type nonrec t =
      {
      code: String_.t option ;
      message: String_.t option ;
      requestId: String_.t option
        [@ocaml.doc "The ID of the resource that couldn't be found."];
      resourceName: AmazonResourceName.t option
        [@ocaml.doc "The name of the resource that couldn't be found."]}
    let make ?code =
      fun ?message ->
        fun ?requestId ->
          fun ?resourceName ->
            fun () -> { code; message; requestId; resourceName }
    let to_value x =
      structure_to_value
        [("Code", (Option.map x.code ~f:String_.to_value));
        ("Message", (Option.map x.message ~f:String_.to_value));
        ("RequestId", (Option.map x.requestId ~f:String_.to_value));
        ("ResourceName",
          (Option.map x.resourceName ~f:AmazonResourceName.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let resourceName =
        (Option.map ~f:AmazonResourceName.of_xml)
          (Xml.child xml_arg0 "ResourceName") in
      let requestId =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "RequestId") in
      let message =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Message") in
      let code = (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Code") in
      make ?resourceName ?requestId ?message ?code ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let resourceName =
        field_map json__ "ResourceName" AmazonResourceName.of_json in
      let requestId = field_map json__ "RequestId" String_.of_json in
      let message = field_map json__ "Message" String_.of_json in
      let code = field_map json__ "Code" String_.of_json in
      make ?resourceName ?requestId ?message ?code ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "The resource that you want to tag couldn't be found."]
module TagKeyList =
  struct
    type nonrec t = TagKey.t list
    let make i =
      let open Result in
        ok_or_failwith
          ((check_list_max i ~max:50) >>= (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 TooManyTagsException =
  struct
    type nonrec t =
      {
      code: String_.t option ;
      message: String_.t option ;
      requestId: String_.t option
        [@ocaml.doc "The ID of the request that contains too many tags."];
      resourceName: AmazonResourceName.t option
        [@ocaml.doc "The name of the resource that received too many tags."]}
    let make ?code =
      fun ?message ->
        fun ?requestId ->
          fun ?resourceName ->
            fun () -> { code; message; requestId; resourceName }
    let to_value x =
      structure_to_value
        [("Code", (Option.map x.code ~f:String_.to_value));
        ("Message", (Option.map x.message ~f:String_.to_value));
        ("RequestId", (Option.map x.requestId ~f:String_.to_value));
        ("ResourceName",
          (Option.map x.resourceName ~f:AmazonResourceName.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let resourceName =
        (Option.map ~f:AmazonResourceName.of_xml)
          (Xml.child xml_arg0 "ResourceName") in
      let requestId =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "RequestId") in
      let message =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Message") in
      let code = (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Code") in
      make ?resourceName ?requestId ?message ?code ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let resourceName =
        field_map json__ "ResourceName" AmazonResourceName.of_json in
      let requestId = field_map json__ "RequestId" String_.of_json in
      let message = field_map json__ "Message" String_.of_json in
      let code = field_map json__ "Code" String_.of_json in
      make ?resourceName ?requestId ?message ?code ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "Too many tags were added to the specified resource."]
module TagList =
  struct
    type nonrec t = Tag.t list
    let make i =
      let open Result in
        ok_or_failwith
          ((check_list_max i ~max:50) >>= (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 TranscriptionConfiguration =
  struct
    type nonrec t =
      {
      engineTranscribeSettings: EngineTranscribeSettings.t option
        [@ocaml.doc
          "The transcription configuration settings passed to Amazon Transcribe."];
      engineTranscribeMedicalSettings:
        EngineTranscribeMedicalSettings.t option
        [@ocaml.doc
          "The transcription configuration settings passed to Amazon Transcribe Medical."]}
    let make ?engineTranscribeSettings =
      fun ?engineTranscribeMedicalSettings ->
        fun () ->
          { engineTranscribeSettings; engineTranscribeMedicalSettings }
    let to_value x =
      structure_to_value
        [("EngineTranscribeSettings",
           (Option.map x.engineTranscribeSettings
              ~f:EngineTranscribeSettings.to_value));
        ("EngineTranscribeMedicalSettings",
          (Option.map x.engineTranscribeMedicalSettings
             ~f:EngineTranscribeMedicalSettings.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let engineTranscribeMedicalSettings =
        (Option.map ~f:EngineTranscribeMedicalSettings.of_xml)
          (Xml.child xml_arg0 "EngineTranscribeMedicalSettings") in
      let engineTranscribeSettings =
        (Option.map ~f:EngineTranscribeSettings.of_xml)
          (Xml.child xml_arg0 "EngineTranscribeSettings") in
      make ?engineTranscribeMedicalSettings ?engineTranscribeSettings ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let engineTranscribeMedicalSettings =
        field_map json__ "EngineTranscribeMedicalSettings"
          EngineTranscribeMedicalSettings.of_json in
      let engineTranscribeSettings =
        field_map json__ "EngineTranscribeSettings"
          EngineTranscribeSettings.of_json in
      make ?engineTranscribeMedicalSettings ?engineTranscribeSettings ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The configuration for the current transcription operation. Must contain EngineTranscribeSettings or EngineTranscribeMedicalSettings."]
module AttendeeList =
  struct
    type nonrec t = Attendee.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:Attendee.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:Attendee.of_xml)
    let of_json j =
      list_of_json ~kind:"AttendeeList" ~of_json:Attendee.of_json j
    let to_json v = composed_to_json to_value v
  end
module ResultMax =
  struct
    type nonrec t = int
    let make i =
      let open Result in
        ok_or_failwith
          ((check_int_max i ~max:100) >>= (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 ResultMax" 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 Meeting =
  struct
    type nonrec t =
      {
      meetingId: GuidString.t option
        [@ocaml.doc "The Amazon Chime SDK meeting ID."];
      meetingHostId: ExternalUserId.t option [@ocaml.doc "Reserved."];
      externalMeetingId: ExternalMeetingId.t option
        [@ocaml.doc
          "The external meeting ID. Pattern: \\[-_&\\@+=,()\\{\\}\\\\[\\\\]\\/\194\171\194\187.:|'\"#a-zA-Z0-9\195\128-\195\191\\s\\]* Values that begin with aws: are reserved. You can't configure a value that uses this prefix. Case insensitive."];
      mediaRegion: MediaRegion.t option
        [@ocaml.doc
          "The Region in which you create the meeting. Available values: af-south-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-south-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-1, us-east-2, us-west-1, us-west-2. Available values in Amazon Web Services GovCloud (US) Regions: us-gov-east-1, us-gov-west-1."];
      mediaPlacement: MediaPlacement.t option
        [@ocaml.doc "The media placement for the meeting."];
      meetingFeatures: MeetingFeaturesConfiguration.t option
        [@ocaml.doc
          "The features available to a meeting, such as echo reduction."];
      primaryMeetingId: PrimaryMeetingId.t option
        [@ocaml.doc
          "When specified, replicates the media from the primary meeting to this meeting."];
      tenantIds: TenantIdList.t option [@ocaml.doc "Array of strings."];
      meetingArn: AmazonResourceName.t option
        [@ocaml.doc "The ARN of the meeting."]}
    let make ?meetingId =
      fun ?meetingHostId ->
        fun ?externalMeetingId ->
          fun ?mediaRegion ->
            fun ?mediaPlacement ->
              fun ?meetingFeatures ->
                fun ?primaryMeetingId ->
                  fun ?tenantIds ->
                    fun ?meetingArn ->
                      fun () ->
                        {
                          meetingId;
                          meetingHostId;
                          externalMeetingId;
                          mediaRegion;
                          mediaPlacement;
                          meetingFeatures;
                          primaryMeetingId;
                          tenantIds;
                          meetingArn
                        }
    let to_value x =
      structure_to_value
        [("MeetingId", (Option.map x.meetingId ~f:GuidString.to_value));
        ("MeetingHostId",
          (Option.map x.meetingHostId ~f:ExternalUserId.to_value));
        ("ExternalMeetingId",
          (Option.map x.externalMeetingId ~f:ExternalMeetingId.to_value));
        ("MediaRegion", (Option.map x.mediaRegion ~f:MediaRegion.to_value));
        ("MediaPlacement",
          (Option.map x.mediaPlacement ~f:MediaPlacement.to_value));
        ("MeetingFeatures",
          (Option.map x.meetingFeatures
             ~f:MeetingFeaturesConfiguration.to_value));
        ("PrimaryMeetingId",
          (Option.map x.primaryMeetingId ~f:PrimaryMeetingId.to_value));
        ("TenantIds", (Option.map x.tenantIds ~f:TenantIdList.to_value));
        ("MeetingArn",
          (Option.map x.meetingArn ~f:AmazonResourceName.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let meetingArn =
        (Option.map ~f:AmazonResourceName.of_xml)
          (Xml.child xml_arg0 "MeetingArn") in
      let tenantIds =
        (Option.map ~f:TenantIdList.of_xml) (Xml.child xml_arg0 "TenantIds") in
      let primaryMeetingId =
        (Option.map ~f:PrimaryMeetingId.of_xml)
          (Xml.child xml_arg0 "PrimaryMeetingId") in
      let meetingFeatures =
        (Option.map ~f:MeetingFeaturesConfiguration.of_xml)
          (Xml.child xml_arg0 "MeetingFeatures") in
      let mediaPlacement =
        (Option.map ~f:MediaPlacement.of_xml)
          (Xml.child xml_arg0 "MediaPlacement") in
      let mediaRegion =
        (Option.map ~f:MediaRegion.of_xml) (Xml.child xml_arg0 "MediaRegion") in
      let externalMeetingId =
        (Option.map ~f:ExternalMeetingId.of_xml)
          (Xml.child xml_arg0 "ExternalMeetingId") in
      let meetingHostId =
        (Option.map ~f:ExternalUserId.of_xml)
          (Xml.child xml_arg0 "MeetingHostId") in
      let meetingId =
        (Option.map ~f:GuidString.of_xml) (Xml.child xml_arg0 "MeetingId") in
      make ?meetingArn ?tenantIds ?primaryMeetingId ?meetingFeatures
        ?mediaPlacement ?mediaRegion ?externalMeetingId ?meetingHostId
        ?meetingId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let meetingArn =
        field_map json__ "MeetingArn" AmazonResourceName.of_json in
      let tenantIds = field_map json__ "TenantIds" TenantIdList.of_json in
      let primaryMeetingId =
        field_map json__ "PrimaryMeetingId" PrimaryMeetingId.of_json in
      let meetingFeatures =
        field_map json__ "MeetingFeatures"
          MeetingFeaturesConfiguration.of_json in
      let mediaPlacement =
        field_map json__ "MediaPlacement" MediaPlacement.of_json in
      let mediaRegion = field_map json__ "MediaRegion" MediaRegion.of_json in
      let externalMeetingId =
        field_map json__ "ExternalMeetingId" ExternalMeetingId.of_json in
      let meetingHostId =
        field_map json__ "MeetingHostId" ExternalUserId.of_json in
      let meetingId = field_map json__ "MeetingId" GuidString.of_json in
      make ?meetingArn ?tenantIds ?primaryMeetingId ?meetingFeatures
        ?mediaPlacement ?mediaRegion ?externalMeetingId ?meetingHostId
        ?meetingId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "A meeting created using the Amazon Chime SDK."]
module BatchCreateAttendeeErrorList =
  struct
    type nonrec t = CreateAttendeeError.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:CreateAttendeeError.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:CreateAttendeeError.of_xml)
    let of_json j =
      list_of_json ~kind:"BatchCreateAttendeeErrorList"
        ~of_json:CreateAttendeeError.of_json j
    let to_json v = composed_to_json to_value v
  end
module ClientRequestToken =
  struct
    type nonrec t = string
    let context_ = "ClientRequestToken"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:2) >>=
             (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:"ClientRequestToken" j
    let to_json = simple_to_json to_value
  end
module CreateMeetingWithAttendeesRequestItemList =
  struct
    type nonrec t = CreateAttendeeRequestItem.t list
    let make i =
      let open Result in
        ok_or_failwith
          ((check_list_max i ~max:20) >>= (fun () -> 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:CreateAttendeeRequestItem.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:CreateAttendeeRequestItem.of_xml)
    let of_json j =
      list_of_json ~kind:"CreateMeetingWithAttendeesRequestItemList"
        ~of_json:CreateAttendeeRequestItem.of_json j
    let to_json v = composed_to_json to_value v
  end
module MediaPlacementNetworkType =
  struct
    type nonrec t =
      | Ipv4Only 
      | DualStack 
      | Non_static_id of string 
    let make i = i
    let to_string =
      function
      | Ipv4Only -> "Ipv4Only"
      | DualStack -> "DualStack"
      | Non_static_id s -> s
    let of_string =
      function
      | "Ipv4Only" -> Ipv4Only
      | "DualStack" -> DualStack
      | 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 MediaPlacementNetworkType" xml_arg0)
    let of_json j =
      of_string (string_of_json ~kind:"MediaPlacementNetworkType" j)
    let to_json = simple_to_json to_value
  end
module NotificationsConfiguration =
  struct
    type nonrec t =
      {
      lambdaFunctionArn: Arn.t option
        [@ocaml.doc
          "The ARN of the Amazon Web Services Lambda function in the notifications configuration."];
      snsTopicArn: Arn.t option [@ocaml.doc "The ARN of the SNS topic."];
      sqsQueueArn: Arn.t option [@ocaml.doc "The ARN of the SQS queue."]}
    let make ?lambdaFunctionArn =
      fun ?snsTopicArn ->
        fun ?sqsQueueArn ->
          fun () -> { lambdaFunctionArn; snsTopicArn; sqsQueueArn }
    let to_value x =
      structure_to_value
        [("LambdaFunctionArn",
           (Option.map x.lambdaFunctionArn ~f:Arn.to_value));
        ("SnsTopicArn", (Option.map x.snsTopicArn ~f:Arn.to_value));
        ("SqsQueueArn", (Option.map x.sqsQueueArn ~f:Arn.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let sqsQueueArn =
        (Option.map ~f:Arn.of_xml) (Xml.child xml_arg0 "SqsQueueArn") in
      let snsTopicArn =
        (Option.map ~f:Arn.of_xml) (Xml.child xml_arg0 "SnsTopicArn") in
      let lambdaFunctionArn =
        (Option.map ~f:Arn.of_xml) (Xml.child xml_arg0 "LambdaFunctionArn") in
      make ?sqsQueueArn ?snsTopicArn ?lambdaFunctionArn ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let sqsQueueArn = field_map json__ "SqsQueueArn" Arn.of_json in
      let snsTopicArn = field_map json__ "SnsTopicArn" Arn.of_json in
      let lambdaFunctionArn =
        field_map json__ "LambdaFunctionArn" Arn.of_json in
      make ?sqsQueueArn ?snsTopicArn ?lambdaFunctionArn ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The configuration for resource targets to receive notifications when meeting and attendee events occur."]
module UnprocessableEntityException =
  struct
    type nonrec t =
      {
      code: String_.t option ;
      message: String_.t option ;
      requestId: String_.t option
        [@ocaml.doc
          "The request id associated with the call responsible for the exception."]}
    let make ?code =
      fun ?message ->
        fun ?requestId -> fun () -> { code; message; requestId }
    let to_value x =
      structure_to_value
        [("Code", (Option.map x.code ~f:String_.to_value));
        ("Message", (Option.map x.message ~f:String_.to_value));
        ("RequestId", (Option.map x.requestId ~f:String_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let requestId =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "RequestId") in
      let message =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Message") in
      let code = (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Code") in
      make ?requestId ?message ?code ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let requestId = field_map json__ "RequestId" String_.of_json in
      let message = field_map json__ "Message" String_.of_json in
      let code = field_map json__ "Code" String_.of_json in
      make ?requestId ?message ?code ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The request was well-formed but was unable to be followed due to semantic errors."]
module AttendeeIdsList =
  struct
    type nonrec t = AttendeeIdItem.t list
    let make i =
      let open Result in
        ok_or_failwith
          ((check_list_max i ~max:250) >>=
             (fun () -> 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:AttendeeIdItem.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:AttendeeIdItem.of_xml)
    let of_json j =
      list_of_json ~kind:"AttendeeIdsList" ~of_json:AttendeeIdItem.of_json j
    let to_json v = composed_to_json to_value v
  end
module CreateAttendeeRequestItemList =
  struct
    type nonrec t = CreateAttendeeRequestItem.t list
    let make i =
      let open Result in
        ok_or_failwith
          ((check_list_max i ~max:100) >>=
             (fun () -> 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:CreateAttendeeRequestItem.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:CreateAttendeeRequestItem.of_xml)
    let of_json j =
      list_of_json ~kind:"CreateAttendeeRequestItemList"
        ~of_json:CreateAttendeeRequestItem.of_json j
    let to_json v = composed_to_json to_value v
  end
module UpdateAttendeeCapabilitiesResponse =
  struct
    type nonrec t =
      {
      attendee: Attendee.t option [@ocaml.doc "The updated attendee data."]}
    type nonrec error =
      [ `BadRequestException of BadRequestException.t 
      | `ConflictException of ConflictException.t 
      | `ForbiddenException of ForbiddenException.t 
      | `NotFoundException of NotFoundException.t 
      | `ServiceFailureException of ServiceFailureException.t 
      | `ServiceUnavailableException of ServiceUnavailableException.t 
      | `ThrottlingException of ThrottlingException.t 
      | `UnauthorizedException of UnauthorizedException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?attendee = fun () -> { attendee }
    let error_of_json name json =
      match name with
      | "BadRequestException" ->
          `BadRequestException (BadRequestException.of_json json)
      | "ConflictException" ->
          `ConflictException (ConflictException.of_json json)
      | "ForbiddenException" ->
          `ForbiddenException (ForbiddenException.of_json json)
      | "NotFoundException" ->
          `NotFoundException (NotFoundException.of_json json)
      | "ServiceFailureException" ->
          `ServiceFailureException (ServiceFailureException.of_json json)
      | "ServiceUnavailableException" ->
          `ServiceUnavailableException
            (ServiceUnavailableException.of_json json)
      | "ThrottlingException" ->
          `ThrottlingException (ThrottlingException.of_json json)
      | "UnauthorizedException" ->
          `UnauthorizedException (UnauthorizedException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "BadRequestException" ->
          `BadRequestException (BadRequestException.of_xml xml)
      | "ConflictException" ->
          `ConflictException (ConflictException.of_xml xml)
      | "ForbiddenException" ->
          `ForbiddenException (ForbiddenException.of_xml xml)
      | "NotFoundException" ->
          `NotFoundException (NotFoundException.of_xml xml)
      | "ServiceFailureException" ->
          `ServiceFailureException (ServiceFailureException.of_xml xml)
      | "ServiceUnavailableException" ->
          `ServiceUnavailableException
            (ServiceUnavailableException.of_xml xml)
      | "ThrottlingException" ->
          `ThrottlingException (ThrottlingException.of_xml xml)
      | "UnauthorizedException" ->
          `UnauthorizedException (UnauthorizedException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `BadRequestException e ->
          `Assoc
            [("error", (`String "BadRequestException"));
            ("details", (BadRequestException.to_json e))]
      | `ConflictException e ->
          `Assoc
            [("error", (`String "ConflictException"));
            ("details", (ConflictException.to_json e))]
      | `ForbiddenException e ->
          `Assoc
            [("error", (`String "ForbiddenException"));
            ("details", (ForbiddenException.to_json e))]
      | `NotFoundException e ->
          `Assoc
            [("error", (`String "NotFoundException"));
            ("details", (NotFoundException.to_json e))]
      | `ServiceFailureException e ->
          `Assoc
            [("error", (`String "ServiceFailureException"));
            ("details", (ServiceFailureException.to_json e))]
      | `ServiceUnavailableException e ->
          `Assoc
            [("error", (`String "ServiceUnavailableException"));
            ("details", (ServiceUnavailableException.to_json e))]
      | `ThrottlingException e ->
          `Assoc
            [("error", (`String "ThrottlingException"));
            ("details", (ThrottlingException.to_json e))]
      | `UnauthorizedException e ->
          `Assoc
            [("error", (`String "UnauthorizedException"));
            ("details", (UnauthorizedException.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
        [("Attendee", (Option.map x.attendee ~f:Attendee.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let attendee =
        (Option.map ~f:Attendee.of_xml) (Xml.child xml_arg0 "Attendee") in
      make ?attendee ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let attendee = field_map json__ "Attendee" Attendee.of_json in
      make ?attendee ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The capabilities that you want to update. You use the capabilities with a set of values that control what the capabilities can do, such as SendReceive data. For more information about those values, see . When using capabilities, be aware of these corner cases: If you specify MeetingFeatures:Video:MaxResolution:None when you create a meeting, all API requests that include SendReceive, Send, or Receive for AttendeeCapabilities:Video will be rejected with ValidationError 400. If you specify MeetingFeatures:Content:MaxResolution:None when you create a meeting, all API requests that include SendReceive, Send, or Receive for AttendeeCapabilities:Content will be rejected with ValidationError 400. You can't set content capabilities to SendReceive or Receive unless you also set video capabilities to SendReceive or Receive. If you don't set the video capability to receive, the response will contain an HTTP 400 Bad Request status code. However, you can set your video capability to receive and you set your content capability to not receive. If meeting features is defined as Video:MaxResolution:None but Content:MaxResolution is defined as something other than None and attendee capabilities are not defined in the API request, then the default attendee video capability is set to Receive and attendee content capability is set to SendReceive. This is because content SendReceive requires video to be at least Receive. When you change an audio capability from None or Receive to Send or SendReceive , and if the attendee left their microphone unmuted, audio will flow from the attendee to the other meeting participants. When you change a video or content capability from None or Receive to Send or SendReceive , and if the attendee turned on their video or content streams, remote attendees can receive those streams, but only after media renegotiation between the client and the Amazon Chime back-end server."]
module UpdateAttendeeCapabilitiesRequest =
  struct
    type nonrec t =
      {
      meetingId: GuidString.t
        [@ocaml.doc
          "The ID of the meeting associated with the update request."];
      attendeeId: GuidString.t
        [@ocaml.doc
          "The ID of the attendee associated with the update request."];
      capabilities: AttendeeCapabilities.t
        [@ocaml.doc "The capabilities that you want to update."]}
    let context_ = "UpdateAttendeeCapabilitiesRequest"
    let make ~meetingId =
      fun ~attendeeId ->
        fun ~capabilities ->
          fun () -> { meetingId; attendeeId; capabilities }
    let to_value x =
      structure_to_value
        [("MeetingId", (Some (GuidString.to_value x.meetingId)));
        ("AttendeeId", (Some (GuidString.to_value x.attendeeId)));
        ("Capabilities",
          (Some (AttendeeCapabilities.to_value x.capabilities)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let capabilities =
        AttendeeCapabilities.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "Capabilities") in
      let attendeeId =
        GuidString.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "AttendeeId") in
      let meetingId =
        GuidString.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "MeetingId") in
      make ~capabilities ~attendeeId ~meetingId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let capabilities =
        field_map_exn json__ "Capabilities" AttendeeCapabilities.of_json in
      let attendeeId = field_map_exn json__ "AttendeeId" GuidString.of_json in
      let meetingId = field_map_exn json__ "MeetingId" GuidString.of_json in
      make ~capabilities ~attendeeId ~meetingId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The capabilities that you want to update. You use the capabilities with a set of values that control what the capabilities can do, such as SendReceive data. For more information about those values, see . When using capabilities, be aware of these corner cases: If you specify MeetingFeatures:Video:MaxResolution:None when you create a meeting, all API requests that include SendReceive, Send, or Receive for AttendeeCapabilities:Video will be rejected with ValidationError 400. If you specify MeetingFeatures:Content:MaxResolution:None when you create a meeting, all API requests that include SendReceive, Send, or Receive for AttendeeCapabilities:Content will be rejected with ValidationError 400. You can't set content capabilities to SendReceive or Receive unless you also set video capabilities to SendReceive or Receive. If you don't set the video capability to receive, the response will contain an HTTP 400 Bad Request status code. However, you can set your video capability to receive and you set your content capability to not receive. If meeting features is defined as Video:MaxResolution:None but Content:MaxResolution is defined as something other than None and attendee capabilities are not defined in the API request, then the default attendee video capability is set to Receive and attendee content capability is set to SendReceive. This is because content SendReceive requires video to be at least Receive. When you change an audio capability from None or Receive to Send or SendReceive , and if the attendee left their microphone unmuted, audio will flow from the attendee to the other meeting participants. When you change a video or content capability from None or Receive to Send or SendReceive , and if the attendee turned on their video or content streams, remote attendees can receive those streams, but only after media renegotiation between the client and the Amazon Chime back-end server."]
module UntagResourceResponse =
  struct
    type nonrec t = unit
    type nonrec error =
      [ `BadRequestException of BadRequestException.t 
      | `ForbiddenException of ForbiddenException.t 
      | `LimitExceededException of LimitExceededException.t 
      | `ResourceNotFoundException of ResourceNotFoundException.t 
      | `ServiceFailureException of ServiceFailureException.t 
      | `ServiceUnavailableException of ServiceUnavailableException.t 
      | `ThrottlingException of ThrottlingException.t 
      | `UnauthorizedException of UnauthorizedException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make () = ()
    let error_of_json name json =
      match name with
      | "BadRequestException" ->
          `BadRequestException (BadRequestException.of_json json)
      | "ForbiddenException" ->
          `ForbiddenException (ForbiddenException.of_json json)
      | "LimitExceededException" ->
          `LimitExceededException (LimitExceededException.of_json json)
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_json json)
      | "ServiceFailureException" ->
          `ServiceFailureException (ServiceFailureException.of_json json)
      | "ServiceUnavailableException" ->
          `ServiceUnavailableException
            (ServiceUnavailableException.of_json json)
      | "ThrottlingException" ->
          `ThrottlingException (ThrottlingException.of_json json)
      | "UnauthorizedException" ->
          `UnauthorizedException (UnauthorizedException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "BadRequestException" ->
          `BadRequestException (BadRequestException.of_xml xml)
      | "ForbiddenException" ->
          `ForbiddenException (ForbiddenException.of_xml xml)
      | "LimitExceededException" ->
          `LimitExceededException (LimitExceededException.of_xml xml)
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_xml xml)
      | "ServiceFailureException" ->
          `ServiceFailureException (ServiceFailureException.of_xml xml)
      | "ServiceUnavailableException" ->
          `ServiceUnavailableException
            (ServiceUnavailableException.of_xml xml)
      | "ThrottlingException" ->
          `ThrottlingException (ThrottlingException.of_xml xml)
      | "UnauthorizedException" ->
          `UnauthorizedException (UnauthorizedException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `BadRequestException e ->
          `Assoc
            [("error", (`String "BadRequestException"));
            ("details", (BadRequestException.to_json e))]
      | `ForbiddenException e ->
          `Assoc
            [("error", (`String "ForbiddenException"));
            ("details", (ForbiddenException.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))]
      | `ServiceFailureException e ->
          `Assoc
            [("error", (`String "ServiceFailureException"));
            ("details", (ServiceFailureException.to_json e))]
      | `ServiceUnavailableException e ->
          `Assoc
            [("error", (`String "ServiceUnavailableException"));
            ("details", (ServiceUnavailableException.to_json e))]
      | `ThrottlingException e ->
          `Assoc
            [("error", (`String "ThrottlingException"));
            ("details", (ThrottlingException.to_json e))]
      | `UnauthorizedException e ->
          `Assoc
            [("error", (`String "UnauthorizedException"));
            ("details", (UnauthorizedException.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 the specified tags from the specified resources. When you specify a tag key, the action removes both that key and its associated value. The operation succeeds even if you attempt to remove tags from a resource that were already removed. Note the following: To remove tags from a resource, you need the necessary permissions for the service that the resource belongs to as well as permissions for removing tags. For more information, see the documentation for the service whose resource you want to untag. You can only tag resources that are located in the specified Amazon Web Services Region for the calling Amazon Web Services account. Minimum permissions In addition to the tag:UntagResources permission required by this operation, you must also have the remove tags permission defined by the service that created the resource. For example, to remove the tags from an Amazon EC2 instance using the UntagResources operation, you must have both of the following permissions: tag:UntagResource ChimeSDKMeetings:DeleteTags"]
module UntagResourceRequest =
  struct
    type nonrec t =
      {
      resourceARN: AmazonResourceName.t
        [@ocaml.doc
          "The ARN of the resource that you're removing tags from."];
      tagKeys: TagKeyList.t
        [@ocaml.doc "The tag keys being removed from the resources."]}
    let context_ = "UntagResourceRequest"
    let make ~resourceARN =
      fun ~tagKeys -> fun () -> { resourceARN; tagKeys }
    let to_value x =
      structure_to_value
        [("ResourceARN", (Some (AmazonResourceName.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 =
        AmazonResourceName.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" AmazonResourceName.of_json in
      make ~tagKeys ~resourceARN ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Removes the specified tags from the specified resources. When you specify a tag key, the action removes both that key and its associated value. The operation succeeds even if you attempt to remove tags from a resource that were already removed. Note the following: To remove tags from a resource, you need the necessary permissions for the service that the resource belongs to as well as permissions for removing tags. For more information, see the documentation for the service whose resource you want to untag. You can only tag resources that are located in the specified Amazon Web Services Region for the calling Amazon Web Services account. Minimum permissions In addition to the tag:UntagResources permission required by this operation, you must also have the remove tags permission defined by the service that created the resource. For example, to remove the tags from an Amazon EC2 instance using the UntagResources operation, you must have both of the following permissions: tag:UntagResource ChimeSDKMeetings:DeleteTags"]
module TagResourceResponse =
  struct
    type nonrec t = unit
    type nonrec error =
      [ `BadRequestException of BadRequestException.t 
      | `ForbiddenException of ForbiddenException.t 
      | `LimitExceededException of LimitExceededException.t 
      | `ResourceNotFoundException of ResourceNotFoundException.t 
      | `ServiceFailureException of ServiceFailureException.t 
      | `ServiceUnavailableException of ServiceUnavailableException.t 
      | `ThrottlingException of ThrottlingException.t 
      | `TooManyTagsException of TooManyTagsException.t 
      | `UnauthorizedException of UnauthorizedException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make () = ()
    let error_of_json name json =
      match name with
      | "BadRequestException" ->
          `BadRequestException (BadRequestException.of_json json)
      | "ForbiddenException" ->
          `ForbiddenException (ForbiddenException.of_json json)
      | "LimitExceededException" ->
          `LimitExceededException (LimitExceededException.of_json json)
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_json json)
      | "ServiceFailureException" ->
          `ServiceFailureException (ServiceFailureException.of_json json)
      | "ServiceUnavailableException" ->
          `ServiceUnavailableException
            (ServiceUnavailableException.of_json json)
      | "ThrottlingException" ->
          `ThrottlingException (ThrottlingException.of_json json)
      | "TooManyTagsException" ->
          `TooManyTagsException (TooManyTagsException.of_json json)
      | "UnauthorizedException" ->
          `UnauthorizedException (UnauthorizedException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "BadRequestException" ->
          `BadRequestException (BadRequestException.of_xml xml)
      | "ForbiddenException" ->
          `ForbiddenException (ForbiddenException.of_xml xml)
      | "LimitExceededException" ->
          `LimitExceededException (LimitExceededException.of_xml xml)
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_xml xml)
      | "ServiceFailureException" ->
          `ServiceFailureException (ServiceFailureException.of_xml xml)
      | "ServiceUnavailableException" ->
          `ServiceUnavailableException
            (ServiceUnavailableException.of_xml xml)
      | "ThrottlingException" ->
          `ThrottlingException (ThrottlingException.of_xml xml)
      | "TooManyTagsException" ->
          `TooManyTagsException (TooManyTagsException.of_xml xml)
      | "UnauthorizedException" ->
          `UnauthorizedException (UnauthorizedException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `BadRequestException e ->
          `Assoc
            [("error", (`String "BadRequestException"));
            ("details", (BadRequestException.to_json e))]
      | `ForbiddenException e ->
          `Assoc
            [("error", (`String "ForbiddenException"));
            ("details", (ForbiddenException.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))]
      | `ServiceFailureException e ->
          `Assoc
            [("error", (`String "ServiceFailureException"));
            ("details", (ServiceFailureException.to_json e))]
      | `ServiceUnavailableException e ->
          `Assoc
            [("error", (`String "ServiceUnavailableException"));
            ("details", (ServiceUnavailableException.to_json e))]
      | `ThrottlingException e ->
          `Assoc
            [("error", (`String "ThrottlingException"));
            ("details", (ThrottlingException.to_json e))]
      | `TooManyTagsException e ->
          `Assoc
            [("error", (`String "TooManyTagsException"));
            ("details", (TooManyTagsException.to_json e))]
      | `UnauthorizedException e ->
          `Assoc
            [("error", (`String "UnauthorizedException"));
            ("details", (UnauthorizedException.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 "The resource that supports tags."]
module TagResourceRequest =
  struct
    type nonrec t =
      {
      resourceARN: AmazonResourceName.t
        [@ocaml.doc "The ARN of the resource."];
      tags: TagList.t [@ocaml.doc "Lists the requested tags."]}
    let context_ = "TagResourceRequest"
    let make ~resourceARN = fun ~tags -> fun () -> { resourceARN; tags }
    let to_value x =
      structure_to_value
        [("ResourceARN", (Some (AmazonResourceName.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 =
        AmazonResourceName.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" AmazonResourceName.of_json in
      make ~tags ~resourceARN ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "The resource that supports tags."]
module StopMeetingTranscriptionRequest =
  struct
    type nonrec t =
      {
      meetingId: GuidString.t
        [@ocaml.doc
          "The unique ID of the meeting for which you stop transcription."]}
    let context_ = "StopMeetingTranscriptionRequest"
    let make ~meetingId = fun () -> { meetingId }
    let to_value x =
      structure_to_value
        [("MeetingId", (Some (GuidString.to_value x.meetingId)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let meetingId =
        GuidString.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "MeetingId") in
      make ~meetingId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let meetingId = field_map_exn json__ "MeetingId" GuidString.of_json in
      make ~meetingId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Stops transcription for the specified meetingId. For more information, refer to Using Amazon Chime SDK live transcription in the Amazon Chime SDK Developer Guide. By default, Amazon Transcribe may use and store audio content processed by the service to develop and improve Amazon Web Services AI/ML services as further described in section 50 of the Amazon Web Services Service Terms. Using Amazon Transcribe may be subject to federal and state laws or regulations regarding the recording or interception of electronic communications. It is your and your end users\226\128\153 responsibility to comply with all applicable laws regarding the recording, including properly notifying all participants in a recorded session or communication that the session or communication is being recorded, and obtaining all necessary consents. You can opt out from Amazon Web Services using audio content to develop and improve Amazon Web Services AI/ML services by configuring an AI services opt out policy using Amazon Web Services Organizations."]
module StartMeetingTranscriptionRequest =
  struct
    type nonrec t =
      {
      meetingId: GuidString.t
        [@ocaml.doc "The unique ID of the meeting being transcribed."];
      transcriptionConfiguration: TranscriptionConfiguration.t
        [@ocaml.doc
          "The configuration for the current transcription operation. Must contain EngineTranscribeSettings or EngineTranscribeMedicalSettings."]}
    let context_ = "StartMeetingTranscriptionRequest"
    let make ~meetingId =
      fun ~transcriptionConfiguration ->
        fun () -> { meetingId; transcriptionConfiguration }
    let to_value x =
      structure_to_value
        [("MeetingId", (Some (GuidString.to_value x.meetingId)));
        ("TranscriptionConfiguration",
          (Some
             (TranscriptionConfiguration.to_value
                x.transcriptionConfiguration)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let transcriptionConfiguration =
        TranscriptionConfiguration.of_xml
          (Xml.child_exn ~context:context_ xml_arg0
             "TranscriptionConfiguration") in
      let meetingId =
        GuidString.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "MeetingId") in
      make ~transcriptionConfiguration ~meetingId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let transcriptionConfiguration =
        field_map_exn json__ "TranscriptionConfiguration"
          TranscriptionConfiguration.of_json in
      let meetingId = field_map_exn json__ "MeetingId" GuidString.of_json in
      make ~transcriptionConfiguration ~meetingId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Starts transcription for the specified meetingId. For more information, refer to Using Amazon Chime SDK live transcription in the Amazon Chime SDK Developer Guide. If you specify an invalid configuration, a TranscriptFailed event will be sent with the contents of the BadRequestException generated by Amazon Transcribe. For more information on each parameter and which combinations are valid, refer to the StartStreamTranscription API in the Amazon Transcribe Developer Guide. By default, Amazon Transcribe may use and store audio content processed by the service to develop and improve Amazon Web Services AI/ML services as further described in section 50 of the Amazon Web Services Service Terms. Using Amazon Transcribe may be subject to federal and state laws or regulations regarding the recording or interception of electronic communications. It is your and your end users\226\128\153 responsibility to comply with all applicable laws regarding the recording, including properly notifying all participants in a recorded session or communication that the session or communication is being recorded, and obtaining all necessary consents. You can opt out from Amazon Web Services using audio content to develop and improve AWS AI/ML services by configuring an AI services opt out policy using Amazon Web Services Organizations."]
module ListTagsForResourceResponse =
  struct
    type nonrec t =
      {
      tags: TagList.t option
        [@ocaml.doc "The tags requested for the specified resource."]}
    type nonrec error =
      [ `BadRequestException of BadRequestException.t 
      | `ForbiddenException of ForbiddenException.t 
      | `LimitExceededException of LimitExceededException.t 
      | `ResourceNotFoundException of ResourceNotFoundException.t 
      | `ServiceFailureException of ServiceFailureException.t 
      | `ServiceUnavailableException of ServiceUnavailableException.t 
      | `ThrottlingException of ThrottlingException.t 
      | `UnauthorizedException of UnauthorizedException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?tags = fun () -> { tags }
    let error_of_json name json =
      match name with
      | "BadRequestException" ->
          `BadRequestException (BadRequestException.of_json json)
      | "ForbiddenException" ->
          `ForbiddenException (ForbiddenException.of_json json)
      | "LimitExceededException" ->
          `LimitExceededException (LimitExceededException.of_json json)
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_json json)
      | "ServiceFailureException" ->
          `ServiceFailureException (ServiceFailureException.of_json json)
      | "ServiceUnavailableException" ->
          `ServiceUnavailableException
            (ServiceUnavailableException.of_json json)
      | "ThrottlingException" ->
          `ThrottlingException (ThrottlingException.of_json json)
      | "UnauthorizedException" ->
          `UnauthorizedException (UnauthorizedException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "BadRequestException" ->
          `BadRequestException (BadRequestException.of_xml xml)
      | "ForbiddenException" ->
          `ForbiddenException (ForbiddenException.of_xml xml)
      | "LimitExceededException" ->
          `LimitExceededException (LimitExceededException.of_xml xml)
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_xml xml)
      | "ServiceFailureException" ->
          `ServiceFailureException (ServiceFailureException.of_xml xml)
      | "ServiceUnavailableException" ->
          `ServiceUnavailableException
            (ServiceUnavailableException.of_xml xml)
      | "ThrottlingException" ->
          `ThrottlingException (ThrottlingException.of_xml xml)
      | "UnauthorizedException" ->
          `UnauthorizedException (UnauthorizedException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `BadRequestException e ->
          `Assoc
            [("error", (`String "BadRequestException"));
            ("details", (BadRequestException.to_json e))]
      | `ForbiddenException e ->
          `Assoc
            [("error", (`String "ForbiddenException"));
            ("details", (ForbiddenException.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))]
      | `ServiceFailureException e ->
          `Assoc
            [("error", (`String "ServiceFailureException"));
            ("details", (ServiceFailureException.to_json e))]
      | `ServiceUnavailableException e ->
          `Assoc
            [("error", (`String "ServiceUnavailableException"));
            ("details", (ServiceUnavailableException.to_json e))]
      | `ThrottlingException e ->
          `Assoc
            [("error", (`String "ThrottlingException"));
            ("details", (ThrottlingException.to_json e))]
      | `UnauthorizedException e ->
          `Assoc
            [("error", (`String "UnauthorizedException"));
            ("details", (UnauthorizedException.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
       "Returns a list of the tags available for the specified resource."]
module ListTagsForResourceRequest =
  struct
    type nonrec t =
      {
      resourceARN: AmazonResourceName.t
        [@ocaml.doc "The ARN of the resource."]}
    let context_ = "ListTagsForResourceRequest"
    let make ~resourceARN = fun () -> { resourceARN }
    let to_value x =
      structure_to_value
        [("arn", (Some (AmazonResourceName.to_value x.resourceARN)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let resourceARN =
        AmazonResourceName.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "arn") 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" AmazonResourceName.of_json in
      make ~resourceARN ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Returns a list of the tags available for the specified resource."]
module ListAttendeesResponse =
  struct
    type nonrec t =
      {
      attendees: AttendeeList.t option
        [@ocaml.doc "The Amazon Chime SDK attendee information."];
      nextToken: String_.t option
        [@ocaml.doc "The token to use to retrieve the next page of results."]}
    type nonrec error =
      [ `BadRequestException of BadRequestException.t 
      | `ForbiddenException of ForbiddenException.t 
      | `NotFoundException of NotFoundException.t 
      | `ServiceFailureException of ServiceFailureException.t 
      | `ServiceUnavailableException of ServiceUnavailableException.t 
      | `ThrottlingException of ThrottlingException.t 
      | `UnauthorizedException of UnauthorizedException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?attendees =
      fun ?nextToken -> fun () -> { attendees; nextToken }
    let error_of_json name json =
      match name with
      | "BadRequestException" ->
          `BadRequestException (BadRequestException.of_json json)
      | "ForbiddenException" ->
          `ForbiddenException (ForbiddenException.of_json json)
      | "NotFoundException" ->
          `NotFoundException (NotFoundException.of_json json)
      | "ServiceFailureException" ->
          `ServiceFailureException (ServiceFailureException.of_json json)
      | "ServiceUnavailableException" ->
          `ServiceUnavailableException
            (ServiceUnavailableException.of_json json)
      | "ThrottlingException" ->
          `ThrottlingException (ThrottlingException.of_json json)
      | "UnauthorizedException" ->
          `UnauthorizedException (UnauthorizedException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "BadRequestException" ->
          `BadRequestException (BadRequestException.of_xml xml)
      | "ForbiddenException" ->
          `ForbiddenException (ForbiddenException.of_xml xml)
      | "NotFoundException" ->
          `NotFoundException (NotFoundException.of_xml xml)
      | "ServiceFailureException" ->
          `ServiceFailureException (ServiceFailureException.of_xml xml)
      | "ServiceUnavailableException" ->
          `ServiceUnavailableException
            (ServiceUnavailableException.of_xml xml)
      | "ThrottlingException" ->
          `ThrottlingException (ThrottlingException.of_xml xml)
      | "UnauthorizedException" ->
          `UnauthorizedException (UnauthorizedException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `BadRequestException e ->
          `Assoc
            [("error", (`String "BadRequestException"));
            ("details", (BadRequestException.to_json e))]
      | `ForbiddenException e ->
          `Assoc
            [("error", (`String "ForbiddenException"));
            ("details", (ForbiddenException.to_json e))]
      | `NotFoundException e ->
          `Assoc
            [("error", (`String "NotFoundException"));
            ("details", (NotFoundException.to_json e))]
      | `ServiceFailureException e ->
          `Assoc
            [("error", (`String "ServiceFailureException"));
            ("details", (ServiceFailureException.to_json e))]
      | `ServiceUnavailableException e ->
          `Assoc
            [("error", (`String "ServiceUnavailableException"));
            ("details", (ServiceUnavailableException.to_json e))]
      | `ThrottlingException e ->
          `Assoc
            [("error", (`String "ThrottlingException"));
            ("details", (ThrottlingException.to_json e))]
      | `UnauthorizedException e ->
          `Assoc
            [("error", (`String "UnauthorizedException"));
            ("details", (UnauthorizedException.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
        [("Attendees", (Option.map x.attendees ~f:AttendeeList.to_value));
        ("NextToken", (Option.map x.nextToken ~f:String_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let nextToken =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "NextToken") in
      let attendees =
        (Option.map ~f:AttendeeList.of_xml) (Xml.child xml_arg0 "Attendees") in
      make ?nextToken ?attendees ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let nextToken = field_map json__ "NextToken" String_.of_json in
      let attendees = field_map json__ "Attendees" AttendeeList.of_json in
      make ?nextToken ?attendees ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Lists the attendees for the specified Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide."]
module ListAttendeesRequest =
  struct
    type nonrec t =
      {
      meetingId: GuidString.t [@ocaml.doc "The Amazon Chime SDK meeting ID."];
      nextToken: String_.t option
        [@ocaml.doc "The token to use to retrieve the next page of results."];
      maxResults: ResultMax.t option
        [@ocaml.doc
          "The maximum number of results to return in a single call."]}
    let context_ = "ListAttendeesRequest"
    let make ?nextToken =
      fun ?maxResults ->
        fun ~meetingId -> fun () -> { nextToken; maxResults; meetingId }
    let to_value x =
      structure_to_value
        [("MeetingId", (Some (GuidString.to_value x.meetingId)));
        ("next-token", (Option.map x.nextToken ~f:String_.to_value));
        ("max-results", (Option.map x.maxResults ~f:ResultMax.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let maxResults =
        (Option.map ~f:ResultMax.of_xml) (Xml.child xml_arg0 "max-results") in
      let nextToken =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "next-token") in
      let meetingId =
        GuidString.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "MeetingId") in
      make ?maxResults ?nextToken ~meetingId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let maxResults = field_map json__ "MaxResults" ResultMax.of_json in
      let nextToken = field_map json__ "NextToken" String_.of_json in
      let meetingId = field_map_exn json__ "MeetingId" GuidString.of_json in
      make ?maxResults ?nextToken ~meetingId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Lists the attendees for the specified Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide."]
module GetMeetingResponse =
  struct
    type nonrec t =
      {
      meeting: Meeting.t option
        [@ocaml.doc "The Amazon Chime SDK meeting information."]}
    type nonrec error =
      [ `BadRequestException of BadRequestException.t 
      | `ForbiddenException of ForbiddenException.t 
      | `NotFoundException of NotFoundException.t 
      | `ServiceFailureException of ServiceFailureException.t 
      | `ServiceUnavailableException of ServiceUnavailableException.t 
      | `ThrottlingException of ThrottlingException.t 
      | `UnauthorizedException of UnauthorizedException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?meeting = fun () -> { meeting }
    let error_of_json name json =
      match name with
      | "BadRequestException" ->
          `BadRequestException (BadRequestException.of_json json)
      | "ForbiddenException" ->
          `ForbiddenException (ForbiddenException.of_json json)
      | "NotFoundException" ->
          `NotFoundException (NotFoundException.of_json json)
      | "ServiceFailureException" ->
          `ServiceFailureException (ServiceFailureException.of_json json)
      | "ServiceUnavailableException" ->
          `ServiceUnavailableException
            (ServiceUnavailableException.of_json json)
      | "ThrottlingException" ->
          `ThrottlingException (ThrottlingException.of_json json)
      | "UnauthorizedException" ->
          `UnauthorizedException (UnauthorizedException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "BadRequestException" ->
          `BadRequestException (BadRequestException.of_xml xml)
      | "ForbiddenException" ->
          `ForbiddenException (ForbiddenException.of_xml xml)
      | "NotFoundException" ->
          `NotFoundException (NotFoundException.of_xml xml)
      | "ServiceFailureException" ->
          `ServiceFailureException (ServiceFailureException.of_xml xml)
      | "ServiceUnavailableException" ->
          `ServiceUnavailableException
            (ServiceUnavailableException.of_xml xml)
      | "ThrottlingException" ->
          `ThrottlingException (ThrottlingException.of_xml xml)
      | "UnauthorizedException" ->
          `UnauthorizedException (UnauthorizedException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `BadRequestException e ->
          `Assoc
            [("error", (`String "BadRequestException"));
            ("details", (BadRequestException.to_json e))]
      | `ForbiddenException e ->
          `Assoc
            [("error", (`String "ForbiddenException"));
            ("details", (ForbiddenException.to_json e))]
      | `NotFoundException e ->
          `Assoc
            [("error", (`String "NotFoundException"));
            ("details", (NotFoundException.to_json e))]
      | `ServiceFailureException e ->
          `Assoc
            [("error", (`String "ServiceFailureException"));
            ("details", (ServiceFailureException.to_json e))]
      | `ServiceUnavailableException e ->
          `Assoc
            [("error", (`String "ServiceUnavailableException"));
            ("details", (ServiceUnavailableException.to_json e))]
      | `ThrottlingException e ->
          `Assoc
            [("error", (`String "ThrottlingException"));
            ("details", (ThrottlingException.to_json e))]
      | `UnauthorizedException e ->
          `Assoc
            [("error", (`String "UnauthorizedException"));
            ("details", (UnauthorizedException.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
        [("Meeting", (Option.map x.meeting ~f:Meeting.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let meeting =
        (Option.map ~f:Meeting.of_xml) (Xml.child xml_arg0 "Meeting") in
      make ?meeting ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let meeting = field_map json__ "Meeting" Meeting.of_json in
      make ?meeting ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Gets the Amazon Chime SDK meeting details for the specified meeting ID. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide."]
module GetMeetingRequest =
  struct
    type nonrec t =
      {
      meetingId: GuidString.t [@ocaml.doc "The Amazon Chime SDK meeting ID."]}
    let context_ = "GetMeetingRequest"
    let make ~meetingId = fun () -> { meetingId }
    let to_value x =
      structure_to_value
        [("MeetingId", (Some (GuidString.to_value x.meetingId)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let meetingId =
        GuidString.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "MeetingId") in
      make ~meetingId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let meetingId = field_map_exn json__ "MeetingId" GuidString.of_json in
      make ~meetingId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Gets the Amazon Chime SDK meeting details for the specified meeting ID. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide."]
module GetAttendeeResponse =
  struct
    type nonrec t =
      {
      attendee: Attendee.t option
        [@ocaml.doc "The Amazon Chime SDK attendee information."]}
    type nonrec error =
      [ `BadRequestException of BadRequestException.t 
      | `ForbiddenException of ForbiddenException.t 
      | `NotFoundException of NotFoundException.t 
      | `ServiceFailureException of ServiceFailureException.t 
      | `ServiceUnavailableException of ServiceUnavailableException.t 
      | `ThrottlingException of ThrottlingException.t 
      | `UnauthorizedException of UnauthorizedException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?attendee = fun () -> { attendee }
    let error_of_json name json =
      match name with
      | "BadRequestException" ->
          `BadRequestException (BadRequestException.of_json json)
      | "ForbiddenException" ->
          `ForbiddenException (ForbiddenException.of_json json)
      | "NotFoundException" ->
          `NotFoundException (NotFoundException.of_json json)
      | "ServiceFailureException" ->
          `ServiceFailureException (ServiceFailureException.of_json json)
      | "ServiceUnavailableException" ->
          `ServiceUnavailableException
            (ServiceUnavailableException.of_json json)
      | "ThrottlingException" ->
          `ThrottlingException (ThrottlingException.of_json json)
      | "UnauthorizedException" ->
          `UnauthorizedException (UnauthorizedException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "BadRequestException" ->
          `BadRequestException (BadRequestException.of_xml xml)
      | "ForbiddenException" ->
          `ForbiddenException (ForbiddenException.of_xml xml)
      | "NotFoundException" ->
          `NotFoundException (NotFoundException.of_xml xml)
      | "ServiceFailureException" ->
          `ServiceFailureException (ServiceFailureException.of_xml xml)
      | "ServiceUnavailableException" ->
          `ServiceUnavailableException
            (ServiceUnavailableException.of_xml xml)
      | "ThrottlingException" ->
          `ThrottlingException (ThrottlingException.of_xml xml)
      | "UnauthorizedException" ->
          `UnauthorizedException (UnauthorizedException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `BadRequestException e ->
          `Assoc
            [("error", (`String "BadRequestException"));
            ("details", (BadRequestException.to_json e))]
      | `ForbiddenException e ->
          `Assoc
            [("error", (`String "ForbiddenException"));
            ("details", (ForbiddenException.to_json e))]
      | `NotFoundException e ->
          `Assoc
            [("error", (`String "NotFoundException"));
            ("details", (NotFoundException.to_json e))]
      | `ServiceFailureException e ->
          `Assoc
            [("error", (`String "ServiceFailureException"));
            ("details", (ServiceFailureException.to_json e))]
      | `ServiceUnavailableException e ->
          `Assoc
            [("error", (`String "ServiceUnavailableException"));
            ("details", (ServiceUnavailableException.to_json e))]
      | `ThrottlingException e ->
          `Assoc
            [("error", (`String "ThrottlingException"));
            ("details", (ThrottlingException.to_json e))]
      | `UnauthorizedException e ->
          `Assoc
            [("error", (`String "UnauthorizedException"));
            ("details", (UnauthorizedException.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
        [("Attendee", (Option.map x.attendee ~f:Attendee.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let attendee =
        (Option.map ~f:Attendee.of_xml) (Xml.child xml_arg0 "Attendee") in
      make ?attendee ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let attendee = field_map json__ "Attendee" Attendee.of_json in
      make ?attendee ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Gets the Amazon Chime SDK attendee details for a specified meeting ID and attendee ID. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide."]
module GetAttendeeRequest =
  struct
    type nonrec t =
      {
      meetingId: GuidString.t [@ocaml.doc "The Amazon Chime SDK meeting ID."];
      attendeeId: GuidString.t
        [@ocaml.doc "The Amazon Chime SDK attendee ID."]}
    let context_ = "GetAttendeeRequest"
    let make ~meetingId =
      fun ~attendeeId -> fun () -> { meetingId; attendeeId }
    let to_value x =
      structure_to_value
        [("MeetingId", (Some (GuidString.to_value x.meetingId)));
        ("AttendeeId", (Some (GuidString.to_value x.attendeeId)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let attendeeId =
        GuidString.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "AttendeeId") in
      let meetingId =
        GuidString.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "MeetingId") in
      make ~attendeeId ~meetingId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let attendeeId = field_map_exn json__ "AttendeeId" GuidString.of_json in
      let meetingId = field_map_exn json__ "MeetingId" GuidString.of_json in
      make ~attendeeId ~meetingId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Gets the Amazon Chime SDK attendee details for a specified meeting ID and attendee ID. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide."]
module DeleteMeetingRequest =
  struct
    type nonrec t =
      {
      meetingId: GuidString.t [@ocaml.doc "The Amazon Chime SDK meeting ID."]}
    let context_ = "DeleteMeetingRequest"
    let make ~meetingId = fun () -> { meetingId }
    let to_value x =
      structure_to_value
        [("MeetingId", (Some (GuidString.to_value x.meetingId)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let meetingId =
        GuidString.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "MeetingId") in
      make ~meetingId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let meetingId = field_map_exn json__ "MeetingId" GuidString.of_json in
      make ~meetingId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Deletes the specified Amazon Chime SDK meeting. The operation deletes all attendees, disconnects all clients, and prevents new clients from joining the meeting. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide."]
module DeleteAttendeeRequest =
  struct
    type nonrec t =
      {
      meetingId: GuidString.t [@ocaml.doc "The Amazon Chime SDK meeting ID."];
      attendeeId: GuidString.t
        [@ocaml.doc "The Amazon Chime SDK attendee ID."]}
    let context_ = "DeleteAttendeeRequest"
    let make ~meetingId =
      fun ~attendeeId -> fun () -> { meetingId; attendeeId }
    let to_value x =
      structure_to_value
        [("MeetingId", (Some (GuidString.to_value x.meetingId)));
        ("AttendeeId", (Some (GuidString.to_value x.attendeeId)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let attendeeId =
        GuidString.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "AttendeeId") in
      let meetingId =
        GuidString.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "MeetingId") in
      make ~attendeeId ~meetingId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let attendeeId = field_map_exn json__ "AttendeeId" GuidString.of_json in
      let meetingId = field_map_exn json__ "MeetingId" GuidString.of_json in
      make ~attendeeId ~meetingId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Deletes an attendee from the specified Amazon Chime SDK meeting and deletes their JoinToken. Attendees are automatically deleted when a Amazon Chime SDK meeting is deleted. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide."]
module CreateMeetingWithAttendeesResponse =
  struct
    type nonrec t =
      {
      meeting: Meeting.t option
        [@ocaml.doc
          "The meeting information, including the meeting ID and MediaPlacement."];
      attendees: AttendeeList.t option
        [@ocaml.doc
          "The attendee information, including attendees' IDs and join tokens."];
      errors: BatchCreateAttendeeErrorList.t option
        [@ocaml.doc
          "If the action fails for one or more of the attendees in the request, a list of the attendees is returned, along with error codes and error messages."]}
    type nonrec error =
      [ `BadRequestException of BadRequestException.t 
      | `ConflictException of ConflictException.t 
      | `ForbiddenException of ForbiddenException.t 
      | `LimitExceededException of LimitExceededException.t 
      | `ServiceFailureException of ServiceFailureException.t 
      | `ServiceUnavailableException of ServiceUnavailableException.t 
      | `ThrottlingException of ThrottlingException.t 
      | `UnauthorizedException of UnauthorizedException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?meeting =
      fun ?attendees ->
        fun ?errors -> fun () -> { meeting; attendees; errors }
    let error_of_json name json =
      match name with
      | "BadRequestException" ->
          `BadRequestException (BadRequestException.of_json json)
      | "ConflictException" ->
          `ConflictException (ConflictException.of_json json)
      | "ForbiddenException" ->
          `ForbiddenException (ForbiddenException.of_json json)
      | "LimitExceededException" ->
          `LimitExceededException (LimitExceededException.of_json json)
      | "ServiceFailureException" ->
          `ServiceFailureException (ServiceFailureException.of_json json)
      | "ServiceUnavailableException" ->
          `ServiceUnavailableException
            (ServiceUnavailableException.of_json json)
      | "ThrottlingException" ->
          `ThrottlingException (ThrottlingException.of_json json)
      | "UnauthorizedException" ->
          `UnauthorizedException (UnauthorizedException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "BadRequestException" ->
          `BadRequestException (BadRequestException.of_xml xml)
      | "ConflictException" ->
          `ConflictException (ConflictException.of_xml xml)
      | "ForbiddenException" ->
          `ForbiddenException (ForbiddenException.of_xml xml)
      | "LimitExceededException" ->
          `LimitExceededException (LimitExceededException.of_xml xml)
      | "ServiceFailureException" ->
          `ServiceFailureException (ServiceFailureException.of_xml xml)
      | "ServiceUnavailableException" ->
          `ServiceUnavailableException
            (ServiceUnavailableException.of_xml xml)
      | "ThrottlingException" ->
          `ThrottlingException (ThrottlingException.of_xml xml)
      | "UnauthorizedException" ->
          `UnauthorizedException (UnauthorizedException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `BadRequestException e ->
          `Assoc
            [("error", (`String "BadRequestException"));
            ("details", (BadRequestException.to_json e))]
      | `ConflictException e ->
          `Assoc
            [("error", (`String "ConflictException"));
            ("details", (ConflictException.to_json e))]
      | `ForbiddenException e ->
          `Assoc
            [("error", (`String "ForbiddenException"));
            ("details", (ForbiddenException.to_json e))]
      | `LimitExceededException e ->
          `Assoc
            [("error", (`String "LimitExceededException"));
            ("details", (LimitExceededException.to_json e))]
      | `ServiceFailureException e ->
          `Assoc
            [("error", (`String "ServiceFailureException"));
            ("details", (ServiceFailureException.to_json e))]
      | `ServiceUnavailableException e ->
          `Assoc
            [("error", (`String "ServiceUnavailableException"));
            ("details", (ServiceUnavailableException.to_json e))]
      | `ThrottlingException e ->
          `Assoc
            [("error", (`String "ThrottlingException"));
            ("details", (ThrottlingException.to_json e))]
      | `UnauthorizedException e ->
          `Assoc
            [("error", (`String "UnauthorizedException"));
            ("details", (UnauthorizedException.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
        [("Meeting", (Option.map x.meeting ~f:Meeting.to_value));
        ("Attendees", (Option.map x.attendees ~f:AttendeeList.to_value));
        ("Errors",
          (Option.map x.errors ~f:BatchCreateAttendeeErrorList.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let errors =
        (Option.map ~f:BatchCreateAttendeeErrorList.of_xml)
          (Xml.child xml_arg0 "Errors") in
      let attendees =
        (Option.map ~f:AttendeeList.of_xml) (Xml.child xml_arg0 "Attendees") in
      let meeting =
        (Option.map ~f:Meeting.of_xml) (Xml.child xml_arg0 "Meeting") in
      make ?errors ?attendees ?meeting ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let errors =
        field_map json__ "Errors" BatchCreateAttendeeErrorList.of_json in
      let attendees = field_map json__ "Attendees" AttendeeList.of_json in
      let meeting = field_map json__ "Meeting" Meeting.of_json in
      make ?errors ?attendees ?meeting ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Creates a new Amazon Chime SDK meeting in the specified media Region, with attendees. For more information about specifying media Regions, see Available Regions and Using meeting Regions, both in the Amazon Chime SDK Developer Guide. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime SDK Developer Guide. If you use this API in conjuction with the and APIs, and you don't specify the MeetingFeatures.Content.MaxResolution or MeetingFeatures.Video.MaxResolution parameters, the following defaults are used: Content.MaxResolution: FHD Video.MaxResolution: HD"]
module CreateMeetingWithAttendeesRequest =
  struct
    type nonrec t =
      {
      clientRequestToken: ClientRequestToken.t
        [@ocaml.doc
          "The unique identifier for the client request. Use a different token for different meetings."];
      mediaRegion: MediaRegion.t
        [@ocaml.doc
          "The Region in which to create the meeting. Available values: af-south-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-south-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-1, us-east-2, us-west-1, us-west-2. Available values in Amazon Web Services GovCloud (US) Regions: us-gov-east-1, us-gov-west-1."];
      meetingHostId: ExternalUserId.t option [@ocaml.doc "Reserved."];
      externalMeetingId: ExternalMeetingId.t
        [@ocaml.doc
          "The external meeting ID. Pattern: \\[-_&\\@+=,()\\{\\}\\\\[\\\\]\\/\194\171\194\187.:|'\"#a-zA-Z0-9\195\128-\195\191\\s\\]* Values that begin with aws: are reserved. You can't configure a value that uses this prefix. Case insensitive."];
      meetingFeatures: MeetingFeaturesConfiguration.t option
        [@ocaml.doc
          "Lists the audio and video features enabled for a meeting, such as echo reduction."];
      notificationsConfiguration: NotificationsConfiguration.t option
        [@ocaml.doc
          "The configuration for resource targets to receive notifications when meeting and attendee events occur."];
      attendees: CreateMeetingWithAttendeesRequestItemList.t
        [@ocaml.doc
          "The attendee information, including attendees' IDs and join tokens."];
      primaryMeetingId: PrimaryMeetingId.t option
        [@ocaml.doc
          "When specified, replicates the media from the primary meeting to the new meeting."];
      tenantIds: TenantIdList.t option
        [@ocaml.doc
          "A consistent and opaque identifier, created and maintained by the builder to represent a segment of their users."];
      tags: TagList.t option [@ocaml.doc "The tags in the request."];
      mediaPlacementNetworkType: MediaPlacementNetworkType.t option
        [@ocaml.doc
          "The type of network for the media placement. Either IPv4 only or dual-stack (IPv4 and IPv6)."]}
    let context_ = "CreateMeetingWithAttendeesRequest"
    let make ?meetingHostId =
      fun ?meetingFeatures ->
        fun ?notificationsConfiguration ->
          fun ?primaryMeetingId ->
            fun ?tenantIds ->
              fun ?tags ->
                fun ?mediaPlacementNetworkType ->
                  fun ~clientRequestToken ->
                    fun ~mediaRegion ->
                      fun ~externalMeetingId ->
                        fun ~attendees ->
                          fun () ->
                            {
                              meetingHostId;
                              meetingFeatures;
                              notificationsConfiguration;
                              primaryMeetingId;
                              tenantIds;
                              tags;
                              mediaPlacementNetworkType;
                              clientRequestToken;
                              mediaRegion;
                              externalMeetingId;
                              attendees
                            }
    let to_value x =
      structure_to_value
        [("ClientRequestToken",
           (Some (ClientRequestToken.to_value x.clientRequestToken)));
        ("MediaRegion", (Some (MediaRegion.to_value x.mediaRegion)));
        ("MeetingHostId",
          (Option.map x.meetingHostId ~f:ExternalUserId.to_value));
        ("ExternalMeetingId",
          (Some (ExternalMeetingId.to_value x.externalMeetingId)));
        ("MeetingFeatures",
          (Option.map x.meetingFeatures
             ~f:MeetingFeaturesConfiguration.to_value));
        ("NotificationsConfiguration",
          (Option.map x.notificationsConfiguration
             ~f:NotificationsConfiguration.to_value));
        ("Attendees",
          (Some
             (CreateMeetingWithAttendeesRequestItemList.to_value x.attendees)));
        ("PrimaryMeetingId",
          (Option.map x.primaryMeetingId ~f:PrimaryMeetingId.to_value));
        ("TenantIds", (Option.map x.tenantIds ~f:TenantIdList.to_value));
        ("Tags", (Option.map x.tags ~f:TagList.to_value));
        ("MediaPlacementNetworkType",
          (Option.map x.mediaPlacementNetworkType
             ~f:MediaPlacementNetworkType.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let mediaPlacementNetworkType =
        (Option.map ~f:MediaPlacementNetworkType.of_xml)
          (Xml.child xml_arg0 "MediaPlacementNetworkType") in
      let tags = (Option.map ~f:TagList.of_xml) (Xml.child xml_arg0 "Tags") in
      let tenantIds =
        (Option.map ~f:TenantIdList.of_xml) (Xml.child xml_arg0 "TenantIds") in
      let primaryMeetingId =
        (Option.map ~f:PrimaryMeetingId.of_xml)
          (Xml.child xml_arg0 "PrimaryMeetingId") in
      let attendees =
        CreateMeetingWithAttendeesRequestItemList.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "Attendees") in
      let notificationsConfiguration =
        (Option.map ~f:NotificationsConfiguration.of_xml)
          (Xml.child xml_arg0 "NotificationsConfiguration") in
      let meetingFeatures =
        (Option.map ~f:MeetingFeaturesConfiguration.of_xml)
          (Xml.child xml_arg0 "MeetingFeatures") in
      let externalMeetingId =
        ExternalMeetingId.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "ExternalMeetingId") in
      let meetingHostId =
        (Option.map ~f:ExternalUserId.of_xml)
          (Xml.child xml_arg0 "MeetingHostId") in
      let mediaRegion =
        MediaRegion.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "MediaRegion") in
      let clientRequestToken =
        ClientRequestToken.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "ClientRequestToken") in
      make ?mediaPlacementNetworkType ?tags ?tenantIds ?primaryMeetingId
        ~attendees ?notificationsConfiguration ?meetingFeatures
        ~externalMeetingId ?meetingHostId ~mediaRegion ~clientRequestToken ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let mediaPlacementNetworkType =
        field_map json__ "MediaPlacementNetworkType"
          MediaPlacementNetworkType.of_json in
      let tags = field_map json__ "Tags" TagList.of_json in
      let tenantIds = field_map json__ "TenantIds" TenantIdList.of_json in
      let primaryMeetingId =
        field_map json__ "PrimaryMeetingId" PrimaryMeetingId.of_json in
      let attendees =
        field_map_exn json__ "Attendees"
          CreateMeetingWithAttendeesRequestItemList.of_json in
      let notificationsConfiguration =
        field_map json__ "NotificationsConfiguration"
          NotificationsConfiguration.of_json in
      let meetingFeatures =
        field_map json__ "MeetingFeatures"
          MeetingFeaturesConfiguration.of_json in
      let externalMeetingId =
        field_map_exn json__ "ExternalMeetingId" ExternalMeetingId.of_json in
      let meetingHostId =
        field_map json__ "MeetingHostId" ExternalUserId.of_json in
      let mediaRegion =
        field_map_exn json__ "MediaRegion" MediaRegion.of_json in
      let clientRequestToken =
        field_map_exn json__ "ClientRequestToken" ClientRequestToken.of_json in
      make ?mediaPlacementNetworkType ?tags ?tenantIds ?primaryMeetingId
        ~attendees ?notificationsConfiguration ?meetingFeatures
        ~externalMeetingId ?meetingHostId ~mediaRegion ~clientRequestToken ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Creates a new Amazon Chime SDK meeting in the specified media Region, with attendees. For more information about specifying media Regions, see Available Regions and Using meeting Regions, both in the Amazon Chime SDK Developer Guide. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime SDK Developer Guide. If you use this API in conjuction with the and APIs, and you don't specify the MeetingFeatures.Content.MaxResolution or MeetingFeatures.Video.MaxResolution parameters, the following defaults are used: Content.MaxResolution: FHD Video.MaxResolution: HD"]
module CreateMeetingResponse =
  struct
    type nonrec t =
      {
      meeting: Meeting.t option
        [@ocaml.doc
          "The meeting information, including the meeting ID and MediaPlacement."]}
    type nonrec error =
      [ `BadRequestException of BadRequestException.t 
      | `ConflictException of ConflictException.t 
      | `ForbiddenException of ForbiddenException.t 
      | `LimitExceededException of LimitExceededException.t 
      | `ServiceFailureException of ServiceFailureException.t 
      | `ServiceUnavailableException of ServiceUnavailableException.t 
      | `ThrottlingException of ThrottlingException.t 
      | `UnauthorizedException of UnauthorizedException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?meeting = fun () -> { meeting }
    let error_of_json name json =
      match name with
      | "BadRequestException" ->
          `BadRequestException (BadRequestException.of_json json)
      | "ConflictException" ->
          `ConflictException (ConflictException.of_json json)
      | "ForbiddenException" ->
          `ForbiddenException (ForbiddenException.of_json json)
      | "LimitExceededException" ->
          `LimitExceededException (LimitExceededException.of_json json)
      | "ServiceFailureException" ->
          `ServiceFailureException (ServiceFailureException.of_json json)
      | "ServiceUnavailableException" ->
          `ServiceUnavailableException
            (ServiceUnavailableException.of_json json)
      | "ThrottlingException" ->
          `ThrottlingException (ThrottlingException.of_json json)
      | "UnauthorizedException" ->
          `UnauthorizedException (UnauthorizedException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "BadRequestException" ->
          `BadRequestException (BadRequestException.of_xml xml)
      | "ConflictException" ->
          `ConflictException (ConflictException.of_xml xml)
      | "ForbiddenException" ->
          `ForbiddenException (ForbiddenException.of_xml xml)
      | "LimitExceededException" ->
          `LimitExceededException (LimitExceededException.of_xml xml)
      | "ServiceFailureException" ->
          `ServiceFailureException (ServiceFailureException.of_xml xml)
      | "ServiceUnavailableException" ->
          `ServiceUnavailableException
            (ServiceUnavailableException.of_xml xml)
      | "ThrottlingException" ->
          `ThrottlingException (ThrottlingException.of_xml xml)
      | "UnauthorizedException" ->
          `UnauthorizedException (UnauthorizedException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `BadRequestException e ->
          `Assoc
            [("error", (`String "BadRequestException"));
            ("details", (BadRequestException.to_json e))]
      | `ConflictException e ->
          `Assoc
            [("error", (`String "ConflictException"));
            ("details", (ConflictException.to_json e))]
      | `ForbiddenException e ->
          `Assoc
            [("error", (`String "ForbiddenException"));
            ("details", (ForbiddenException.to_json e))]
      | `LimitExceededException e ->
          `Assoc
            [("error", (`String "LimitExceededException"));
            ("details", (LimitExceededException.to_json e))]
      | `ServiceFailureException e ->
          `Assoc
            [("error", (`String "ServiceFailureException"));
            ("details", (ServiceFailureException.to_json e))]
      | `ServiceUnavailableException e ->
          `Assoc
            [("error", (`String "ServiceUnavailableException"));
            ("details", (ServiceUnavailableException.to_json e))]
      | `ThrottlingException e ->
          `Assoc
            [("error", (`String "ThrottlingException"));
            ("details", (ThrottlingException.to_json e))]
      | `UnauthorizedException e ->
          `Assoc
            [("error", (`String "UnauthorizedException"));
            ("details", (UnauthorizedException.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
        [("Meeting", (Option.map x.meeting ~f:Meeting.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let meeting =
        (Option.map ~f:Meeting.of_xml) (Xml.child xml_arg0 "Meeting") in
      make ?meeting ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let meeting = field_map json__ "Meeting" Meeting.of_json in
      make ?meeting ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Creates a new Amazon Chime SDK meeting in the specified media Region with no initial attendees. For more information about specifying media Regions, see Available Regions and Using meeting Regions, both in the Amazon Chime SDK Developer Guide. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime SDK Developer Guide. If you use this API in conjuction with the and APIs, and you don't specify the MeetingFeatures.Content.MaxResolution or MeetingFeatures.Video.MaxResolution parameters, the following defaults are used: Content.MaxResolution: FHD Video.MaxResolution: HD"]
module CreateMeetingRequest =
  struct
    type nonrec t =
      {
      clientRequestToken: ClientRequestToken.t
        [@ocaml.doc
          "The unique identifier for the client request. Use a different token for different meetings."];
      mediaRegion: MediaRegion.t
        [@ocaml.doc
          "The Region in which to create the meeting. Available values: af-south-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-south-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-1, us-east-2, us-west-1, us-west-2. Available values in Amazon Web Services GovCloud (US) Regions: us-gov-east-1, us-gov-west-1."];
      meetingHostId: ExternalUserId.t option [@ocaml.doc "Reserved."];
      externalMeetingId: ExternalMeetingId.t
        [@ocaml.doc
          "The external meeting ID. Pattern: \\[-_&\\@+=,()\\{\\}\\\\[\\\\]\\/\194\171\194\187.:|'\"#a-zA-Z0-9\195\128-\195\191\\s\\]* Values that begin with aws: are reserved. You can't configure a value that uses this prefix. Case insensitive."];
      notificationsConfiguration: NotificationsConfiguration.t option
        [@ocaml.doc
          "The configuration for resource targets to receive notifications when meeting and attendee events occur."];
      meetingFeatures: MeetingFeaturesConfiguration.t option
        [@ocaml.doc
          "Lists the audio and video features enabled for a meeting, such as echo reduction."];
      primaryMeetingId: PrimaryMeetingId.t option
        [@ocaml.doc
          "When specified, replicates the media from the primary meeting to the new meeting."];
      tenantIds: TenantIdList.t option
        [@ocaml.doc
          "A consistent and opaque identifier, created and maintained by the builder to represent a segment of their users."];
      tags: TagList.t option
        [@ocaml.doc
          "Applies one or more tags to an Amazon Chime SDK meeting. Note the following: Not all resources have tags. For a list of services with resources that support tagging using this operation, see Services that support the Resource Groups Tagging API. If the resource doesn't yet support this operation, the resource's service might support tagging using its own API operations. For more information, refer to the documentation for that service. Each resource can have up to 50 tags. For other limits, see Tag Naming and Usage Conventions in the AWS General Reference. You can only tag resources that are located in the specified Amazon Web Services Region for the Amazon Web Services account. To add tags to a resource, you need the necessary permissions for the service that the resource belongs to as well as permissions for adding tags. For more information, see the documentation for each service. Do not store personally identifiable information (PII) or other confidential or sensitive information in tags. We use tags to provide you with billing and administration services. Tags are not intended to be used for private or sensitive data. Minimum permissions In addition to the tag:TagResources permission required by this operation, you must also have the tagging permission defined by the service that created the resource. For example, to tag a ChimeSDKMeetings instance using the TagResources operation, you must have both of the following permissions: tag:TagResources ChimeSDKMeetings:CreateTags Some services might have specific requirements for tagging some resources. For example, to tag an Amazon S3 bucket, you must also have the s3:GetBucketTagging permission. If the expected minimum permissions don't work, check the documentation for that service's tagging APIs for more information."];
      mediaPlacementNetworkType: MediaPlacementNetworkType.t option
        [@ocaml.doc
          "The type of network for the media placement. Either IPv4 only or dual-stack (IPv4 and IPv6)."]}
    let context_ = "CreateMeetingRequest"
    let make ?meetingHostId =
      fun ?notificationsConfiguration ->
        fun ?meetingFeatures ->
          fun ?primaryMeetingId ->
            fun ?tenantIds ->
              fun ?tags ->
                fun ?mediaPlacementNetworkType ->
                  fun ~clientRequestToken ->
                    fun ~mediaRegion ->
                      fun ~externalMeetingId ->
                        fun () ->
                          {
                            meetingHostId;
                            notificationsConfiguration;
                            meetingFeatures;
                            primaryMeetingId;
                            tenantIds;
                            tags;
                            mediaPlacementNetworkType;
                            clientRequestToken;
                            mediaRegion;
                            externalMeetingId
                          }
    let to_value x =
      structure_to_value
        [("ClientRequestToken",
           (Some (ClientRequestToken.to_value x.clientRequestToken)));
        ("MediaRegion", (Some (MediaRegion.to_value x.mediaRegion)));
        ("MeetingHostId",
          (Option.map x.meetingHostId ~f:ExternalUserId.to_value));
        ("ExternalMeetingId",
          (Some (ExternalMeetingId.to_value x.externalMeetingId)));
        ("NotificationsConfiguration",
          (Option.map x.notificationsConfiguration
             ~f:NotificationsConfiguration.to_value));
        ("MeetingFeatures",
          (Option.map x.meetingFeatures
             ~f:MeetingFeaturesConfiguration.to_value));
        ("PrimaryMeetingId",
          (Option.map x.primaryMeetingId ~f:PrimaryMeetingId.to_value));
        ("TenantIds", (Option.map x.tenantIds ~f:TenantIdList.to_value));
        ("Tags", (Option.map x.tags ~f:TagList.to_value));
        ("MediaPlacementNetworkType",
          (Option.map x.mediaPlacementNetworkType
             ~f:MediaPlacementNetworkType.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let mediaPlacementNetworkType =
        (Option.map ~f:MediaPlacementNetworkType.of_xml)
          (Xml.child xml_arg0 "MediaPlacementNetworkType") in
      let tags = (Option.map ~f:TagList.of_xml) (Xml.child xml_arg0 "Tags") in
      let tenantIds =
        (Option.map ~f:TenantIdList.of_xml) (Xml.child xml_arg0 "TenantIds") in
      let primaryMeetingId =
        (Option.map ~f:PrimaryMeetingId.of_xml)
          (Xml.child xml_arg0 "PrimaryMeetingId") in
      let meetingFeatures =
        (Option.map ~f:MeetingFeaturesConfiguration.of_xml)
          (Xml.child xml_arg0 "MeetingFeatures") in
      let notificationsConfiguration =
        (Option.map ~f:NotificationsConfiguration.of_xml)
          (Xml.child xml_arg0 "NotificationsConfiguration") in
      let externalMeetingId =
        ExternalMeetingId.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "ExternalMeetingId") in
      let meetingHostId =
        (Option.map ~f:ExternalUserId.of_xml)
          (Xml.child xml_arg0 "MeetingHostId") in
      let mediaRegion =
        MediaRegion.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "MediaRegion") in
      let clientRequestToken =
        ClientRequestToken.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "ClientRequestToken") in
      make ?mediaPlacementNetworkType ?tags ?tenantIds ?primaryMeetingId
        ?meetingFeatures ?notificationsConfiguration ~externalMeetingId
        ?meetingHostId ~mediaRegion ~clientRequestToken ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let mediaPlacementNetworkType =
        field_map json__ "MediaPlacementNetworkType"
          MediaPlacementNetworkType.of_json in
      let tags = field_map json__ "Tags" TagList.of_json in
      let tenantIds = field_map json__ "TenantIds" TenantIdList.of_json in
      let primaryMeetingId =
        field_map json__ "PrimaryMeetingId" PrimaryMeetingId.of_json in
      let meetingFeatures =
        field_map json__ "MeetingFeatures"
          MeetingFeaturesConfiguration.of_json in
      let notificationsConfiguration =
        field_map json__ "NotificationsConfiguration"
          NotificationsConfiguration.of_json in
      let externalMeetingId =
        field_map_exn json__ "ExternalMeetingId" ExternalMeetingId.of_json in
      let meetingHostId =
        field_map json__ "MeetingHostId" ExternalUserId.of_json in
      let mediaRegion =
        field_map_exn json__ "MediaRegion" MediaRegion.of_json in
      let clientRequestToken =
        field_map_exn json__ "ClientRequestToken" ClientRequestToken.of_json in
      make ?mediaPlacementNetworkType ?tags ?tenantIds ?primaryMeetingId
        ?meetingFeatures ?notificationsConfiguration ~externalMeetingId
        ?meetingHostId ~mediaRegion ~clientRequestToken ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Creates a new Amazon Chime SDK meeting in the specified media Region with no initial attendees. For more information about specifying media Regions, see Available Regions and Using meeting Regions, both in the Amazon Chime SDK Developer Guide. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime SDK Developer Guide. If you use this API in conjuction with the and APIs, and you don't specify the MeetingFeatures.Content.MaxResolution or MeetingFeatures.Video.MaxResolution parameters, the following defaults are used: Content.MaxResolution: FHD Video.MaxResolution: HD"]
module CreateAttendeeResponse =
  struct
    type nonrec t =
      {
      attendee: Attendee.t option
        [@ocaml.doc
          "The attendee information, including attendee ID and join token."]}
    type nonrec error =
      [ `BadRequestException of BadRequestException.t 
      | `ForbiddenException of ForbiddenException.t 
      | `LimitExceededException of LimitExceededException.t 
      | `NotFoundException of NotFoundException.t 
      | `ServiceFailureException of ServiceFailureException.t 
      | `ServiceUnavailableException of ServiceUnavailableException.t 
      | `ThrottlingException of ThrottlingException.t 
      | `UnauthorizedException of UnauthorizedException.t 
      | `UnprocessableEntityException of UnprocessableEntityException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?attendee = fun () -> { attendee }
    let error_of_json name json =
      match name with
      | "BadRequestException" ->
          `BadRequestException (BadRequestException.of_json json)
      | "ForbiddenException" ->
          `ForbiddenException (ForbiddenException.of_json json)
      | "LimitExceededException" ->
          `LimitExceededException (LimitExceededException.of_json json)
      | "NotFoundException" ->
          `NotFoundException (NotFoundException.of_json json)
      | "ServiceFailureException" ->
          `ServiceFailureException (ServiceFailureException.of_json json)
      | "ServiceUnavailableException" ->
          `ServiceUnavailableException
            (ServiceUnavailableException.of_json json)
      | "ThrottlingException" ->
          `ThrottlingException (ThrottlingException.of_json json)
      | "UnauthorizedException" ->
          `UnauthorizedException (UnauthorizedException.of_json json)
      | "UnprocessableEntityException" ->
          `UnprocessableEntityException
            (UnprocessableEntityException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "BadRequestException" ->
          `BadRequestException (BadRequestException.of_xml xml)
      | "ForbiddenException" ->
          `ForbiddenException (ForbiddenException.of_xml xml)
      | "LimitExceededException" ->
          `LimitExceededException (LimitExceededException.of_xml xml)
      | "NotFoundException" ->
          `NotFoundException (NotFoundException.of_xml xml)
      | "ServiceFailureException" ->
          `ServiceFailureException (ServiceFailureException.of_xml xml)
      | "ServiceUnavailableException" ->
          `ServiceUnavailableException
            (ServiceUnavailableException.of_xml xml)
      | "ThrottlingException" ->
          `ThrottlingException (ThrottlingException.of_xml xml)
      | "UnauthorizedException" ->
          `UnauthorizedException (UnauthorizedException.of_xml xml)
      | "UnprocessableEntityException" ->
          `UnprocessableEntityException
            (UnprocessableEntityException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `BadRequestException e ->
          `Assoc
            [("error", (`String "BadRequestException"));
            ("details", (BadRequestException.to_json e))]
      | `ForbiddenException e ->
          `Assoc
            [("error", (`String "ForbiddenException"));
            ("details", (ForbiddenException.to_json e))]
      | `LimitExceededException e ->
          `Assoc
            [("error", (`String "LimitExceededException"));
            ("details", (LimitExceededException.to_json e))]
      | `NotFoundException e ->
          `Assoc
            [("error", (`String "NotFoundException"));
            ("details", (NotFoundException.to_json e))]
      | `ServiceFailureException e ->
          `Assoc
            [("error", (`String "ServiceFailureException"));
            ("details", (ServiceFailureException.to_json e))]
      | `ServiceUnavailableException e ->
          `Assoc
            [("error", (`String "ServiceUnavailableException"));
            ("details", (ServiceUnavailableException.to_json e))]
      | `ThrottlingException e ->
          `Assoc
            [("error", (`String "ThrottlingException"));
            ("details", (ThrottlingException.to_json e))]
      | `UnauthorizedException e ->
          `Assoc
            [("error", (`String "UnauthorizedException"));
            ("details", (UnauthorizedException.to_json e))]
      | `UnprocessableEntityException e ->
          `Assoc
            [("error", (`String "UnprocessableEntityException"));
            ("details", (UnprocessableEntityException.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
        [("Attendee", (Option.map x.attendee ~f:Attendee.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let attendee =
        (Option.map ~f:Attendee.of_xml) (Xml.child xml_arg0 "Attendee") in
      make ?attendee ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let attendee = field_map json__ "Attendee" Attendee.of_json in
      make ?attendee ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Creates a new attendee for an active Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide."]
module CreateAttendeeRequest =
  struct
    type nonrec t =
      {
      meetingId: GuidString.t [@ocaml.doc "The unique ID of the meeting."];
      externalUserId: ExternalUserId.t
        [@ocaml.doc
          "The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application. Pattern: \\[-_&\\@+=,()\\{\\}\\\\[\\\\]\\/\194\171\194\187.:|'\"#a-zA-Z0-9\195\128-\195\191\\s\\]* Values that begin with aws: are reserved. You can't configure a value that uses this prefix."];
      capabilities: AttendeeCapabilities.t option
        [@ocaml.doc
          "The capabilities (audio, video, or content) that you want to grant an attendee. If you don't specify capabilities, all users have send and receive capabilities on all media channels by default. You use the capabilities with a set of values that control what the capabilities can do, such as SendReceive data. For more information about those values, see . When using capabilities, be aware of these corner cases: If you specify MeetingFeatures:Video:MaxResolution:None when you create a meeting, all API requests that include SendReceive, Send, or Receive for AttendeeCapabilities:Video will be rejected with ValidationError 400. If you specify MeetingFeatures:Content:MaxResolution:None when you create a meeting, all API requests that include SendReceive, Send, or Receive for AttendeeCapabilities:Content will be rejected with ValidationError 400. You can't set content capabilities to SendReceive or Receive unless you also set video capabilities to SendReceive or Receive. If you don't set the video capability to receive, the response will contain an HTTP 400 Bad Request status code. However, you can set your video capability to receive and you set your content capability to not receive. If meeting features is defined as Video:MaxResolution:None but Content:MaxResolution is defined as something other than None and attendee capabilities are not defined in the API request, then the default attendee video capability is set to Receive and attendee content capability is set to SendReceive. This is because content SendReceive requires video to be at least Receive. When you change an audio capability from None or Receive to Send or SendReceive , and if the attendee left their microphone unmuted, audio will flow from the attendee to the other meeting participants. When you change a video or content capability from None or Receive to Send or SendReceive , and if the attendee turned on their video or content streams, remote attendees can receive those streams, but only after media renegotiation between the client and the Amazon Chime back-end server."]}
    let context_ = "CreateAttendeeRequest"
    let make ?capabilities =
      fun ~meetingId ->
        fun ~externalUserId ->
          fun () -> { capabilities; meetingId; externalUserId }
    let to_value x =
      structure_to_value
        [("MeetingId", (Some (GuidString.to_value x.meetingId)));
        ("ExternalUserId", (Some (ExternalUserId.to_value x.externalUserId)));
        ("Capabilities",
          (Option.map x.capabilities ~f:AttendeeCapabilities.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let capabilities =
        (Option.map ~f:AttendeeCapabilities.of_xml)
          (Xml.child xml_arg0 "Capabilities") in
      let externalUserId =
        ExternalUserId.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "ExternalUserId") in
      let meetingId =
        GuidString.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "MeetingId") in
      make ?capabilities ~externalUserId ~meetingId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let capabilities =
        field_map json__ "Capabilities" AttendeeCapabilities.of_json in
      let externalUserId =
        field_map_exn json__ "ExternalUserId" ExternalUserId.of_json in
      let meetingId = field_map_exn json__ "MeetingId" GuidString.of_json in
      make ?capabilities ~externalUserId ~meetingId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Creates a new attendee for an active Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide."]
module BatchUpdateAttendeeCapabilitiesExceptRequest =
  struct
    type nonrec t =
      {
      meetingId: GuidString.t
        [@ocaml.doc
          "The ID of the meeting associated with the update request."];
      excludedAttendeeIds: AttendeeIdsList.t
        [@ocaml.doc
          "The AttendeeIDs that you want to exclude from one or more capabilities."];
      capabilities: AttendeeCapabilities.t
        [@ocaml.doc
          "The capabilities (audio, video, or content) that you want to update."]}
    let context_ = "BatchUpdateAttendeeCapabilitiesExceptRequest"
    let make ~meetingId =
      fun ~excludedAttendeeIds ->
        fun ~capabilities ->
          fun () -> { meetingId; excludedAttendeeIds; capabilities }
    let to_value x =
      structure_to_value
        [("MeetingId", (Some (GuidString.to_value x.meetingId)));
        ("ExcludedAttendeeIds",
          (Some (AttendeeIdsList.to_value x.excludedAttendeeIds)));
        ("Capabilities",
          (Some (AttendeeCapabilities.to_value x.capabilities)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let capabilities =
        AttendeeCapabilities.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "Capabilities") in
      let excludedAttendeeIds =
        AttendeeIdsList.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "ExcludedAttendeeIds") in
      let meetingId =
        GuidString.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "MeetingId") in
      make ~capabilities ~excludedAttendeeIds ~meetingId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let capabilities =
        field_map_exn json__ "Capabilities" AttendeeCapabilities.of_json in
      let excludedAttendeeIds =
        field_map_exn json__ "ExcludedAttendeeIds" AttendeeIdsList.of_json in
      let meetingId = field_map_exn json__ "MeetingId" GuidString.of_json in
      make ~capabilities ~excludedAttendeeIds ~meetingId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Updates AttendeeCapabilities except the capabilities listed in an ExcludedAttendeeIds table. You use the capabilities with a set of values that control what the capabilities can do, such as SendReceive data. For more information about those values, see . When using capabilities, be aware of these corner cases: If you specify MeetingFeatures:Video:MaxResolution:None when you create a meeting, all API requests that include SendReceive, Send, or Receive for AttendeeCapabilities:Video will be rejected with ValidationError 400. If you specify MeetingFeatures:Content:MaxResolution:None when you create a meeting, all API requests that include SendReceive, Send, or Receive for AttendeeCapabilities:Content will be rejected with ValidationError 400. You can't set content capabilities to SendReceive or Receive unless you also set video capabilities to SendReceive or Receive. If you don't set the video capability to receive, the response will contain an HTTP 400 Bad Request status code. However, you can set your video capability to receive and you set your content capability to not receive. If meeting features is defined as Video:MaxResolution:None but Content:MaxResolution is defined as something other than None and attendee capabilities are not defined in the API request, then the default attendee video capability is set to Receive and attendee content capability is set to SendReceive. This is because content SendReceive requires video to be at least Receive. When you change an audio capability from None or Receive to Send or SendReceive , and if the attendee left their microphone unmuted, audio will flow from the attendee to the other meeting participants. When you change a video or content capability from None or Receive to Send or SendReceive , and if the attendee turned on their video or content streams, remote attendees can receive those streams, but only after media renegotiation between the client and the Amazon Chime back-end server."]
module BatchCreateAttendeeResponse =
  struct
    type nonrec t =
      {
      attendees: AttendeeList.t option
        [@ocaml.doc
          "The attendee information, including attendees' IDs and join tokens."];
      errors: BatchCreateAttendeeErrorList.t option
        [@ocaml.doc
          "If the action fails for one or more of the attendees in the request, a list of the attendees is returned, along with error codes and error messages."]}
    type nonrec error =
      [ `BadRequestException of BadRequestException.t 
      | `ForbiddenException of ForbiddenException.t 
      | `LimitExceededException of LimitExceededException.t 
      | `NotFoundException of NotFoundException.t 
      | `ServiceFailureException of ServiceFailureException.t 
      | `ServiceUnavailableException of ServiceUnavailableException.t 
      | `ThrottlingException of ThrottlingException.t 
      | `UnauthorizedException of UnauthorizedException.t 
      | `UnprocessableEntityException of UnprocessableEntityException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?attendees = fun ?errors -> fun () -> { attendees; errors }
    let error_of_json name json =
      match name with
      | "BadRequestException" ->
          `BadRequestException (BadRequestException.of_json json)
      | "ForbiddenException" ->
          `ForbiddenException (ForbiddenException.of_json json)
      | "LimitExceededException" ->
          `LimitExceededException (LimitExceededException.of_json json)
      | "NotFoundException" ->
          `NotFoundException (NotFoundException.of_json json)
      | "ServiceFailureException" ->
          `ServiceFailureException (ServiceFailureException.of_json json)
      | "ServiceUnavailableException" ->
          `ServiceUnavailableException
            (ServiceUnavailableException.of_json json)
      | "ThrottlingException" ->
          `ThrottlingException (ThrottlingException.of_json json)
      | "UnauthorizedException" ->
          `UnauthorizedException (UnauthorizedException.of_json json)
      | "UnprocessableEntityException" ->
          `UnprocessableEntityException
            (UnprocessableEntityException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "BadRequestException" ->
          `BadRequestException (BadRequestException.of_xml xml)
      | "ForbiddenException" ->
          `ForbiddenException (ForbiddenException.of_xml xml)
      | "LimitExceededException" ->
          `LimitExceededException (LimitExceededException.of_xml xml)
      | "NotFoundException" ->
          `NotFoundException (NotFoundException.of_xml xml)
      | "ServiceFailureException" ->
          `ServiceFailureException (ServiceFailureException.of_xml xml)
      | "ServiceUnavailableException" ->
          `ServiceUnavailableException
            (ServiceUnavailableException.of_xml xml)
      | "ThrottlingException" ->
          `ThrottlingException (ThrottlingException.of_xml xml)
      | "UnauthorizedException" ->
          `UnauthorizedException (UnauthorizedException.of_xml xml)
      | "UnprocessableEntityException" ->
          `UnprocessableEntityException
            (UnprocessableEntityException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `BadRequestException e ->
          `Assoc
            [("error", (`String "BadRequestException"));
            ("details", (BadRequestException.to_json e))]
      | `ForbiddenException e ->
          `Assoc
            [("error", (`String "ForbiddenException"));
            ("details", (ForbiddenException.to_json e))]
      | `LimitExceededException e ->
          `Assoc
            [("error", (`String "LimitExceededException"));
            ("details", (LimitExceededException.to_json e))]
      | `NotFoundException e ->
          `Assoc
            [("error", (`String "NotFoundException"));
            ("details", (NotFoundException.to_json e))]
      | `ServiceFailureException e ->
          `Assoc
            [("error", (`String "ServiceFailureException"));
            ("details", (ServiceFailureException.to_json e))]
      | `ServiceUnavailableException e ->
          `Assoc
            [("error", (`String "ServiceUnavailableException"));
            ("details", (ServiceUnavailableException.to_json e))]
      | `ThrottlingException e ->
          `Assoc
            [("error", (`String "ThrottlingException"));
            ("details", (ThrottlingException.to_json e))]
      | `UnauthorizedException e ->
          `Assoc
            [("error", (`String "UnauthorizedException"));
            ("details", (UnauthorizedException.to_json e))]
      | `UnprocessableEntityException e ->
          `Assoc
            [("error", (`String "UnprocessableEntityException"));
            ("details", (UnprocessableEntityException.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
        [("Attendees", (Option.map x.attendees ~f:AttendeeList.to_value));
        ("Errors",
          (Option.map x.errors ~f:BatchCreateAttendeeErrorList.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let errors =
        (Option.map ~f:BatchCreateAttendeeErrorList.of_xml)
          (Xml.child xml_arg0 "Errors") in
      let attendees =
        (Option.map ~f:AttendeeList.of_xml) (Xml.child xml_arg0 "Attendees") in
      make ?errors ?attendees ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let errors =
        field_map json__ "Errors" BatchCreateAttendeeErrorList.of_json in
      let attendees = field_map json__ "Attendees" AttendeeList.of_json in
      make ?errors ?attendees ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Creates up to 100 attendees for an active Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide."]
module BatchCreateAttendeeRequest =
  struct
    type nonrec t =
      {
      meetingId: GuidString.t
        [@ocaml.doc
          "The Amazon Chime SDK ID of the meeting to which you're adding attendees."];
      attendees: CreateAttendeeRequestItemList.t
        [@ocaml.doc
          "The attendee information, including attendees' IDs and join tokens."]}
    let context_ = "BatchCreateAttendeeRequest"
    let make ~meetingId =
      fun ~attendees -> fun () -> { meetingId; attendees }
    let to_value x =
      structure_to_value
        [("MeetingId", (Some (GuidString.to_value x.meetingId)));
        ("Attendees",
          (Some (CreateAttendeeRequestItemList.to_value x.attendees)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let attendees =
        CreateAttendeeRequestItemList.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "Attendees") in
      let meetingId =
        GuidString.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "MeetingId") in
      make ~attendees ~meetingId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let attendees =
        field_map_exn json__ "Attendees"
          CreateAttendeeRequestItemList.of_json in
      let meetingId = field_map_exn json__ "MeetingId" GuidString.of_json in
      make ~attendees ~meetingId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Creates up to 100 attendees for an active Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide."]