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
(* 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.pi
let apiVersion = "2018-02-27"
let endpointPrefix = "pi"
let serviceFullName = "AWS Performance Insights"
let signatureVersion = "v4"
let protocol = "json"
let globalEndpoint = endpointPrefix ^ ".amazonaws.com"
let serviceAbbreviation = "AWS PI"
let targetPrefix = "PerformanceInsightsv20180227"
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 AcceptLanguage =
  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 AcceptLanguage" xml_arg0)
    let of_json j = of_string (string_of_json ~kind:"AcceptLanguage" j)
    let to_json = simple_to_json to_value
  end
module SanitizedString =
  struct
    type nonrec t = string[@@ocaml.doc
                            "A generic string type that forbids characters that could expose our service (or services downstream) to security risks around injections."]
    let context_ = "SanitizedString"
    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:"^[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:"SanitizedString" j
    let to_json = simple_to_json to_value
  end[@@ocaml.doc
       "A generic string type that forbids characters that could expose our service (or services downstream) to security risks around injections."]
module AdditionalMetricsList =
  struct
    type nonrec t = SanitizedString.t list
    let make i =
      let open Result in
        ok_or_failwith
          ((check_list_max i ~max:30) >>= (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:SanitizedString.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:SanitizedString.of_xml)
    let of_json j =
      list_of_json ~kind:"AdditionalMetricsList"
        ~of_json:SanitizedString.of_json j
    let to_json v = composed_to_json to_value v
  end
module RequestString =
  struct
    type nonrec t = string
    let context_ = "RequestString"
    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.*")));
        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:"RequestString" j
    let to_json = simple_to_json to_value
  end
module Double =
  struct
    type nonrec t = float
    let make i = i
    let of_string = Float.of_string
    let to_value x = `Double x
    let to_query v = to_query to_value v
    let to_header x = Stdlib.Float.to_string x
    let of_xml xml_arg0 =
      Float.of_string (string_of_xml ~kind:"a double" xml_arg0)
    let of_json j = float_of_json ~kind:"a double" j
    let to_json = simple_to_json to_value
  end
module AdditionalMetricsMap =
  struct
    type nonrec t = (RequestString.t * Double.t) list
    let make i = i
    let of_header xs =
      make
        (List.filter_map xs
           ~f:(fun (k, v) ->
                 (Base.String.chop_prefix k ~prefix:"x-amz-meta-") |>
                   (Option.map
                      ~f:(fun chopped ->
                            ((RequestString.of_string chopped),
                              (Double.of_string v))))))
    let to_value xs =
      (xs |>
         (List.map
            ~f:(fun (x, y) ->
                  (RequestString.to_value x) |>
                    (fun x -> (Double.to_value y) |> (fun y -> (x, y))))))
        |> (fun x -> `Map x)
    let to_query v = to_query to_value v
    let to_header _ =
      failwithf "to_header is not implemented for Map_shape objects" ()
    let of_xml _ =
      failwith "of_xml_converter_of_shape: Map_shape case not implemented"
    let of_json j =
      object_of_json ~key_of_string:RequestString.of_string
        ~of_json:Double.of_json j
    let to_json v = composed_to_json to_value v
  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:.*:pi:.*$")));
        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 ServiceType =
  struct
    type nonrec t =
      | RDS 
      | DOCDB 
      | Non_static_id of string 
    let make i = i
    let to_string =
      function | RDS -> "RDS" | DOCDB -> "DOCDB" | Non_static_id s -> s
    let of_string =
      function | "RDS" -> RDS | "DOCDB" -> DOCDB | 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 ServiceType" xml_arg0)
    let of_json j = of_string (string_of_json ~kind:"ServiceType" 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_min i ~min:0) >>=
             (fun () ->
                (check_string_max i ~max:256) >>=
                  (fun () -> check_pattern i ~pattern:".*\\S.*")));
        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 Severity =
  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 Severity" xml_arg0)
    let of_json j = of_string (string_of_json ~kind:"Severity" j)
    let to_json = simple_to_json to_value
  end
module MarkdownString =
  struct
    type nonrec t = string
    let context_ = "MarkdownString"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:0) >>=
             (fun () ->
                (check_string_max i ~max:8000) >>=
                  (fun () -> check_pattern i ~pattern:"(.|\\n)*")));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"MarkdownString" j
    let to_json = simple_to_json to_value
  end
module Recommendation =
  struct
    type nonrec t =
      {
      recommendationId: String_.t option
        [@ocaml.doc "The unique identifier for the recommendation."];
      recommendationDescription: MarkdownString.t option
        [@ocaml.doc
          "The recommendation details to help resolve the performance issue. For example, Investigate the following SQLs that contributed to 100% of the total DBLoad during that time period: sql-id"]}
    let make ?recommendationId =
      fun ?recommendationDescription ->
        fun () -> { recommendationId; recommendationDescription }
    let to_value x =
      structure_to_value
        [("RecommendationId",
           (Option.map x.recommendationId ~f:String_.to_value));
        ("RecommendationDescription",
          (Option.map x.recommendationDescription ~f:MarkdownString.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let recommendationDescription =
        (Option.map ~f:MarkdownString.of_xml)
          (Xml.child xml_arg0 "RecommendationDescription") in
      let recommendationId =
        (Option.map ~f:String_.of_xml)
          (Xml.child xml_arg0 "RecommendationId") in
      make ?recommendationDescription ?recommendationId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let recommendationDescription =
        field_map json__ "RecommendationDescription" MarkdownString.of_json in
      let recommendationId =
        field_map json__ "RecommendationId" String_.of_json in
      make ?recommendationDescription ?recommendationId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "The list of recommendations for the insight."]
module RecommendationList =
  struct
    type nonrec t = Recommendation.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:Recommendation.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:Recommendation.of_xml)
    let of_json j =
      list_of_json ~kind:"RecommendationList" ~of_json:Recommendation.of_json
        j
    let to_json v = composed_to_json to_value v
  end
module ISOTimestamp =
  struct
    type nonrec t = string
    let make i = i
    let of_string x = x
    let to_value x = `Timestamp x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = string_of_xml ~kind:"a timestamp"
    let of_json = timestamp_of_json
    let to_json = simple_to_json to_value
  end
module DescriptiveString =
  struct
    type nonrec t = string
    let context_ = "DescriptiveString"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:1) >>=
             (fun () ->
                (check_string_max i ~max:2000) >>=
                  (fun () -> check_pattern i ~pattern:"^.*$")));
        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:"DescriptiveString" j
    let to_json = simple_to_json to_value
  end
module DescriptiveMap =
  struct
    type nonrec t = (DescriptiveString.t * DescriptiveString.t) list
    let make i = i
    let of_header xs =
      make
        (List.filter_map xs
           ~f:(fun (k, v) ->
                 (Base.String.chop_prefix k ~prefix:"x-amz-meta-") |>
                   (Option.map
                      ~f:(fun chopped ->
                            ((DescriptiveString.of_string chopped),
                              (DescriptiveString.of_string v))))))
    let to_value xs =
      (xs |>
         (List.map
            ~f:(fun (x, y) ->
                  (DescriptiveString.to_value x) |>
                    (fun x ->
                       (DescriptiveString.to_value y) |> (fun y -> (x, y))))))
        |> (fun x -> `Map x)
    let to_query v = to_query to_value v
    let to_header _ =
      failwithf "to_header is not implemented for Map_shape objects" ()
    let of_xml _ =
      failwith "of_xml_converter_of_shape: Map_shape case not implemented"
    let of_json j =
      object_of_json ~key_of_string:DescriptiveString.of_string
        ~of_json:DescriptiveString.of_json j
    let to_json v = composed_to_json to_value v
  end
module PerformanceInsightsMetric =
  struct
    type nonrec t =
      {
      metric: DescriptiveString.t option
        [@ocaml.doc "The Performance Insights metric."];
      displayName: DescriptiveString.t option
        [@ocaml.doc "The Performance Insights metric name."];
      dimensions: DescriptiveMap.t option
        [@ocaml.doc
          "A dimension map that contains the dimensions for this partition."];
      filter: DescriptiveMap.t option
        [@ocaml.doc "The filter for the Performance Insights metric."];
      value: Double.t option
        [@ocaml.doc
          "The value of the metric. For example, 9 for db.load.avg."]}
    let make ?metric =
      fun ?displayName ->
        fun ?dimensions ->
          fun ?filter ->
            fun ?value ->
              fun () -> { metric; displayName; dimensions; filter; value }
    let to_value x =
      structure_to_value
        [("Metric", (Option.map x.metric ~f:DescriptiveString.to_value));
        ("DisplayName",
          (Option.map x.displayName ~f:DescriptiveString.to_value));
        ("Dimensions", (Option.map x.dimensions ~f:DescriptiveMap.to_value));
        ("Filter", (Option.map x.filter ~f:DescriptiveMap.to_value));
        ("Value", (Option.map x.value ~f:Double.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let value = (Option.map ~f:Double.of_xml) (Xml.child xml_arg0 "Value") in
      let filter =
        (Option.map ~f:DescriptiveMap.of_xml) (Xml.child xml_arg0 "Filter") in
      let dimensions =
        (Option.map ~f:DescriptiveMap.of_xml)
          (Xml.child xml_arg0 "Dimensions") in
      let displayName =
        (Option.map ~f:DescriptiveString.of_xml)
          (Xml.child xml_arg0 "DisplayName") in
      let metric =
        (Option.map ~f:DescriptiveString.of_xml)
          (Xml.child xml_arg0 "Metric") in
      make ?value ?filter ?dimensions ?displayName ?metric ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let value = field_map json__ "Value" Double.of_json in
      let filter = field_map json__ "Filter" DescriptiveMap.of_json in
      let dimensions = field_map json__ "Dimensions" DescriptiveMap.of_json in
      let displayName =
        field_map json__ "DisplayName" DescriptiveString.of_json in
      let metric = field_map json__ "Metric" DescriptiveString.of_json in
      make ?value ?filter ?dimensions ?displayName ?metric ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "This data type helps to determine Performance Insights metric to render for the insight."]
module Data =
  struct
    type nonrec t =
      {
      performanceInsightsMetric: PerformanceInsightsMetric.t option
        [@ocaml.doc
          "This field determines the Performance Insights metric to render for the insight. The name field refers to a Performance Insights metric."]}
    let make ?performanceInsightsMetric =
      fun () -> { performanceInsightsMetric }
    let to_value x =
      structure_to_value
        [("PerformanceInsightsMetric",
           (Option.map x.performanceInsightsMetric
              ~f:PerformanceInsightsMetric.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let performanceInsightsMetric =
        (Option.map ~f:PerformanceInsightsMetric.of_xml)
          (Xml.child xml_arg0 "PerformanceInsightsMetric") in
      make ?performanceInsightsMetric ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let performanceInsightsMetric =
        field_map json__ "PerformanceInsightsMetric"
          PerformanceInsightsMetric.of_json in
      make ?performanceInsightsMetric ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "List of data objects which provide details about source metrics. This field can be used to determine the PI metric to render for the insight. This data type also includes static values for the metrics for the Insight that were calculated and included in text and annotations on the DB load chart."]
module DataList =
  struct
    type nonrec t = Data.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:Data.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:Data.of_xml)
    let of_json j = list_of_json ~kind:"DataList" ~of_json:Data.of_json j
    let to_json v = composed_to_json to_value v
  end
module ContextType =
  struct
    type nonrec t =
      | CAUSAL 
      | CONTEXTUAL 
      | Non_static_id of string 
    let make i = i
    let to_string =
      function
      | CAUSAL -> "CAUSAL"
      | CONTEXTUAL -> "CONTEXTUAL"
      | Non_static_id s -> s
    let of_string =
      function
      | "CAUSAL" -> CAUSAL
      | "CONTEXTUAL" -> CONTEXTUAL
      | 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 ContextType" xml_arg0)
    let of_json j = of_string (string_of_json ~kind:"ContextType" j)
    let to_json = simple_to_json to_value
  end
module rec
  Insight:sig
            type nonrec t =
              {
              insightId: String_.t option
                [@ocaml.doc
                  "The unique identifier for the insight. For example, insight-12345678901234567."];
              insightType: String_.t option
                [@ocaml.doc
                  "The type of insight. For example, HighDBLoad, HighCPU, or DominatingSQLs."];
              context: ContextType.t option
                [@ocaml.doc
                  "Indicates if the insight is causal or correlated insight."];
              startTime: ISOTimestamp.t option
                [@ocaml.doc
                  "The start time of the insight. For example, 2018-10-30T00:00:00Z."];
              endTime: ISOTimestamp.t option
                [@ocaml.doc
                  "The end time of the insight. For example, 2018-10-30T00:00:00Z."];
              severity: Severity.t option
                [@ocaml.doc
                  "The severity of the insight. The values are: Low, Medium, or High."];
              supportingInsights: InsightList.t option
                [@ocaml.doc
                  "List of supporting insights that provide additional factors for the insight."];
              description: MarkdownString.t option
                [@ocaml.doc
                  "Description of the insight. For example: A high severity Insight found between 02:00 to 02:30, where there was an unusually high DB load 600x above baseline. Likely performance impact."];
              recommendations: RecommendationList.t option
                [@ocaml.doc
                  "List of recommendations for the insight. For example, Investigate the following SQLs that contributed to 100% of the total DBLoad during that time period: sql-id."];
              insightData: DataList.t option
                [@ocaml.doc
                  "List of data objects containing metrics and references from the time range while generating the insight."];
              baselineData: DataList.t option
                [@ocaml.doc
                  "Metric names and values from the timeframe used as baseline to generate the insight."]}
            val make :
              ?insightId:String_.t ->
                ?insightType:String_.t ->
                  ?context:ContextType.t ->
                    ?startTime:ISOTimestamp.t ->
                      ?endTime:ISOTimestamp.t ->
                        ?severity:Severity.t ->
                          ?supportingInsights:InsightList.t ->
                            ?description:MarkdownString.t ->
                              ?recommendations:RecommendationList.t ->
                                ?insightData:DataList.t ->
                                  ?baselineData:DataList.t -> unit -> t
            val to_value : t -> Botodata.value
            val to_query : t -> Client.Query.t
            val of_xml : Xml.t -> t
            val of_json : Yojson.Safe.t -> t
            val to_json : t -> Yojson.Safe.t
          end =
  struct
    type nonrec t =
      {
      insightId: String_.t option
        [@ocaml.doc
          "The unique identifier for the insight. For example, insight-12345678901234567."];
      insightType: String_.t option
        [@ocaml.doc
          "The type of insight. For example, HighDBLoad, HighCPU, or DominatingSQLs."];
      context: ContextType.t option
        [@ocaml.doc
          "Indicates if the insight is causal or correlated insight."];
      startTime: ISOTimestamp.t option
        [@ocaml.doc
          "The start time of the insight. For example, 2018-10-30T00:00:00Z."];
      endTime: ISOTimestamp.t option
        [@ocaml.doc
          "The end time of the insight. For example, 2018-10-30T00:00:00Z."];
      severity: Severity.t option
        [@ocaml.doc
          "The severity of the insight. The values are: Low, Medium, or High."];
      supportingInsights: InsightList.t option
        [@ocaml.doc
          "List of supporting insights that provide additional factors for the insight."];
      description: MarkdownString.t option
        [@ocaml.doc
          "Description of the insight. For example: A high severity Insight found between 02:00 to 02:30, where there was an unusually high DB load 600x above baseline. Likely performance impact."];
      recommendations: RecommendationList.t option
        [@ocaml.doc
          "List of recommendations for the insight. For example, Investigate the following SQLs that contributed to 100% of the total DBLoad during that time period: sql-id."];
      insightData: DataList.t option
        [@ocaml.doc
          "List of data objects containing metrics and references from the time range while generating the insight."];
      baselineData: DataList.t option
        [@ocaml.doc
          "Metric names and values from the timeframe used as baseline to generate the insight."]}
    let make ?insightId =
      fun ?insightType ->
        fun ?context ->
          fun ?startTime ->
            fun ?endTime ->
              fun ?severity ->
                fun ?supportingInsights ->
                  fun ?description ->
                    fun ?recommendations ->
                      fun ?insightData ->
                        fun ?baselineData ->
                          fun () ->
                            {
                              insightId;
                              insightType;
                              context;
                              startTime;
                              endTime;
                              severity;
                              supportingInsights;
                              description;
                              recommendations;
                              insightData;
                              baselineData
                            }
    let to_value x =
      structure_to_value
        [("InsightId", (Option.map x.insightId ~f:String_.to_value));
        ("InsightType", (Option.map x.insightType ~f:String_.to_value));
        ("Context", (Option.map x.context ~f:ContextType.to_value));
        ("StartTime", (Option.map x.startTime ~f:ISOTimestamp.to_value));
        ("EndTime", (Option.map x.endTime ~f:ISOTimestamp.to_value));
        ("Severity", (Option.map x.severity ~f:Severity.to_value));
        ("SupportingInsights",
          (Option.map x.supportingInsights ~f:InsightList.to_value));
        ("Description",
          (Option.map x.description ~f:MarkdownString.to_value));
        ("Recommendations",
          (Option.map x.recommendations ~f:RecommendationList.to_value));
        ("InsightData", (Option.map x.insightData ~f:DataList.to_value));
        ("BaselineData", (Option.map x.baselineData ~f:DataList.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let baselineData =
        (Option.map ~f:DataList.of_xml) (Xml.child xml_arg0 "BaselineData") in
      let insightData =
        (Option.map ~f:DataList.of_xml) (Xml.child xml_arg0 "InsightData") in
      let recommendations =
        (Option.map ~f:RecommendationList.of_xml)
          (Xml.child xml_arg0 "Recommendations") in
      let description =
        (Option.map ~f:MarkdownString.of_xml)
          (Xml.child xml_arg0 "Description") in
      let supportingInsights =
        (Option.map ~f:InsightList.of_xml)
          (Xml.child xml_arg0 "SupportingInsights") in
      let severity =
        (Option.map ~f:Severity.of_xml) (Xml.child xml_arg0 "Severity") in
      let endTime =
        (Option.map ~f:ISOTimestamp.of_xml) (Xml.child xml_arg0 "EndTime") in
      let startTime =
        (Option.map ~f:ISOTimestamp.of_xml) (Xml.child xml_arg0 "StartTime") in
      let context =
        (Option.map ~f:ContextType.of_xml) (Xml.child xml_arg0 "Context") in
      let insightType =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "InsightType") in
      let insightId =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "InsightId") in
      make ?baselineData ?insightData ?recommendations ?description
        ?supportingInsights ?severity ?endTime ?startTime ?context
        ?insightType ?insightId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let baselineData = field_map json__ "BaselineData" DataList.of_json in
      let insightData = field_map json__ "InsightData" DataList.of_json in
      let recommendations =
        field_map json__ "Recommendations" RecommendationList.of_json in
      let description = field_map json__ "Description" MarkdownString.of_json in
      let supportingInsights =
        field_map json__ "SupportingInsights" InsightList.of_json in
      let severity = field_map json__ "Severity" Severity.of_json in
      let endTime = field_map json__ "EndTime" ISOTimestamp.of_json in
      let startTime = field_map json__ "StartTime" ISOTimestamp.of_json in
      let context = field_map json__ "Context" ContextType.of_json in
      let insightType = field_map json__ "InsightType" String_.of_json in
      let insightId = field_map json__ "InsightId" String_.of_json in
      make ?baselineData ?insightData ?recommendations ?description
        ?supportingInsights ?severity ?endTime ?startTime ?context
        ?insightType ?insightId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Retrieves the list of performance issues which are identified."]
 and
  InsightList:sig
                type nonrec t = Insight.t list
                val make : Insight.t list -> t
                val to_value : t -> Botodata.value
                val to_query : t -> Client.Query.t
                val of_xml : Xml.t -> Insight.t list
                val of_json : Yojson.Safe.t -> t
                val to_json : t -> Yojson.Safe.t
                val to_header : t -> string
              end =
  struct
    type nonrec t = Insight.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:Insight.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:Insight.of_xml)
    let of_json j =
      list_of_json ~kind:"InsightList" ~of_json:Insight.of_json j
    let to_json v = composed_to_json to_value v
  end
module IdentifierString =
  struct
    type nonrec t = string
    let context_ = "IdentifierString"
    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:"^[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:"IdentifierString" j
    let to_json = simple_to_json to_value
  end
module AnalysisStatus =
  struct
    type nonrec t =
      | RUNNING 
      | SUCCEEDED 
      | FAILED 
      | Non_static_id of string 
    let make i = i
    let to_string =
      function
      | RUNNING -> "RUNNING"
      | SUCCEEDED -> "SUCCEEDED"
      | FAILED -> "FAILED"
      | Non_static_id s -> s
    let of_string =
      function
      | "RUNNING" -> RUNNING
      | "SUCCEEDED" -> SUCCEEDED
      | "FAILED" -> FAILED
      | x -> Non_static_id x
    let to_value x = `Enum (to_string x)
    let to_query v = to_query to_value v
    let to_header x = to_string x
    let of_xml xml_arg0 =
      of_string (string_of_xml ~kind:"enumeration AnalysisStatus" xml_arg0)
    let of_json j = of_string (string_of_json ~kind:"AnalysisStatus" j)
    let to_json = simple_to_json to_value
  end
module AnalysisReportId =
  struct
    type nonrec t = string
    let context_ = "AnalysisReportId"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:1) >>=
             (fun () ->
                (check_string_max i ~max:100) >>=
                  (fun () -> check_pattern i ~pattern:"report-[0-9a-f]{17}")));
        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:"AnalysisReportId" j
    let to_json = simple_to_json to_value
  end
module AnalysisReport =
  struct
    type nonrec t =
      {
      analysisReportId: AnalysisReportId.t option
        [@ocaml.doc "The name of the analysis report."];
      identifier: IdentifierString.t option
        [@ocaml.doc "The unique identifier of the analysis report."];
      serviceType: ServiceType.t option
        [@ocaml.doc
          "List the tags for the Amazon Web Services service for which Performance Insights returns metrics. Valid values are as follows: RDS DOCDB"];
      createTime: ISOTimestamp.t option
        [@ocaml.doc "The time you created the analysis report."];
      startTime: ISOTimestamp.t option
        [@ocaml.doc "The analysis start time in the report."];
      endTime: ISOTimestamp.t option
        [@ocaml.doc "The analysis end time in the report."];
      status: AnalysisStatus.t option
        [@ocaml.doc "The status of the created analysis report."];
      insights: InsightList.t option
        [@ocaml.doc
          "The list of identified insights in the analysis report."]}
    let make ?analysisReportId =
      fun ?identifier ->
        fun ?serviceType ->
          fun ?createTime ->
            fun ?startTime ->
              fun ?endTime ->
                fun ?status ->
                  fun ?insights ->
                    fun () ->
                      {
                        analysisReportId;
                        identifier;
                        serviceType;
                        createTime;
                        startTime;
                        endTime;
                        status;
                        insights
                      }
    let to_value x =
      structure_to_value
        [("AnalysisReportId",
           (Option.map x.analysisReportId ~f:AnalysisReportId.to_value));
        ("Identifier",
          (Option.map x.identifier ~f:IdentifierString.to_value));
        ("ServiceType", (Option.map x.serviceType ~f:ServiceType.to_value));
        ("CreateTime", (Option.map x.createTime ~f:ISOTimestamp.to_value));
        ("StartTime", (Option.map x.startTime ~f:ISOTimestamp.to_value));
        ("EndTime", (Option.map x.endTime ~f:ISOTimestamp.to_value));
        ("Status", (Option.map x.status ~f:AnalysisStatus.to_value));
        ("Insights", (Option.map x.insights ~f:InsightList.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let insights =
        (Option.map ~f:InsightList.of_xml) (Xml.child xml_arg0 "Insights") in
      let status =
        (Option.map ~f:AnalysisStatus.of_xml) (Xml.child xml_arg0 "Status") in
      let endTime =
        (Option.map ~f:ISOTimestamp.of_xml) (Xml.child xml_arg0 "EndTime") in
      let startTime =
        (Option.map ~f:ISOTimestamp.of_xml) (Xml.child xml_arg0 "StartTime") in
      let createTime =
        (Option.map ~f:ISOTimestamp.of_xml) (Xml.child xml_arg0 "CreateTime") in
      let serviceType =
        (Option.map ~f:ServiceType.of_xml) (Xml.child xml_arg0 "ServiceType") in
      let identifier =
        (Option.map ~f:IdentifierString.of_xml)
          (Xml.child xml_arg0 "Identifier") in
      let analysisReportId =
        (Option.map ~f:AnalysisReportId.of_xml)
          (Xml.child xml_arg0 "AnalysisReportId") in
      make ?insights ?status ?endTime ?startTime ?createTime ?serviceType
        ?identifier ?analysisReportId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let insights = field_map json__ "Insights" InsightList.of_json in
      let status = field_map json__ "Status" AnalysisStatus.of_json in
      let endTime = field_map json__ "EndTime" ISOTimestamp.of_json in
      let startTime = field_map json__ "StartTime" ISOTimestamp.of_json in
      let createTime = field_map json__ "CreateTime" ISOTimestamp.of_json in
      let serviceType = field_map json__ "ServiceType" ServiceType.of_json in
      let identifier = field_map json__ "Identifier" IdentifierString.of_json in
      let analysisReportId =
        field_map json__ "AnalysisReportId" AnalysisReportId.of_json in
      make ?insights ?status ?endTime ?startTime ?createTime ?serviceType
        ?identifier ?analysisReportId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Retrieves the summary of the performance analysis report created for a time period."]
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:"^.*$")));
        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 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:"^.*$")));
        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 Tag =
  struct
    type nonrec t =
      {
      key: TagKey.t
        [@ocaml.doc
          "A key is the required name of the tag. The string value can be from 1 to 128 Unicode characters in length and can't be prefixed with aws: or rds:. The string can only contain only the set of Unicode letters, digits, white-space, '_', '.', ':', '/', '=', '+', '-', '\\@' (Java regex: \"^(\\[\\\\p\\{L\\}\\\\p\\{Z\\}\\\\p\\{N\\}_.:/=+\\\\-\\@\\]*)$\")."];
      value: TagValue.t
        [@ocaml.doc
          "A value is the optional value of the tag. The string value can be from 1 to 256 Unicode characters in length and can't be prefixed with aws: or rds:. The string can only contain only the set of Unicode letters, digits, white-space, '_', '.', ':', '/', '=', '+', '-', '\\@' (Java regex: \"^(\\[\\\\p\\{L\\}\\\\p\\{Z\\}\\\\p\\{N\\}_.:/=+\\\\-\\@\\]*)$\")."]}
    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
       "Metadata assigned to an Amazon RDS resource consisting of a key-value pair."]
module TagList =
  struct
    type nonrec t = Tag.t list
    let make i =
      let open Result in
        ok_or_failwith
          ((check_list_max i ~max:200) >>=
             (fun () -> check_list_min i ~min:0));
        i
    let of_string _ =
      failwithf "of_string is not implemented for List_shape objects" ()
      [@@warning "-32"]
    let to_value xs =
      (xs |> (List.map ~f:Tag.to_value)) |> (fun x -> `List x)
    let to_query v = to_query to_value v
    let to_header _ =
      failwithf "to_header is not implemented for List_shape objects" ()
    let of_xml x =
      make
        (List.map
           ((Xml.all_children x) |>
              (List.filter
                 ~f:(function
                     | `Data s ->
                         (match Stdlib.String.trim s with
                          | "" -> false
                          | _ -> true)
                     | _ -> true))) ~f:Tag.of_xml)
    let of_json j = list_of_json ~kind:"TagList" ~of_json:Tag.of_json j
    let to_json v = composed_to_json to_value v
  end
module AnalysisReportSummary =
  struct
    type nonrec t =
      {
      analysisReportId: String_.t option
        [@ocaml.doc "The name of the analysis report."];
      createTime: ISOTimestamp.t option
        [@ocaml.doc "The time you created the analysis report."];
      startTime: ISOTimestamp.t option
        [@ocaml.doc "The start time of the analysis in the report."];
      endTime: ISOTimestamp.t option
        [@ocaml.doc "The end time of the analysis in the report."];
      status: AnalysisStatus.t option
        [@ocaml.doc "The status of the analysis report."];
      tags: TagList.t option
        [@ocaml.doc "List of all the tags added to the analysis report."]}
    let make ?analysisReportId =
      fun ?createTime ->
        fun ?startTime ->
          fun ?endTime ->
            fun ?status ->
              fun ?tags ->
                fun () ->
                  {
                    analysisReportId;
                    createTime;
                    startTime;
                    endTime;
                    status;
                    tags
                  }
    let to_value x =
      structure_to_value
        [("AnalysisReportId",
           (Option.map x.analysisReportId ~f:String_.to_value));
        ("CreateTime", (Option.map x.createTime ~f:ISOTimestamp.to_value));
        ("StartTime", (Option.map x.startTime ~f:ISOTimestamp.to_value));
        ("EndTime", (Option.map x.endTime ~f:ISOTimestamp.to_value));
        ("Status", (Option.map x.status ~f:AnalysisStatus.to_value));
        ("Tags", (Option.map x.tags ~f:TagList.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let tags = (Option.map ~f:TagList.of_xml) (Xml.child xml_arg0 "Tags") in
      let status =
        (Option.map ~f:AnalysisStatus.of_xml) (Xml.child xml_arg0 "Status") in
      let endTime =
        (Option.map ~f:ISOTimestamp.of_xml) (Xml.child xml_arg0 "EndTime") in
      let startTime =
        (Option.map ~f:ISOTimestamp.of_xml) (Xml.child xml_arg0 "StartTime") in
      let createTime =
        (Option.map ~f:ISOTimestamp.of_xml) (Xml.child xml_arg0 "CreateTime") in
      let analysisReportId =
        (Option.map ~f:String_.of_xml)
          (Xml.child xml_arg0 "AnalysisReportId") in
      make ?tags ?status ?endTime ?startTime ?createTime ?analysisReportId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let tags = field_map json__ "Tags" TagList.of_json in
      let status = field_map json__ "Status" AnalysisStatus.of_json in
      let endTime = field_map json__ "EndTime" ISOTimestamp.of_json in
      let startTime = field_map json__ "StartTime" ISOTimestamp.of_json in
      let createTime = field_map json__ "CreateTime" ISOTimestamp.of_json in
      let analysisReportId =
        field_map json__ "AnalysisReportId" String_.of_json in
      make ?tags ?status ?endTime ?startTime ?createTime ?analysisReportId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Retrieves the details of the performance analysis report."]
module AnalysisReportSummaryList =
  struct
    type nonrec t = AnalysisReportSummary.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:AnalysisReportSummary.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:AnalysisReportSummary.of_xml)
    let of_json j =
      list_of_json ~kind:"AnalysisReportSummaryList"
        ~of_json:AnalysisReportSummary.of_json j
    let to_json v = composed_to_json to_value v
  end
module FineGrainedAction =
  struct
    type nonrec t =
      | DescribeDimensionKeys 
      | GetDimensionKeyDetails 
      | GetResourceMetrics 
      | Non_static_id of string 
    let make i = i
    let to_string =
      function
      | DescribeDimensionKeys -> "DescribeDimensionKeys"
      | GetDimensionKeyDetails -> "GetDimensionKeyDetails"
      | GetResourceMetrics -> "GetResourceMetrics"
      | Non_static_id s -> s
    let of_string =
      function
      | "DescribeDimensionKeys" -> DescribeDimensionKeys
      | "GetDimensionKeyDetails" -> GetDimensionKeyDetails
      | "GetResourceMetrics" -> GetResourceMetrics
      | 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 FineGrainedAction" xml_arg0)
    let of_json j = of_string (string_of_json ~kind:"FineGrainedAction" j)
    let to_json = simple_to_json to_value
  end
module AuthorizedActionsList =
  struct
    type nonrec t = FineGrainedAction.t list
    let make i =
      let open Result in
        ok_or_failwith
          ((check_list_max i ~max:3) >>= (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:FineGrainedAction.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:FineGrainedAction.of_xml)
    let of_json j =
      list_of_json ~kind:"AuthorizedActionsList"
        ~of_json:FineGrainedAction.of_json j
    let to_json v = composed_to_json to_value v
  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 CreatePerformanceAnalysisReportRequest =
  struct
    type nonrec t =
      {
      serviceType: ServiceType.t
        [@ocaml.doc
          "The Amazon Web Services service for which Performance Insights will return metrics. Valid value is RDS."];
      identifier: IdentifierString.t
        [@ocaml.doc
          "An immutable, Amazon Web Services Region-unique identifier for a data source. Performance Insights gathers metrics from this data source. To use an Amazon RDS instance as a data source, you specify its DbiResourceId value. For example, specify db-ADECBTYHKTSAUMUZQYPDS2GW4A."];
      startTime: ISOTimestamp.t
        [@ocaml.doc "The start time defined for the analysis report."];
      endTime: ISOTimestamp.t
        [@ocaml.doc "The end time defined for the analysis report."];
      tags: TagList.t option
        [@ocaml.doc
          "The metadata assigned to the analysis report consisting of a key-value pair."]}
    let context_ = "CreatePerformanceAnalysisReportRequest"
    let make ?tags =
      fun ~serviceType ->
        fun ~identifier ->
          fun ~startTime ->
            fun ~endTime ->
              fun () -> { tags; serviceType; identifier; startTime; endTime }
    let to_value x =
      structure_to_value
        [("ServiceType", (Some (ServiceType.to_value x.serviceType)));
        ("Identifier", (Some (IdentifierString.to_value x.identifier)));
        ("StartTime", (Some (ISOTimestamp.to_value x.startTime)));
        ("EndTime", (Some (ISOTimestamp.to_value x.endTime)));
        ("Tags", (Option.map x.tags ~f:TagList.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let tags = (Option.map ~f:TagList.of_xml) (Xml.child xml_arg0 "Tags") in
      let endTime =
        ISOTimestamp.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "EndTime") in
      let startTime =
        ISOTimestamp.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "StartTime") in
      let identifier =
        IdentifierString.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "Identifier") in
      let serviceType =
        ServiceType.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "ServiceType") in
      make ?tags ~endTime ~startTime ~identifier ~serviceType ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let tags = field_map json__ "Tags" TagList.of_json in
      let endTime = field_map_exn json__ "EndTime" ISOTimestamp.of_json in
      let startTime = field_map_exn json__ "StartTime" ISOTimestamp.of_json in
      let identifier =
        field_map_exn json__ "Identifier" IdentifierString.of_json in
      let serviceType =
        field_map_exn json__ "ServiceType" ServiceType.of_json in
      make ?tags ~endTime ~startTime ~identifier ~serviceType ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Creates a new performance analysis report for a specific time period for the DB instance."]
module ErrorString =
  struct
    type nonrec t = string
    let context_ = "ErrorString"
    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:"ErrorString" j
    let to_json = simple_to_json to_value
  end
module NotAuthorizedException =
  struct
    type nonrec t = {
      message: ErrorString.t option }
    let make ?message = fun () -> { message }
    let to_value x =
      structure_to_value
        [("Message", (Option.map x.message ~f:ErrorString.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let message =
        (Option.map ~f:ErrorString.of_xml) (Xml.child xml_arg0 "Message") in
      make ?message ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let message = field_map json__ "Message" ErrorString.of_json in
      make ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "The user is not authorized to perform this request."]
module InvalidArgumentException =
  struct
    type nonrec t = {
      message: ErrorString.t option }
    let make ?message = fun () -> { message }
    let to_value x =
      structure_to_value
        [("Message", (Option.map x.message ~f:ErrorString.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let message =
        (Option.map ~f:ErrorString.of_xml) (Xml.child xml_arg0 "Message") in
      make ?message ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let message = field_map json__ "Message" ErrorString.of_json in
      make ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "One of the arguments provided is invalid for this request."]
module InternalServiceError =
  struct
    type nonrec t = {
      message: ErrorString.t option }
    let make ?message = fun () -> { message }
    let to_value x =
      structure_to_value
        [("Message", (Option.map x.message ~f:ErrorString.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let message =
        (Option.map ~f:ErrorString.of_xml) (Xml.child xml_arg0 "Message") in
      make ?message ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let message = field_map json__ "Message" ErrorString.of_json in
      make ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "The request failed due to an unknown error."]
module CreatePerformanceAnalysisReportResponse =
  struct
    type nonrec t =
      {
      analysisReportId: AnalysisReportId.t option
        [@ocaml.doc "A unique identifier for the created analysis report."]}
    type nonrec error =
      [ `InternalServiceError of InternalServiceError.t 
      | `InvalidArgumentException of InvalidArgumentException.t 
      | `NotAuthorizedException of NotAuthorizedException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?analysisReportId = fun () -> { analysisReportId }
    let error_of_json name json =
      match name with
      | "InternalServiceError" ->
          `InternalServiceError (InternalServiceError.of_json json)
      | "InvalidArgumentException" ->
          `InvalidArgumentException (InvalidArgumentException.of_json json)
      | "NotAuthorizedException" ->
          `NotAuthorizedException (NotAuthorizedException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "InternalServiceError" ->
          `InternalServiceError (InternalServiceError.of_xml xml)
      | "InvalidArgumentException" ->
          `InvalidArgumentException (InvalidArgumentException.of_xml xml)
      | "NotAuthorizedException" ->
          `NotAuthorizedException (NotAuthorizedException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `InternalServiceError e ->
          `Assoc
            [("error", (`String "InternalServiceError"));
            ("details", (InternalServiceError.to_json e))]
      | `InvalidArgumentException e ->
          `Assoc
            [("error", (`String "InvalidArgumentException"));
            ("details", (InvalidArgumentException.to_json e))]
      | `NotAuthorizedException e ->
          `Assoc
            [("error", (`String "NotAuthorizedException"));
            ("details", (NotAuthorizedException.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
        [("AnalysisReportId",
           (Option.map x.analysisReportId ~f:AnalysisReportId.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let analysisReportId =
        (Option.map ~f:AnalysisReportId.of_xml)
          (Xml.child xml_arg0 "AnalysisReportId") in
      make ?analysisReportId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let analysisReportId =
        field_map json__ "AnalysisReportId" AnalysisReportId.of_json in
      make ?analysisReportId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Creates a new performance analysis report for a specific time period for the DB instance."]
module DataPoint =
  struct
    type nonrec t =
      {
      timestamp: ISOTimestamp.t option
        [@ocaml.doc
          "The time, in epoch format, associated with a particular Value."];
      value: Double.t option
        [@ocaml.doc
          "The actual value associated with a particular Timestamp."]}
    let make ?timestamp = fun ?value -> fun () -> { timestamp; value }
    let to_value x =
      structure_to_value
        [("Timestamp", (Option.map x.timestamp ~f:ISOTimestamp.to_value));
        ("Value", (Option.map x.value ~f:Double.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let value = (Option.map ~f:Double.of_xml) (Xml.child xml_arg0 "Value") in
      let timestamp =
        (Option.map ~f:ISOTimestamp.of_xml) (Xml.child xml_arg0 "Timestamp") in
      make ?value ?timestamp ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let value = field_map json__ "Value" Double.of_json in
      let timestamp = field_map json__ "Timestamp" ISOTimestamp.of_json in
      make ?value ?timestamp ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "A timestamp, and a single numerical value, which together represent a measurement at a particular point in time."]
module DataPointsList =
  struct
    type nonrec t = DataPoint.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:DataPoint.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:DataPoint.of_xml)
    let of_json j =
      list_of_json ~kind:"DataPointsList" ~of_json:DataPoint.of_json j
    let to_json v = composed_to_json to_value v
  end
module DeletePerformanceAnalysisReportRequest =
  struct
    type nonrec t =
      {
      serviceType: ServiceType.t
        [@ocaml.doc
          "The Amazon Web Services service for which Performance Insights will return metrics. Valid value is RDS."];
      identifier: IdentifierString.t
        [@ocaml.doc
          "An immutable identifier for a data source that is unique for an Amazon Web Services Region. Performance Insights gathers metrics from this data source. In the console, the identifier is shown as ResourceID. When you call DescribeDBInstances, the identifier is returned as DbiResourceId. To use a DB instance as a data source, specify its DbiResourceId value. For example, specify db-ABCDEFGHIJKLMNOPQRSTU1VW2X."];
      analysisReportId: AnalysisReportId.t
        [@ocaml.doc
          "The unique identifier of the analysis report for deletion."]}
    let context_ = "DeletePerformanceAnalysisReportRequest"
    let make ~serviceType =
      fun ~identifier ->
        fun ~analysisReportId ->
          fun () -> { serviceType; identifier; analysisReportId }
    let to_value x =
      structure_to_value
        [("ServiceType", (Some (ServiceType.to_value x.serviceType)));
        ("Identifier", (Some (IdentifierString.to_value x.identifier)));
        ("AnalysisReportId",
          (Some (AnalysisReportId.to_value x.analysisReportId)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let analysisReportId =
        AnalysisReportId.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "AnalysisReportId") in
      let identifier =
        IdentifierString.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "Identifier") in
      let serviceType =
        ServiceType.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "ServiceType") in
      make ~analysisReportId ~identifier ~serviceType ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let analysisReportId =
        field_map_exn json__ "AnalysisReportId" AnalysisReportId.of_json in
      let identifier =
        field_map_exn json__ "Identifier" IdentifierString.of_json in
      let serviceType =
        field_map_exn json__ "ServiceType" ServiceType.of_json in
      make ~analysisReportId ~identifier ~serviceType ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "Deletes a performance analysis report."]
module DeletePerformanceAnalysisReportResponse =
  struct
    type nonrec t = unit
    type nonrec error =
      [ `InternalServiceError of InternalServiceError.t 
      | `InvalidArgumentException of InvalidArgumentException.t 
      | `NotAuthorizedException of NotAuthorizedException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make () = ()
    let error_of_json name json =
      match name with
      | "InternalServiceError" ->
          `InternalServiceError (InternalServiceError.of_json json)
      | "InvalidArgumentException" ->
          `InvalidArgumentException (InvalidArgumentException.of_json json)
      | "NotAuthorizedException" ->
          `NotAuthorizedException (NotAuthorizedException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "InternalServiceError" ->
          `InternalServiceError (InternalServiceError.of_xml xml)
      | "InvalidArgumentException" ->
          `InvalidArgumentException (InvalidArgumentException.of_xml xml)
      | "NotAuthorizedException" ->
          `NotAuthorizedException (NotAuthorizedException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `InternalServiceError e ->
          `Assoc
            [("error", (`String "InternalServiceError"));
            ("details", (InternalServiceError.to_json e))]
      | `InvalidArgumentException e ->
          `Assoc
            [("error", (`String "InvalidArgumentException"));
            ("details", (InvalidArgumentException.to_json e))]
      | `NotAuthorizedException e ->
          `Assoc
            [("error", (`String "NotAuthorizedException"));
            ("details", (NotAuthorizedException.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 "Deletes a performance analysis report."]
module NextToken =
  struct
    type nonrec t = string
    let context_ = "NextToken"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:1) >>=
             (fun () ->
                (check_string_max i ~max:8192) >>=
                  (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:"NextToken" j
    let to_json = simple_to_json to_value
  end
module MetricQueryFilterMap =
  struct
    type nonrec t = (SanitizedString.t * RequestString.t) list
    let make i = i
    let of_header xs =
      make
        (List.filter_map xs
           ~f:(fun (k, v) ->
                 (Base.String.chop_prefix k ~prefix:"x-amz-meta-") |>
                   (Option.map
                      ~f:(fun chopped ->
                            ((SanitizedString.of_string chopped),
                              (RequestString.of_string v))))))
    let to_value xs =
      (xs |>
         (List.map
            ~f:(fun (x, y) ->
                  (SanitizedString.to_value x) |>
                    (fun x -> (RequestString.to_value y) |> (fun y -> (x, y))))))
        |> (fun x -> `Map x)
    let to_query v = to_query to_value v
    let to_header _ =
      failwithf "to_header is not implemented for Map_shape objects" ()
    let of_xml _ =
      failwith "of_xml_converter_of_shape: Map_shape case not implemented"
    let of_json j =
      object_of_json ~key_of_string:SanitizedString.of_string
        ~of_json:RequestString.of_json j
    let to_json v = composed_to_json to_value v
  end
module MaxResults =
  struct
    type nonrec t = int
    let make i =
      let open Result in
        ok_or_failwith
          ((check_int_max i ~max:25) >>= (fun () -> check_int_min i ~min:0));
        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 MaxResults" 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 Integer =
  struct
    type nonrec t = int
    let make i = i
    let of_string = Int.of_string
    let to_value x = `Integer x
    let to_query v = to_query to_value v
    let to_header x = Int.to_string x
    let of_xml xml_arg0 =
      Int.of_string (string_of_xml ~kind:"an integer for Integer" xml_arg0)
    let of_json j = Int.of_float (float_of_json ~kind:"an integer" j)
    let to_json = simple_to_json to_value
  end
module SanitizedStringList =
  struct
    type nonrec t = SanitizedString.t list
    let make i =
      let open Result in
        ok_or_failwith
          ((check_list_max i ~max:10) >>= (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:SanitizedString.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:SanitizedString.of_xml)
    let of_json j =
      list_of_json ~kind:"SanitizedStringList"
        ~of_json:SanitizedString.of_json j
    let to_json v = composed_to_json to_value v
  end
module Limit =
  struct
    type nonrec t = int
    let make i =
      let open Result in
        ok_or_failwith
          ((check_int_max i ~max:25) >>= (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 Limit" 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 DimensionGroup =
  struct
    type nonrec t =
      {
      group: SanitizedString.t
        [@ocaml.doc
          "The name of the dimension group. Valid values are as follows: db - The name of the database to which the client is connected. The following values are permitted: Aurora PostgreSQL Amazon RDS PostgreSQL Aurora MySQL Amazon RDS MySQL Amazon RDS MariaDB Amazon DocumentDB db.application - The name of the application that is connected to the database. The following values are permitted: Aurora PostgreSQL Amazon RDS PostgreSQL Amazon DocumentDB db.blocking_sql - The SQL queries blocking the most DB load. db.blocking_session - The sessions blocking the most DB load. db.blocking_object - The object resources acquired by other sessions that are blocking the most DB load. db.host - The host name of the connected client (all engines). db.plans - The execution plans for the query (only Aurora PostgreSQL). db.query - The query that is currently running (only Amazon DocumentDB). db.query_tokenized - The digest query (only Amazon DocumentDB). db.session_type - The type of the current session (only Aurora PostgreSQL and RDS PostgreSQL). db.sql - The text of the SQL statement that is currently running (all engines except Amazon DocumentDB). db.sql_tokenized - The SQL digest (all engines except Amazon DocumentDB). db.user - The user logged in to the database (all engines except Amazon DocumentDB). db.wait_event - The event for which the database backend is waiting (all engines except Amazon DocumentDB). db.wait_event_type - The type of event for which the database backend is waiting (all engines except Amazon DocumentDB). db.wait_state - The event for which the database backend is waiting (only Amazon DocumentDB)."];
      dimensions: SanitizedStringList.t option
        [@ocaml.doc
          "A list of specific dimensions from a dimension group. If this parameter is not present, then it signifies that all of the dimensions in the group were requested, or are present in the response. Valid values for elements in the Dimensions array are: db.application.name - The name of the application that is connected to the database. Valid values are as follows: Aurora PostgreSQL Amazon RDS PostgreSQL Amazon DocumentDB db.blocking_sql.id - The ID for each of the SQL queries blocking the most DB load. db.blocking_sql.sql - The SQL text for each of the SQL queries blocking the most DB load. db.blocking_session.id - The ID for each of the sessions blocking the most DB load. db.blocking_object.id - The ID for each of the object resources acquired by other sessions that are blocking the most DB load. db.blocking_object.type - The object type for each of the object resources acquired by other sessions that are blocking the most DB load. db.blocking_object.value - The value for each of the object resources acquired by other sessions that are blocking the most DB load. db.host.id - The host ID of the connected client (all engines). db.host.name - The host name of the connected client (all engines). db.name - The name of the database to which the client is connected. Valid values are as follows: Aurora PostgreSQL Amazon RDS PostgreSQL Aurora MySQL Amazon RDS MySQL Amazon RDS MariaDB Amazon DocumentDB db.query.id - The query ID generated by Performance Insights (only Amazon DocumentDB). db.query.db_id - The query ID generated by the database (only Amazon DocumentDB). db.query.statement - The text of the query that is being run (only Amazon DocumentDB). db.query.tokenized_id db.query.tokenized.id - The query digest ID generated by Performance Insights (only Amazon DocumentDB). db.query.tokenized.db_id - The query digest ID generated by Performance Insights (only Amazon DocumentDB). db.query.tokenized.statement - The text of the query digest (only Amazon DocumentDB). db.session_type.name - The type of the current session (only Amazon DocumentDB). db.sql.id - The hash of the full, non-tokenized SQL statement generated by Performance Insights (all engines except Amazon DocumentDB). db.sql.db_id - Either the SQL ID generated by the database engine, or a value generated by Performance Insights that begins with pi- (all engines except Amazon DocumentDB). db.sql.statement - The full text of the SQL statement that is running, as in SELECT * FROM employees (all engines except Amazon DocumentDB) db.sql.tokenized_id - The hash of the SQL digest generated by Performance Insights (all engines except Amazon DocumentDB). The db.sql.tokenized_id dimension fetches the value of the db.sql_tokenized.id dimension. Amazon RDS returns db.sql.tokenized_id from the db.sql dimension group. db.sql_tokenized.id - The hash of the SQL digest generated by Performance Insights (all engines except Amazon DocumentDB). In the console, db.sql_tokenized.id is called the Support ID because Amazon Web Services Support can look at this data to help you troubleshoot database issues. db.sql_tokenized.db_id - Either the native database ID used to refer to the SQL statement, or a synthetic ID such as pi-2372568224 that Performance Insights generates if the native database ID isn't available (all engines except Amazon DocumentDB). db.sql_tokenized.statement - The text of the SQL digest, as in SELECT * FROM employees WHERE employee_id = ? (all engines except Amazon DocumentDB) db.user.id - The ID of the user logged in to the database (all engines except Amazon DocumentDB). db.user.name - The name of the user logged in to the database (all engines except Amazon DocumentDB). db.wait_event.name - The event for which the backend is waiting (all engines except Amazon DocumentDB). db.wait_event.type - The type of event for which the backend is waiting (all engines except Amazon DocumentDB). db.wait_event_type.name - The name of the event type for which the backend is waiting (all engines except Amazon DocumentDB). db.wait_state.name - The event for which the backend is waiting (only Amazon DocumentDB)."];
      limit: Limit.t option
        [@ocaml.doc
          "The maximum number of items to fetch for this dimension group."]}
    let context_ = "DimensionGroup"
    let make ?dimensions =
      fun ?limit -> fun ~group -> fun () -> { dimensions; limit; group }
    let to_value x =
      structure_to_value
        [("Group", (Some (SanitizedString.to_value x.group)));
        ("Dimensions",
          (Option.map x.dimensions ~f:SanitizedStringList.to_value));
        ("Limit", (Option.map x.limit ~f:Limit.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let limit = (Option.map ~f:Limit.of_xml) (Xml.child xml_arg0 "Limit") in
      let dimensions =
        (Option.map ~f:SanitizedStringList.of_xml)
          (Xml.child xml_arg0 "Dimensions") in
      let group =
        SanitizedString.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "Group") in
      make ?limit ?dimensions ~group ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let limit = field_map json__ "Limit" Limit.of_json in
      let dimensions =
        field_map json__ "Dimensions" SanitizedStringList.of_json in
      let group = field_map_exn json__ "Group" SanitizedString.of_json in
      make ?limit ?dimensions ~group ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "A logical grouping of Performance Insights metrics for a related subject area. For example, the db.sql dimension group consists of the following dimensions: db.sql.id - The hash of a running SQL statement, generated by Performance Insights. db.sql.db_id - Either the SQL ID generated by the database engine, or a value generated by Performance Insights that begins with pi-. db.sql.statement - The full text of the SQL statement that is running, for example, SELECT * FROM employees. db.sql_tokenized.id - The hash of the SQL digest generated by Performance Insights. Each response element returns a maximum of 500 bytes. For larger elements, such as SQL statements, only the first 500 bytes are returned."]
module DescribeDimensionKeysRequest =
  struct
    type nonrec t =
      {
      serviceType: ServiceType.t
        [@ocaml.doc
          "The Amazon Web Services service for which Performance Insights will return metrics. Valid values are as follows: RDS DOCDB"];
      identifier: IdentifierString.t
        [@ocaml.doc
          "An immutable, Amazon Web Services Region-unique identifier for a data source. Performance Insights gathers metrics from this data source. To use an Amazon RDS instance as a data source, you specify its DbiResourceId value. For example, specify db-FAIHNTYBKTGAUSUZQYPDS2GW4A."];
      startTime: ISOTimestamp.t
        [@ocaml.doc
          "The date and time specifying the beginning of the requested time series data. You must specify a StartTime within the past 7 days. The value specified is inclusive, which means that data points equal to or greater than StartTime are returned. The value for StartTime must be earlier than the value for EndTime."];
      endTime: ISOTimestamp.t
        [@ocaml.doc
          "The date and time specifying the end of the requested time series data. The value specified is exclusive, which means that data points less than (but not equal to) EndTime are returned. The value for EndTime must be later than the value for StartTime."];
      metric: RequestString.t
        [@ocaml.doc
          "The name of a Performance Insights metric to be measured. Valid values for Metric are: db.load.avg - A scaled representation of the number of active sessions for the database engine. db.sampledload.avg - The raw number of active sessions for the database engine. If the number of active sessions is less than an internal Performance Insights threshold, db.load.avg and db.sampledload.avg are the same value. If the number of active sessions is greater than the internal threshold, Performance Insights samples the active sessions, with db.load.avg showing the scaled values, db.sampledload.avg showing the raw values, and db.sampledload.avg less than db.load.avg. For most use cases, you can query db.load.avg only."];
      periodInSeconds: Integer.t option
        [@ocaml.doc
          "The granularity, in seconds, of the data points returned from Performance Insights. A period can be as short as one second, or as long as one day (86400 seconds). Valid values are: 1 (one second) 60 (one minute) 300 (five minutes) 3600 (one hour) 86400 (twenty-four hours) If you don't specify PeriodInSeconds, then Performance Insights chooses a value for you, with a goal of returning roughly 100-200 data points in the response."];
      groupBy: DimensionGroup.t
        [@ocaml.doc
          "A specification for how to aggregate the data points from a query result. You must specify a valid dimension group. Performance Insights returns all dimensions within this group, unless you provide the names of specific dimensions within this group. You can also request that Performance Insights return a limited number of values for a dimension."];
      additionalMetrics: AdditionalMetricsList.t option
        [@ocaml.doc
          "Additional metrics for the top N dimension keys. If the specified dimension group in the GroupBy parameter is db.sql_tokenized, you can specify per-SQL metrics to get the values for the top N SQL digests. The response syntax is as follows: \"AdditionalMetrics\" : \\{ \"string\" : \"string\" \\}. The only supported statistic function is .avg."];
      partitionBy: DimensionGroup.t option
        [@ocaml.doc
          "For each dimension specified in GroupBy, specify a secondary dimension to further subdivide the partition keys in the response."];
      filter: MetricQueryFilterMap.t option
        [@ocaml.doc
          "One or more filters to apply in the request. Restrictions: Any number of filters by the same dimension, as specified in the GroupBy or Partition parameters. A single filter for any other dimension in this dimension group. The db.sql.db_id filter isn't available for RDS for SQL Server DB instances."];
      maxResults: MaxResults.t option
        [@ocaml.doc
          "The maximum number of items to return in the response. If more items exist than the specified MaxRecords value, a pagination token is included in the response so that the remaining results can be retrieved."];
      nextToken: NextToken.t option
        [@ocaml.doc
          "An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the token, up to the value specified by MaxRecords."]}
    let context_ = "DescribeDimensionKeysRequest"
    let make ?periodInSeconds =
      fun ?additionalMetrics ->
        fun ?partitionBy ->
          fun ?filter ->
            fun ?maxResults ->
              fun ?nextToken ->
                fun ~serviceType ->
                  fun ~identifier ->
                    fun ~startTime ->
                      fun ~endTime ->
                        fun ~metric ->
                          fun ~groupBy ->
                            fun () ->
                              {
                                periodInSeconds;
                                additionalMetrics;
                                partitionBy;
                                filter;
                                maxResults;
                                nextToken;
                                serviceType;
                                identifier;
                                startTime;
                                endTime;
                                metric;
                                groupBy
                              }
    let to_value x =
      structure_to_value
        [("ServiceType", (Some (ServiceType.to_value x.serviceType)));
        ("Identifier", (Some (IdentifierString.to_value x.identifier)));
        ("StartTime", (Some (ISOTimestamp.to_value x.startTime)));
        ("EndTime", (Some (ISOTimestamp.to_value x.endTime)));
        ("Metric", (Some (RequestString.to_value x.metric)));
        ("PeriodInSeconds",
          (Option.map x.periodInSeconds ~f:Integer.to_value));
        ("GroupBy", (Some (DimensionGroup.to_value x.groupBy)));
        ("AdditionalMetrics",
          (Option.map x.additionalMetrics ~f:AdditionalMetricsList.to_value));
        ("PartitionBy",
          (Option.map x.partitionBy ~f:DimensionGroup.to_value));
        ("Filter", (Option.map x.filter ~f:MetricQueryFilterMap.to_value));
        ("MaxResults", (Option.map x.maxResults ~f:MaxResults.to_value));
        ("NextToken", (Option.map x.nextToken ~f:NextToken.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let nextToken =
        (Option.map ~f:NextToken.of_xml) (Xml.child xml_arg0 "NextToken") in
      let maxResults =
        (Option.map ~f:MaxResults.of_xml) (Xml.child xml_arg0 "MaxResults") in
      let filter =
        (Option.map ~f:MetricQueryFilterMap.of_xml)
          (Xml.child xml_arg0 "Filter") in
      let partitionBy =
        (Option.map ~f:DimensionGroup.of_xml)
          (Xml.child xml_arg0 "PartitionBy") in
      let additionalMetrics =
        (Option.map ~f:AdditionalMetricsList.of_xml)
          (Xml.child xml_arg0 "AdditionalMetrics") in
      let groupBy =
        DimensionGroup.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "GroupBy") in
      let periodInSeconds =
        (Option.map ~f:Integer.of_xml) (Xml.child xml_arg0 "PeriodInSeconds") in
      let metric =
        RequestString.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "Metric") in
      let endTime =
        ISOTimestamp.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "EndTime") in
      let startTime =
        ISOTimestamp.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "StartTime") in
      let identifier =
        IdentifierString.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "Identifier") in
      let serviceType =
        ServiceType.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "ServiceType") in
      make ?nextToken ?maxResults ?filter ?partitionBy ?additionalMetrics
        ~groupBy ?periodInSeconds ~metric ~endTime ~startTime ~identifier
        ~serviceType ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let nextToken = field_map json__ "NextToken" NextToken.of_json in
      let maxResults = field_map json__ "MaxResults" MaxResults.of_json in
      let filter = field_map json__ "Filter" MetricQueryFilterMap.of_json in
      let partitionBy = field_map json__ "PartitionBy" DimensionGroup.of_json in
      let additionalMetrics =
        field_map json__ "AdditionalMetrics" AdditionalMetricsList.of_json in
      let groupBy = field_map_exn json__ "GroupBy" DimensionGroup.of_json in
      let periodInSeconds =
        field_map json__ "PeriodInSeconds" Integer.of_json in
      let metric = field_map_exn json__ "Metric" RequestString.of_json in
      let endTime = field_map_exn json__ "EndTime" ISOTimestamp.of_json in
      let startTime = field_map_exn json__ "StartTime" ISOTimestamp.of_json in
      let identifier =
        field_map_exn json__ "Identifier" IdentifierString.of_json in
      let serviceType =
        field_map_exn json__ "ServiceType" ServiceType.of_json in
      make ?nextToken ?maxResults ?filter ?partitionBy ?additionalMetrics
        ~groupBy ?periodInSeconds ~metric ~endTime ~startTime ~identifier
        ~serviceType ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "For a specific time period, retrieve the top N dimension keys for a metric. Each response element returns a maximum of 500 bytes. For larger elements, such as SQL statements, only the first 500 bytes are returned."]
module DimensionMap =
  struct
    type nonrec t = (RequestString.t * RequestString.t) list
    let make i = i
    let of_header xs =
      make
        (List.filter_map xs
           ~f:(fun (k, v) ->
                 (Base.String.chop_prefix k ~prefix:"x-amz-meta-") |>
                   (Option.map
                      ~f:(fun chopped ->
                            ((RequestString.of_string chopped),
                              (RequestString.of_string v))))))
    let to_value xs =
      (xs |>
         (List.map
            ~f:(fun (x, y) ->
                  (RequestString.to_value x) |>
                    (fun x -> (RequestString.to_value y) |> (fun y -> (x, y))))))
        |> (fun x -> `Map x)
    let to_query v = to_query to_value v
    let to_header _ =
      failwithf "to_header is not implemented for Map_shape objects" ()
    let of_xml _ =
      failwith "of_xml_converter_of_shape: Map_shape case not implemented"
    let of_json j =
      object_of_json ~key_of_string:RequestString.of_string
        ~of_json:RequestString.of_json j
    let to_json v = composed_to_json to_value v
  end
module ResponsePartitionKey =
  struct
    type nonrec t =
      {
      dimensions: DimensionMap.t option
        [@ocaml.doc
          "A dimension map that contains the dimensions for this partition."]}
    let make ?dimensions = fun () -> { dimensions }
    let to_value x =
      structure_to_value
        [("Dimensions", (Option.map x.dimensions ~f:DimensionMap.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let dimensions =
        (Option.map ~f:DimensionMap.of_xml) (Xml.child xml_arg0 "Dimensions") in
      make ?dimensions ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let dimensions = field_map json__ "Dimensions" DimensionMap.of_json in
      make ?dimensions ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "If PartitionBy was specified in a DescribeDimensionKeys request, the dimensions are returned in an array. Each element in the array specifies one dimension."]
module ResponsePartitionKeyList =
  struct
    type nonrec t = ResponsePartitionKey.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:ResponsePartitionKey.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:ResponsePartitionKey.of_xml)
    let of_json j =
      list_of_json ~kind:"ResponsePartitionKeyList"
        ~of_json:ResponsePartitionKey.of_json j
    let to_json v = composed_to_json to_value v
  end
module MetricValuesList =
  struct
    type nonrec t = Double.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:Double.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:Double.of_xml)
    let of_json j =
      list_of_json ~kind:"MetricValuesList" ~of_json:Double.of_json j
    let to_json v = composed_to_json to_value v
  end
module DimensionKeyDescription =
  struct
    type nonrec t =
      {
      dimensions: DimensionMap.t option
        [@ocaml.doc
          "A map of name-value pairs for the dimensions in the group."];
      total: Double.t option
        [@ocaml.doc
          "The aggregated metric value for the dimensions, over the requested time range."];
      additionalMetrics: AdditionalMetricsMap.t option
        [@ocaml.doc
          "A map that contains the value for each additional metric."];
      partitions: MetricValuesList.t option
        [@ocaml.doc
          "If PartitionBy was specified, PartitionKeys contains the dimensions that were."]}
    let make ?dimensions =
      fun ?total ->
        fun ?additionalMetrics ->
          fun ?partitions ->
            fun () -> { dimensions; total; additionalMetrics; partitions }
    let to_value x =
      structure_to_value
        [("Dimensions", (Option.map x.dimensions ~f:DimensionMap.to_value));
        ("Total", (Option.map x.total ~f:Double.to_value));
        ("AdditionalMetrics",
          (Option.map x.additionalMetrics ~f:AdditionalMetricsMap.to_value));
        ("Partitions",
          (Option.map x.partitions ~f:MetricValuesList.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let partitions =
        (Option.map ~f:MetricValuesList.of_xml)
          (Xml.child xml_arg0 "Partitions") in
      let additionalMetrics =
        (Option.map ~f:AdditionalMetricsMap.of_xml)
          (Xml.child xml_arg0 "AdditionalMetrics") in
      let total = (Option.map ~f:Double.of_xml) (Xml.child xml_arg0 "Total") in
      let dimensions =
        (Option.map ~f:DimensionMap.of_xml) (Xml.child xml_arg0 "Dimensions") in
      make ?partitions ?additionalMetrics ?total ?dimensions ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let partitions = field_map json__ "Partitions" MetricValuesList.of_json in
      let additionalMetrics =
        field_map json__ "AdditionalMetrics" AdditionalMetricsMap.of_json in
      let total = field_map json__ "Total" Double.of_json in
      let dimensions = field_map json__ "Dimensions" DimensionMap.of_json in
      make ?partitions ?additionalMetrics ?total ?dimensions ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "An object that includes the requested dimension key values and aggregated metric values within a dimension group."]
module DimensionKeyDescriptionList =
  struct
    type nonrec t = DimensionKeyDescription.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:DimensionKeyDescription.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:DimensionKeyDescription.of_xml)
    let of_json j =
      list_of_json ~kind:"DimensionKeyDescriptionList"
        ~of_json:DimensionKeyDescription.of_json j
    let to_json v = composed_to_json to_value v
  end
module DescribeDimensionKeysResponse =
  struct
    type nonrec t =
      {
      alignedStartTime: ISOTimestamp.t option
        [@ocaml.doc
          "The start time for the returned dimension keys, after alignment to a granular boundary (as specified by PeriodInSeconds). AlignedStartTime will be less than or equal to the value of the user-specified StartTime."];
      alignedEndTime: ISOTimestamp.t option
        [@ocaml.doc
          "The end time for the returned dimension keys, after alignment to a granular boundary (as specified by PeriodInSeconds). AlignedEndTime will be greater than or equal to the value of the user-specified Endtime."];
      partitionKeys: ResponsePartitionKeyList.t option
        [@ocaml.doc
          "If PartitionBy was present in the request, PartitionKeys contains the breakdown of dimension keys by the specified partitions."];
      keys: DimensionKeyDescriptionList.t option
        [@ocaml.doc "The dimension keys that were requested."];
      nextToken: NextToken.t option
        [@ocaml.doc
          "A pagination token that indicates the response didn\226\128\153t return all available records because MaxRecords was specified in the previous request. To get the remaining records, specify NextToken in a separate request with this value."]}
    type nonrec error =
      [ `InternalServiceError of InternalServiceError.t 
      | `InvalidArgumentException of InvalidArgumentException.t 
      | `NotAuthorizedException of NotAuthorizedException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?alignedStartTime =
      fun ?alignedEndTime ->
        fun ?partitionKeys ->
          fun ?keys ->
            fun ?nextToken ->
              fun () ->
                {
                  alignedStartTime;
                  alignedEndTime;
                  partitionKeys;
                  keys;
                  nextToken
                }
    let error_of_json name json =
      match name with
      | "InternalServiceError" ->
          `InternalServiceError (InternalServiceError.of_json json)
      | "InvalidArgumentException" ->
          `InvalidArgumentException (InvalidArgumentException.of_json json)
      | "NotAuthorizedException" ->
          `NotAuthorizedException (NotAuthorizedException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "InternalServiceError" ->
          `InternalServiceError (InternalServiceError.of_xml xml)
      | "InvalidArgumentException" ->
          `InvalidArgumentException (InvalidArgumentException.of_xml xml)
      | "NotAuthorizedException" ->
          `NotAuthorizedException (NotAuthorizedException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `InternalServiceError e ->
          `Assoc
            [("error", (`String "InternalServiceError"));
            ("details", (InternalServiceError.to_json e))]
      | `InvalidArgumentException e ->
          `Assoc
            [("error", (`String "InvalidArgumentException"));
            ("details", (InvalidArgumentException.to_json e))]
      | `NotAuthorizedException e ->
          `Assoc
            [("error", (`String "NotAuthorizedException"));
            ("details", (NotAuthorizedException.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
        [("AlignedStartTime",
           (Option.map x.alignedStartTime ~f:ISOTimestamp.to_value));
        ("AlignedEndTime",
          (Option.map x.alignedEndTime ~f:ISOTimestamp.to_value));
        ("PartitionKeys",
          (Option.map x.partitionKeys ~f:ResponsePartitionKeyList.to_value));
        ("Keys", (Option.map x.keys ~f:DimensionKeyDescriptionList.to_value));
        ("NextToken", (Option.map x.nextToken ~f:NextToken.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let nextToken =
        (Option.map ~f:NextToken.of_xml) (Xml.child xml_arg0 "NextToken") in
      let keys =
        (Option.map ~f:DimensionKeyDescriptionList.of_xml)
          (Xml.child xml_arg0 "Keys") in
      let partitionKeys =
        (Option.map ~f:ResponsePartitionKeyList.of_xml)
          (Xml.child xml_arg0 "PartitionKeys") in
      let alignedEndTime =
        (Option.map ~f:ISOTimestamp.of_xml)
          (Xml.child xml_arg0 "AlignedEndTime") in
      let alignedStartTime =
        (Option.map ~f:ISOTimestamp.of_xml)
          (Xml.child xml_arg0 "AlignedStartTime") in
      make ?nextToken ?keys ?partitionKeys ?alignedEndTime ?alignedStartTime
        ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let nextToken = field_map json__ "NextToken" NextToken.of_json in
      let keys = field_map json__ "Keys" DimensionKeyDescriptionList.of_json in
      let partitionKeys =
        field_map json__ "PartitionKeys" ResponsePartitionKeyList.of_json in
      let alignedEndTime =
        field_map json__ "AlignedEndTime" ISOTimestamp.of_json in
      let alignedStartTime =
        field_map json__ "AlignedStartTime" ISOTimestamp.of_json in
      make ?nextToken ?keys ?partitionKeys ?alignedEndTime ?alignedStartTime
        ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "For a specific time period, retrieve the top N dimension keys for a metric. Each response element returns a maximum of 500 bytes. For larger elements, such as SQL statements, only the first 500 bytes are returned."]
module Description =
  struct
    type nonrec t = string
    let context_ = "Description"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_max i ~max:2048) >>=
             (fun () -> check_string_min i ~min:1));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"Description" j
    let to_json = simple_to_json to_value
  end
module DetailStatus =
  struct
    type nonrec t =
      | AVAILABLE 
      | PROCESSING 
      | UNAVAILABLE 
      | Non_static_id of string 
    let make i = i
    let to_string =
      function
      | AVAILABLE -> "AVAILABLE"
      | PROCESSING -> "PROCESSING"
      | UNAVAILABLE -> "UNAVAILABLE"
      | Non_static_id s -> s
    let of_string =
      function
      | "AVAILABLE" -> AVAILABLE
      | "PROCESSING" -> PROCESSING
      | "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 DetailStatus" xml_arg0)
    let of_json j = of_string (string_of_json ~kind:"DetailStatus" j)
    let to_json = simple_to_json to_value
  end
module DimensionDetail =
  struct
    type nonrec t =
      {
      identifier: String_.t option
        [@ocaml.doc "The identifier of a dimension."]}
    let make ?identifier = fun () -> { identifier }
    let to_value x =
      structure_to_value
        [("Identifier", (Option.map x.identifier ~f:String_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let identifier =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Identifier") in
      make ?identifier ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let identifier = field_map json__ "Identifier" String_.of_json in
      make ?identifier ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "The information about a dimension."]
module DimensionDetailList =
  struct
    type nonrec t = DimensionDetail.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:DimensionDetail.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:DimensionDetail.of_xml)
    let of_json j =
      list_of_json ~kind:"DimensionDetailList"
        ~of_json:DimensionDetail.of_json j
    let to_json v = composed_to_json to_value v
  end
module DimensionGroupDetail =
  struct
    type nonrec t =
      {
      group: String_.t option [@ocaml.doc "The name of the dimension group."];
      dimensions: DimensionDetailList.t option
        [@ocaml.doc "The dimensions within a dimension group."]}
    let make ?group = fun ?dimensions -> fun () -> { group; dimensions }
    let to_value x =
      structure_to_value
        [("Group", (Option.map x.group ~f:String_.to_value));
        ("Dimensions",
          (Option.map x.dimensions ~f:DimensionDetailList.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let dimensions =
        (Option.map ~f:DimensionDetailList.of_xml)
          (Xml.child xml_arg0 "Dimensions") in
      let group = (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Group") in
      make ?dimensions ?group ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let dimensions =
        field_map json__ "Dimensions" DimensionDetailList.of_json in
      let group = field_map json__ "Group" String_.of_json in
      make ?dimensions ?group ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "Information about dimensions within a dimension group."]
module DimensionGroupDetailList =
  struct
    type nonrec t = DimensionGroupDetail.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:DimensionGroupDetail.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:DimensionGroupDetail.of_xml)
    let of_json j =
      list_of_json ~kind:"DimensionGroupDetailList"
        ~of_json:DimensionGroupDetail.of_json j
    let to_json v = composed_to_json to_value v
  end
module DimensionKeyDetail =
  struct
    type nonrec t =
      {
      value: String_.t option
        [@ocaml.doc
          "The value of the dimension detail data. Depending on the return status, this value is either the full or truncated SQL query for the following dimensions: db.query.statement (Amazon DocumentDB) db.sql.statement (Amazon RDS and Aurora)"];
      dimension: String_.t option
        [@ocaml.doc
          "The full name of the dimension. The full name includes the group name and key name. The following values are valid: db.query.statement (Amazon DocumentDB) db.sql.statement (Amazon RDS and Aurora)"];
      status: DetailStatus.t option
        [@ocaml.doc
          "The status of the dimension detail data. Possible values include the following: AVAILABLE - The dimension detail data is ready to be retrieved. PROCESSING - The dimension detail data isn't ready to be retrieved because more processing time is required. If the requested detail data has the status PROCESSING, Performance Insights returns the truncated query. UNAVAILABLE - The dimension detail data could not be collected successfully."]}
    let make ?value =
      fun ?dimension -> fun ?status -> fun () -> { value; dimension; status }
    let to_value x =
      structure_to_value
        [("Value", (Option.map x.value ~f:String_.to_value));
        ("Dimension", (Option.map x.dimension ~f:String_.to_value));
        ("Status", (Option.map x.status ~f:DetailStatus.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let status =
        (Option.map ~f:DetailStatus.of_xml) (Xml.child xml_arg0 "Status") in
      let dimension =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Dimension") in
      let value = (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Value") in
      make ?status ?dimension ?value ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let status = field_map json__ "Status" DetailStatus.of_json in
      let dimension = field_map json__ "Dimension" String_.of_json in
      let value = field_map json__ "Value" String_.of_json in
      make ?status ?dimension ?value ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "An object that describes the details for a specified dimension."]
module DimensionKeyDetailList =
  struct
    type nonrec t = DimensionKeyDetail.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:DimensionKeyDetail.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:DimensionKeyDetail.of_xml)
    let of_json j =
      list_of_json ~kind:"DimensionKeyDetailList"
        ~of_json:DimensionKeyDetail.of_json j
    let to_json v = composed_to_json to_value v
  end
module DimensionsMetricList =
  struct
    type nonrec t = SanitizedString.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:SanitizedString.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:SanitizedString.of_xml)
    let of_json j =
      list_of_json ~kind:"DimensionsMetricList"
        ~of_json:SanitizedString.of_json j
    let to_json v = composed_to_json to_value v
  end
module FeatureStatus =
  struct
    type nonrec t =
      | ENABLED 
      | DISABLED 
      | UNSUPPORTED 
      | ENABLED_PENDING_REBOOT 
      | DISABLED_PENDING_REBOOT 
      | UNKNOWN 
      | Non_static_id of string 
    let make i = i
    let to_string =
      function
      | ENABLED -> "ENABLED"
      | DISABLED -> "DISABLED"
      | UNSUPPORTED -> "UNSUPPORTED"
      | ENABLED_PENDING_REBOOT -> "ENABLED_PENDING_REBOOT"
      | DISABLED_PENDING_REBOOT -> "DISABLED_PENDING_REBOOT"
      | UNKNOWN -> "UNKNOWN"
      | Non_static_id s -> s
    let of_string =
      function
      | "ENABLED" -> ENABLED
      | "DISABLED" -> DISABLED
      | "UNSUPPORTED" -> UNSUPPORTED
      | "ENABLED_PENDING_REBOOT" -> ENABLED_PENDING_REBOOT
      | "DISABLED_PENDING_REBOOT" -> DISABLED_PENDING_REBOOT
      | "UNKNOWN" -> UNKNOWN
      | 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 FeatureStatus" xml_arg0)
    let of_json j = of_string (string_of_json ~kind:"FeatureStatus" j)
    let to_json = simple_to_json to_value
  end
module FeatureMetadata =
  struct
    type nonrec t =
      {
      status: FeatureStatus.t option
        [@ocaml.doc
          "The status of the feature on the DB instance. Possible values include the following: ENABLED - The feature is enabled on the instance. DISABLED - The feature is disabled on the instance. UNSUPPORTED - The feature isn't supported on the instance. ENABLED_PENDING_REBOOT - The feature is enabled on the instance but requires a reboot to take effect. DISABLED_PENDING_REBOOT - The feature is disabled on the instance but requires a reboot to take effect. UNKNOWN - The feature status couldn't be determined."]}
    let make ?status = fun () -> { status }
    let to_value x =
      structure_to_value
        [("Status", (Option.map x.status ~f:FeatureStatus.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let status =
        (Option.map ~f:FeatureStatus.of_xml) (Xml.child xml_arg0 "Status") in
      make ?status ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let status = field_map json__ "Status" FeatureStatus.of_json in
      make ?status ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The metadata for a feature. For example, the metadata might indicate that a feature is turned on or off on a specific DB instance."]
module FeatureMetadataMap =
  struct
    type nonrec t = (String_.t * FeatureMetadata.t) list
    let make i = i
    let of_header xs =
      make
        (List.filter_map xs
           ~f:(fun (k, v) ->
                 (Base.String.chop_prefix k ~prefix:"x-amz-meta-") |>
                   (Option.map
                      ~f:(fun chopped ->
                            let (_ : string) = v in
                            let (_ : string) = chopped in
                            failwith
                              "no of_header for complex types String FeatureMetadata"))))
    let to_value xs =
      (xs |>
         (List.map
            ~f:(fun (x, y) ->
                  (String_.to_value x) |>
                    (fun x ->
                       (FeatureMetadata.to_value y) |> (fun y -> (x, y))))))
        |> (fun x -> `Map x)
    let to_query v = to_query to_value v
    let to_header _ =
      failwithf "to_header is not implemented for Map_shape objects" ()
    let of_xml _ =
      failwith "of_xml_converter_of_shape: Map_shape case not implemented"
    let of_json j =
      object_of_json ~key_of_string:String_.of_string
        ~of_json:FeatureMetadata.of_json j
    let to_json v = composed_to_json to_value v
  end
module RequestedDimensionList =
  struct
    type nonrec t = SanitizedString.t list
    let make i =
      let open Result in
        ok_or_failwith
          ((check_list_max i ~max:10) >>= (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:SanitizedString.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:SanitizedString.of_xml)
    let of_json j =
      list_of_json ~kind:"RequestedDimensionList"
        ~of_json:SanitizedString.of_json j
    let to_json v = composed_to_json to_value v
  end
module GetDimensionKeyDetailsRequest =
  struct
    type nonrec t =
      {
      serviceType: ServiceType.t
        [@ocaml.doc
          "The Amazon Web Services service for which Performance Insights returns data. The only valid value is RDS."];
      identifier: IdentifierString.t
        [@ocaml.doc
          "The ID for a data source from which to gather dimension data. This ID must be immutable and unique within an Amazon Web Services Region. When a DB instance is the data source, specify its DbiResourceId value. For example, specify db-ABCDEFGHIJKLMNOPQRSTU1VW2X."];
      group: RequestString.t
        [@ocaml.doc
          "The name of the dimension group. Performance Insights searches the specified group for the dimension group ID. The following group name values are valid: db.execution_plan (Amazon RDS and Aurora only) db.lock_snapshot (Aurora only) db.query (Amazon DocumentDB only) db.sql (Amazon RDS and Aurora only)"];
      groupIdentifier: RequestString.t
        [@ocaml.doc
          "The ID of the dimension group from which to retrieve dimension details. For dimension group db.sql, the group ID is db.sql.id. The following group ID values are valid: db.execution_plan.id for dimension group db.execution_plan (Aurora and RDS only) db.sql.id for dimension group db.sql (Aurora and RDS only) db.query.id for dimension group db.query (DocumentDB only) For the dimension group db.lock_snapshot, the GroupIdentifier is the epoch timestamp when Performance Insights captured the snapshot, in seconds. You can retrieve this value with the GetResourceMetrics operation for a 1 second period."];
      requestedDimensions: RequestedDimensionList.t option
        [@ocaml.doc
          "A list of dimensions to retrieve the detail data for within the given dimension group. If you don't specify this parameter, Performance Insights returns all dimension data within the specified dimension group. Specify dimension names for the following dimension groups: db.execution_plan - Specify the dimension name db.execution_plan.raw_plan or the short dimension name raw_plan (Amazon RDS and Aurora only) db.lock_snapshot - Specify the dimension name db.lock_snapshot.lock_trees or the short dimension name lock_trees. (Aurora only) db.sql - Specify either the full dimension name db.sql.statement or the short dimension name statement (Aurora and RDS only). db.query - Specify either the full dimension name db.query.statement or the short dimension name statement (DocumentDB only)."]}
    let context_ = "GetDimensionKeyDetailsRequest"
    let make ?requestedDimensions =
      fun ~serviceType ->
        fun ~identifier ->
          fun ~group ->
            fun ~groupIdentifier ->
              fun () ->
                {
                  requestedDimensions;
                  serviceType;
                  identifier;
                  group;
                  groupIdentifier
                }
    let to_value x =
      structure_to_value
        [("ServiceType", (Some (ServiceType.to_value x.serviceType)));
        ("Identifier", (Some (IdentifierString.to_value x.identifier)));
        ("Group", (Some (RequestString.to_value x.group)));
        ("GroupIdentifier",
          (Some (RequestString.to_value x.groupIdentifier)));
        ("RequestedDimensions",
          (Option.map x.requestedDimensions
             ~f:RequestedDimensionList.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let requestedDimensions =
        (Option.map ~f:RequestedDimensionList.of_xml)
          (Xml.child xml_arg0 "RequestedDimensions") in
      let groupIdentifier =
        RequestString.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "GroupIdentifier") in
      let group =
        RequestString.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "Group") in
      let identifier =
        IdentifierString.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "Identifier") in
      let serviceType =
        ServiceType.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "ServiceType") in
      make ?requestedDimensions ~groupIdentifier ~group ~identifier
        ~serviceType ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let requestedDimensions =
        field_map json__ "RequestedDimensions" RequestedDimensionList.of_json in
      let groupIdentifier =
        field_map_exn json__ "GroupIdentifier" RequestString.of_json in
      let group = field_map_exn json__ "Group" RequestString.of_json in
      let identifier =
        field_map_exn json__ "Identifier" IdentifierString.of_json in
      let serviceType =
        field_map_exn json__ "ServiceType" ServiceType.of_json in
      make ?requestedDimensions ~groupIdentifier ~group ~identifier
        ~serviceType ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Get the attributes of the specified dimension group for a DB instance or data source. For example, if you specify a SQL ID, GetDimensionKeyDetails retrieves the full text of the dimension db.sql.statement associated with this ID. This operation is useful because GetResourceMetrics and DescribeDimensionKeys don't support retrieval of large SQL statement text, lock snapshots, and execution plans."]
module GetDimensionKeyDetailsResponse =
  struct
    type nonrec t =
      {
      dimensions: DimensionKeyDetailList.t option
        [@ocaml.doc "The details for the requested dimensions."]}
    type nonrec error =
      [ `InternalServiceError of InternalServiceError.t 
      | `InvalidArgumentException of InvalidArgumentException.t 
      | `NotAuthorizedException of NotAuthorizedException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?dimensions = fun () -> { dimensions }
    let error_of_json name json =
      match name with
      | "InternalServiceError" ->
          `InternalServiceError (InternalServiceError.of_json json)
      | "InvalidArgumentException" ->
          `InvalidArgumentException (InvalidArgumentException.of_json json)
      | "NotAuthorizedException" ->
          `NotAuthorizedException (NotAuthorizedException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "InternalServiceError" ->
          `InternalServiceError (InternalServiceError.of_xml xml)
      | "InvalidArgumentException" ->
          `InvalidArgumentException (InvalidArgumentException.of_xml xml)
      | "NotAuthorizedException" ->
          `NotAuthorizedException (NotAuthorizedException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `InternalServiceError e ->
          `Assoc
            [("error", (`String "InternalServiceError"));
            ("details", (InternalServiceError.to_json e))]
      | `InvalidArgumentException e ->
          `Assoc
            [("error", (`String "InvalidArgumentException"));
            ("details", (InvalidArgumentException.to_json e))]
      | `NotAuthorizedException e ->
          `Assoc
            [("error", (`String "NotAuthorizedException"));
            ("details", (NotAuthorizedException.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
        [("Dimensions",
           (Option.map x.dimensions ~f:DimensionKeyDetailList.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let dimensions =
        (Option.map ~f:DimensionKeyDetailList.of_xml)
          (Xml.child xml_arg0 "Dimensions") in
      make ?dimensions ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let dimensions =
        field_map json__ "Dimensions" DimensionKeyDetailList.of_json in
      make ?dimensions ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Get the attributes of the specified dimension group for a DB instance or data source. For example, if you specify a SQL ID, GetDimensionKeyDetails retrieves the full text of the dimension db.sql.statement associated with this ID. This operation is useful because GetResourceMetrics and DescribeDimensionKeys don't support retrieval of large SQL statement text, lock snapshots, and execution plans."]
module TextFormat =
  struct
    type nonrec t =
      | PLAIN_TEXT 
      | MARKDOWN 
      | Non_static_id of string 
    let make i = i
    let to_string =
      function
      | PLAIN_TEXT -> "PLAIN_TEXT"
      | MARKDOWN -> "MARKDOWN"
      | Non_static_id s -> s
    let of_string =
      function
      | "PLAIN_TEXT" -> PLAIN_TEXT
      | "MARKDOWN" -> MARKDOWN
      | 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 TextFormat" xml_arg0)
    let of_json j = of_string (string_of_json ~kind:"TextFormat" j)
    let to_json = simple_to_json to_value
  end
module GetPerformanceAnalysisReportRequest =
  struct
    type nonrec t =
      {
      serviceType: ServiceType.t
        [@ocaml.doc
          "The Amazon Web Services service for which Performance Insights will return metrics. Valid value is RDS."];
      identifier: IdentifierString.t
        [@ocaml.doc
          "An immutable identifier for a data source that is unique for an Amazon Web Services Region. Performance Insights gathers metrics from this data source. In the console, the identifier is shown as ResourceID. When you call DescribeDBInstances, the identifier is returned as DbiResourceId. To use a DB instance as a data source, specify its DbiResourceId value. For example, specify db-ABCDEFGHIJKLMNOPQRSTU1VW2X."];
      analysisReportId: AnalysisReportId.t
        [@ocaml.doc
          "A unique identifier of the created analysis report. For example, report-12345678901234567"];
      textFormat: TextFormat.t option
        [@ocaml.doc
          "Indicates the text format in the report. The options are PLAIN_TEXT or MARKDOWN. The default value is plain text."];
      acceptLanguage: AcceptLanguage.t option
        [@ocaml.doc
          "The text language in the report. The default language is EN_US (English)."]}
    let context_ = "GetPerformanceAnalysisReportRequest"
    let make ?textFormat =
      fun ?acceptLanguage ->
        fun ~serviceType ->
          fun ~identifier ->
            fun ~analysisReportId ->
              fun () ->
                {
                  textFormat;
                  acceptLanguage;
                  serviceType;
                  identifier;
                  analysisReportId
                }
    let to_value x =
      structure_to_value
        [("ServiceType", (Some (ServiceType.to_value x.serviceType)));
        ("Identifier", (Some (IdentifierString.to_value x.identifier)));
        ("AnalysisReportId",
          (Some (AnalysisReportId.to_value x.analysisReportId)));
        ("TextFormat", (Option.map x.textFormat ~f:TextFormat.to_value));
        ("AcceptLanguage",
          (Option.map x.acceptLanguage ~f:AcceptLanguage.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let acceptLanguage =
        (Option.map ~f:AcceptLanguage.of_xml)
          (Xml.child xml_arg0 "AcceptLanguage") in
      let textFormat =
        (Option.map ~f:TextFormat.of_xml) (Xml.child xml_arg0 "TextFormat") in
      let analysisReportId =
        AnalysisReportId.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "AnalysisReportId") in
      let identifier =
        IdentifierString.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "Identifier") in
      let serviceType =
        ServiceType.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "ServiceType") in
      make ?acceptLanguage ?textFormat ~analysisReportId ~identifier
        ~serviceType ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let acceptLanguage =
        field_map json__ "AcceptLanguage" AcceptLanguage.of_json in
      let textFormat = field_map json__ "TextFormat" TextFormat.of_json in
      let analysisReportId =
        field_map_exn json__ "AnalysisReportId" AnalysisReportId.of_json in
      let identifier =
        field_map_exn json__ "Identifier" IdentifierString.of_json in
      let serviceType =
        field_map_exn json__ "ServiceType" ServiceType.of_json in
      make ?acceptLanguage ?textFormat ~analysisReportId ~identifier
        ~serviceType ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Retrieves the report including the report ID, status, time details, and the insights with recommendations. The report status can be RUNNING, SUCCEEDED, or FAILED. The insights include the description and recommendation fields."]
module GetPerformanceAnalysisReportResponse =
  struct
    type nonrec t =
      {
      analysisReport: AnalysisReport.t option
        [@ocaml.doc
          "The summary of the performance analysis report created for a time period."]}
    type nonrec error =
      [ `InternalServiceError of InternalServiceError.t 
      | `InvalidArgumentException of InvalidArgumentException.t 
      | `NotAuthorizedException of NotAuthorizedException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?analysisReport = fun () -> { analysisReport }
    let error_of_json name json =
      match name with
      | "InternalServiceError" ->
          `InternalServiceError (InternalServiceError.of_json json)
      | "InvalidArgumentException" ->
          `InvalidArgumentException (InvalidArgumentException.of_json json)
      | "NotAuthorizedException" ->
          `NotAuthorizedException (NotAuthorizedException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "InternalServiceError" ->
          `InternalServiceError (InternalServiceError.of_xml xml)
      | "InvalidArgumentException" ->
          `InvalidArgumentException (InvalidArgumentException.of_xml xml)
      | "NotAuthorizedException" ->
          `NotAuthorizedException (NotAuthorizedException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `InternalServiceError e ->
          `Assoc
            [("error", (`String "InternalServiceError"));
            ("details", (InternalServiceError.to_json e))]
      | `InvalidArgumentException e ->
          `Assoc
            [("error", (`String "InvalidArgumentException"));
            ("details", (InvalidArgumentException.to_json e))]
      | `NotAuthorizedException e ->
          `Assoc
            [("error", (`String "NotAuthorizedException"));
            ("details", (NotAuthorizedException.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
        [("AnalysisReport",
           (Option.map x.analysisReport ~f:AnalysisReport.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let analysisReport =
        (Option.map ~f:AnalysisReport.of_xml)
          (Xml.child xml_arg0 "AnalysisReport") in
      make ?analysisReport ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let analysisReport =
        field_map json__ "AnalysisReport" AnalysisReport.of_json in
      make ?analysisReport ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Retrieves the report including the report ID, status, time details, and the insights with recommendations. The report status can be RUNNING, SUCCEEDED, or FAILED. The insights include the description and recommendation fields."]
module GetResourceMetadataRequest =
  struct
    type nonrec t =
      {
      serviceType: ServiceType.t
        [@ocaml.doc
          "The Amazon Web Services service for which Performance Insights returns metrics."];
      identifier: IdentifierString.t
        [@ocaml.doc
          "An immutable identifier for a data source that is unique for an Amazon Web Services Region. Performance Insights gathers metrics from this data source. To use a DB instance as a data source, specify its DbiResourceId value. For example, specify db-ABCDEFGHIJKLMNOPQRSTU1VW2X."]}
    let context_ = "GetResourceMetadataRequest"
    let make ~serviceType =
      fun ~identifier -> fun () -> { serviceType; identifier }
    let to_value x =
      structure_to_value
        [("ServiceType", (Some (ServiceType.to_value x.serviceType)));
        ("Identifier", (Some (IdentifierString.to_value x.identifier)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let identifier =
        IdentifierString.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "Identifier") in
      let serviceType =
        ServiceType.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "ServiceType") in
      make ~identifier ~serviceType ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let identifier =
        field_map_exn json__ "Identifier" IdentifierString.of_json in
      let serviceType =
        field_map_exn json__ "ServiceType" ServiceType.of_json in
      make ~identifier ~serviceType ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Retrieve the metadata for different features. For example, the metadata might indicate that a feature is turned on or off on a specific DB instance."]
module GetResourceMetadataResponse =
  struct
    type nonrec t =
      {
      identifier: String_.t option
        [@ocaml.doc
          "An immutable identifier for a data source that is unique for an Amazon Web Services Region. Performance Insights gathers metrics from this data source. To use a DB instance as a data source, specify its DbiResourceId value. For example, specify db-ABCDEFGHIJKLMNOPQRSTU1VW2X."];
      features: FeatureMetadataMap.t option
        [@ocaml.doc
          "The metadata for different features. For example, the metadata might indicate that a feature is turned on or off on a specific DB instance."]}
    type nonrec error =
      [ `InternalServiceError of InternalServiceError.t 
      | `InvalidArgumentException of InvalidArgumentException.t 
      | `NotAuthorizedException of NotAuthorizedException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?identifier =
      fun ?features -> fun () -> { identifier; features }
    let error_of_json name json =
      match name with
      | "InternalServiceError" ->
          `InternalServiceError (InternalServiceError.of_json json)
      | "InvalidArgumentException" ->
          `InvalidArgumentException (InvalidArgumentException.of_json json)
      | "NotAuthorizedException" ->
          `NotAuthorizedException (NotAuthorizedException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "InternalServiceError" ->
          `InternalServiceError (InternalServiceError.of_xml xml)
      | "InvalidArgumentException" ->
          `InvalidArgumentException (InvalidArgumentException.of_xml xml)
      | "NotAuthorizedException" ->
          `NotAuthorizedException (NotAuthorizedException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `InternalServiceError e ->
          `Assoc
            [("error", (`String "InternalServiceError"));
            ("details", (InternalServiceError.to_json e))]
      | `InvalidArgumentException e ->
          `Assoc
            [("error", (`String "InvalidArgumentException"));
            ("details", (InvalidArgumentException.to_json e))]
      | `NotAuthorizedException e ->
          `Assoc
            [("error", (`String "NotAuthorizedException"));
            ("details", (NotAuthorizedException.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
        [("Identifier", (Option.map x.identifier ~f:String_.to_value));
        ("Features", (Option.map x.features ~f:FeatureMetadataMap.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let features =
        (Option.map ~f:FeatureMetadataMap.of_xml)
          (Xml.child xml_arg0 "Features") in
      let identifier =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Identifier") in
      make ?features ?identifier ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let features = field_map json__ "Features" FeatureMetadataMap.of_json in
      let identifier = field_map json__ "Identifier" String_.of_json in
      make ?features ?identifier ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Retrieve the metadata for different features. For example, the metadata might indicate that a feature is turned on or off on a specific DB instance."]
module PeriodAlignment =
  struct
    type nonrec t =
      | END_TIME 
      | START_TIME 
      | Non_static_id of string 
    let make i = i
    let to_string =
      function
      | END_TIME -> "END_TIME"
      | START_TIME -> "START_TIME"
      | Non_static_id s -> s
    let of_string =
      function
      | "END_TIME" -> END_TIME
      | "START_TIME" -> START_TIME
      | 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 PeriodAlignment" xml_arg0)
    let of_json j = of_string (string_of_json ~kind:"PeriodAlignment" j)
    let to_json = simple_to_json to_value
  end
module MetricQuery =
  struct
    type nonrec t =
      {
      metric: SanitizedString.t
        [@ocaml.doc
          "The name of a Performance Insights metric to be measured. Valid values for Metric are: db.load.avg - A scaled representation of the number of active sessions for the database engine. db.sampledload.avg - The raw number of active sessions for the database engine. The counter metrics listed in Performance Insights operating system counters in the Amazon Aurora User Guide. The counter metrics listed in Performance Insights operating system counters in the Amazon RDS User Guide. If the number of active sessions is less than an internal Performance Insights threshold, db.load.avg and db.sampledload.avg are the same value. If the number of active sessions is greater than the internal threshold, Performance Insights samples the active sessions, with db.load.avg showing the scaled values, db.sampledload.avg showing the raw values, and db.sampledload.avg less than db.load.avg. For most use cases, you can query db.load.avg only."];
      groupBy: DimensionGroup.t option
        [@ocaml.doc
          "A specification for how to aggregate the data points from a query result. You must specify a valid dimension group. Performance Insights will return all of the dimensions within that group, unless you provide the names of specific dimensions within that group. You can also request that Performance Insights return a limited number of values for a dimension."];
      filter: MetricQueryFilterMap.t option
        [@ocaml.doc
          "One or more filters to apply in the request. Restrictions: Any number of filters by the same dimension, as specified in the GroupBy parameter. A single filter for any other dimension in this dimension group. The db.sql.db_id filter isn't available for RDS for SQL Server DB instances."]}
    let context_ = "MetricQuery"
    let make ?groupBy =
      fun ?filter -> fun ~metric -> fun () -> { groupBy; filter; metric }
    let to_value x =
      structure_to_value
        [("Metric", (Some (SanitizedString.to_value x.metric)));
        ("GroupBy", (Option.map x.groupBy ~f:DimensionGroup.to_value));
        ("Filter", (Option.map x.filter ~f:MetricQueryFilterMap.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let filter =
        (Option.map ~f:MetricQueryFilterMap.of_xml)
          (Xml.child xml_arg0 "Filter") in
      let groupBy =
        (Option.map ~f:DimensionGroup.of_xml) (Xml.child xml_arg0 "GroupBy") in
      let metric =
        SanitizedString.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "Metric") in
      make ?filter ?groupBy ~metric ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let filter = field_map json__ "Filter" MetricQueryFilterMap.of_json in
      let groupBy = field_map json__ "GroupBy" DimensionGroup.of_json in
      let metric = field_map_exn json__ "Metric" SanitizedString.of_json in
      make ?filter ?groupBy ~metric ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "A single query to be processed. You must provide the metric to query and append an aggregate function to the metric. For example, to find the average for the metric db.load you must use db.load.avg. Valid values for aggregate functions include .avg, .min, .max, and .sum. If no other parameters are specified, Performance Insights returns all data points for the specified metric. Optionally, you can request that the data points be aggregated by dimension group (GroupBy), and return only those data points that match your criteria (Filter)."]
module MetricQueryList =
  struct
    type nonrec t = MetricQuery.t list
    let make i =
      let open Result in
        ok_or_failwith
          ((check_list_max i ~max:15) >>= (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:MetricQuery.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:MetricQuery.of_xml)
    let of_json j =
      list_of_json ~kind:"MetricQueryList" ~of_json:MetricQuery.of_json j
    let to_json v = composed_to_json to_value v
  end
module GetResourceMetricsRequest =
  struct
    type nonrec t =
      {
      serviceType: ServiceType.t
        [@ocaml.doc
          "The Amazon Web Services service for which Performance Insights returns metrics. Valid values are as follows: RDS DOCDB"];
      identifier: IdentifierString.t
        [@ocaml.doc
          "An immutable identifier for a data source that is unique for an Amazon Web Services Region. Performance Insights gathers metrics from this data source. In the console, the identifier is shown as ResourceID. When you call DescribeDBInstances, the identifier is returned as DbiResourceId. To use a DB instance as a data source, specify its DbiResourceId value. For example, specify db-ABCDEFGHIJKLMNOPQRSTU1VW2X."];
      metricQueries: MetricQueryList.t
        [@ocaml.doc
          "An array of one or more queries to perform. Each query must specify a Performance Insights metric and specify an aggregate function, and you can provide filtering criteria. You must append the aggregate function to the metric. For example, to find the average for the metric db.load you must use db.load.avg. Valid values for aggregate functions include .avg, .min, .max, and .sum."];
      startTime: ISOTimestamp.t
        [@ocaml.doc
          "The date and time specifying the beginning of the requested time series query range. You can't specify a StartTime that is earlier than 7 days ago. By default, Performance Insights has 7 days of retention, but you can extend this range up to 2 years. The value specified is inclusive. Thus, the command returns data points equal to or greater than StartTime. The value for StartTime must be earlier than the value for EndTime."];
      endTime: ISOTimestamp.t
        [@ocaml.doc
          "The date and time specifying the end of the requested time series query range. The value specified is exclusive. Thus, the command returns data points less than (but not equal to) EndTime. The value for EndTime must be later than the value for StartTime."];
      periodInSeconds: Integer.t option
        [@ocaml.doc
          "The granularity, in seconds, of the data points returned from Performance Insights. A period can be as short as one second, or as long as one day (86400 seconds). Valid values are: 1 (one second) 60 (one minute) 300 (five minutes) 3600 (one hour) 86400 (twenty-four hours) If you don't specify PeriodInSeconds, then Performance Insights will choose a value for you, with a goal of returning roughly 100-200 data points in the response."];
      maxResults: MaxResults.t option
        [@ocaml.doc "The maximum number of items to return in the response."];
      nextToken: NextToken.t option
        [@ocaml.doc
          "An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the token, up to the value specified by MaxRecords."];
      periodAlignment: PeriodAlignment.t option
        [@ocaml.doc
          "The returned timestamp which is the start or end time of the time periods. The default value is END_TIME."]}
    let context_ = "GetResourceMetricsRequest"
    let make ?periodInSeconds =
      fun ?maxResults ->
        fun ?nextToken ->
          fun ?periodAlignment ->
            fun ~serviceType ->
              fun ~identifier ->
                fun ~metricQueries ->
                  fun ~startTime ->
                    fun ~endTime ->
                      fun () ->
                        {
                          periodInSeconds;
                          maxResults;
                          nextToken;
                          periodAlignment;
                          serviceType;
                          identifier;
                          metricQueries;
                          startTime;
                          endTime
                        }
    let to_value x =
      structure_to_value
        [("ServiceType", (Some (ServiceType.to_value x.serviceType)));
        ("Identifier", (Some (IdentifierString.to_value x.identifier)));
        ("MetricQueries", (Some (MetricQueryList.to_value x.metricQueries)));
        ("StartTime", (Some (ISOTimestamp.to_value x.startTime)));
        ("EndTime", (Some (ISOTimestamp.to_value x.endTime)));
        ("PeriodInSeconds",
          (Option.map x.periodInSeconds ~f:Integer.to_value));
        ("MaxResults", (Option.map x.maxResults ~f:MaxResults.to_value));
        ("NextToken", (Option.map x.nextToken ~f:NextToken.to_value));
        ("PeriodAlignment",
          (Option.map x.periodAlignment ~f:PeriodAlignment.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let periodAlignment =
        (Option.map ~f:PeriodAlignment.of_xml)
          (Xml.child xml_arg0 "PeriodAlignment") in
      let nextToken =
        (Option.map ~f:NextToken.of_xml) (Xml.child xml_arg0 "NextToken") in
      let maxResults =
        (Option.map ~f:MaxResults.of_xml) (Xml.child xml_arg0 "MaxResults") in
      let periodInSeconds =
        (Option.map ~f:Integer.of_xml) (Xml.child xml_arg0 "PeriodInSeconds") in
      let endTime =
        ISOTimestamp.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "EndTime") in
      let startTime =
        ISOTimestamp.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "StartTime") in
      let metricQueries =
        MetricQueryList.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "MetricQueries") in
      let identifier =
        IdentifierString.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "Identifier") in
      let serviceType =
        ServiceType.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "ServiceType") in
      make ?periodAlignment ?nextToken ?maxResults ?periodInSeconds ~endTime
        ~startTime ~metricQueries ~identifier ~serviceType ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let periodAlignment =
        field_map json__ "PeriodAlignment" PeriodAlignment.of_json in
      let nextToken = field_map json__ "NextToken" NextToken.of_json in
      let maxResults = field_map json__ "MaxResults" MaxResults.of_json in
      let periodInSeconds =
        field_map json__ "PeriodInSeconds" Integer.of_json in
      let endTime = field_map_exn json__ "EndTime" ISOTimestamp.of_json in
      let startTime = field_map_exn json__ "StartTime" ISOTimestamp.of_json in
      let metricQueries =
        field_map_exn json__ "MetricQueries" MetricQueryList.of_json in
      let identifier =
        field_map_exn json__ "Identifier" IdentifierString.of_json in
      let serviceType =
        field_map_exn json__ "ServiceType" ServiceType.of_json in
      make ?periodAlignment ?nextToken ?maxResults ?periodInSeconds ~endTime
        ~startTime ~metricQueries ~identifier ~serviceType ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Retrieve Performance Insights metrics for a set of data sources over a time period. You can provide specific dimension groups and dimensions, and provide filtering criteria for each group. You must specify an aggregate function for each metric. Each response element returns a maximum of 500 bytes. For larger elements, such as SQL statements, only the first 500 bytes are returned."]
module ResponseResourceMetricKey =
  struct
    type nonrec t =
      {
      metric: String_.t option
        [@ocaml.doc
          "The name of a Performance Insights metric to be measured. Valid values for Metric are: db.load.avg - A scaled representation of the number of active sessions for the database engine. db.sampledload.avg - The raw number of active sessions for the database engine. The counter metrics listed in Performance Insights operating system counters in the Amazon Aurora User Guide. The counter metrics listed in Performance Insights operating system counters in the Amazon RDS User Guide. If the number of active sessions is less than an internal Performance Insights threshold, db.load.avg and db.sampledload.avg are the same value. If the number of active sessions is greater than the internal threshold, Performance Insights samples the active sessions, with db.load.avg showing the scaled values, db.sampledload.avg showing the raw values, and db.sampledload.avg less than db.load.avg. For most use cases, you can query db.load.avg only."];
      dimensions: DimensionMap.t option
        [@ocaml.doc "The valid dimensions for the metric."]}
    let make ?metric = fun ?dimensions -> fun () -> { metric; dimensions }
    let to_value x =
      structure_to_value
        [("Metric", (Option.map x.metric ~f:String_.to_value));
        ("Dimensions", (Option.map x.dimensions ~f:DimensionMap.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let dimensions =
        (Option.map ~f:DimensionMap.of_xml) (Xml.child xml_arg0 "Dimensions") in
      let metric =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Metric") in
      make ?dimensions ?metric ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let dimensions = field_map json__ "Dimensions" DimensionMap.of_json in
      let metric = field_map json__ "Metric" String_.of_json in
      make ?dimensions ?metric ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "An object describing a Performance Insights metric and one or more dimensions for that metric."]
module MetricKeyDataPoints =
  struct
    type nonrec t =
      {
      key: ResponseResourceMetricKey.t option
        [@ocaml.doc "The dimensions to which the data points apply."];
      dataPoints: DataPointsList.t option
        [@ocaml.doc
          "An array of timestamp-value pairs, representing measurements over a period of time."]}
    let make ?key = fun ?dataPoints -> fun () -> { key; dataPoints }
    let to_value x =
      structure_to_value
        [("Key", (Option.map x.key ~f:ResponseResourceMetricKey.to_value));
        ("DataPoints", (Option.map x.dataPoints ~f:DataPointsList.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let dataPoints =
        (Option.map ~f:DataPointsList.of_xml)
          (Xml.child xml_arg0 "DataPoints") in
      let key =
        (Option.map ~f:ResponseResourceMetricKey.of_xml)
          (Xml.child xml_arg0 "Key") in
      make ?dataPoints ?key ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let dataPoints = field_map json__ "DataPoints" DataPointsList.of_json in
      let key = field_map json__ "Key" ResponseResourceMetricKey.of_json in
      make ?dataPoints ?key ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "A time-ordered series of data points, corresponding to a dimension of a Performance Insights metric."]
module MetricKeyDataPointsList =
  struct
    type nonrec t = MetricKeyDataPoints.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:MetricKeyDataPoints.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:MetricKeyDataPoints.of_xml)
    let of_json j =
      list_of_json ~kind:"MetricKeyDataPointsList"
        ~of_json:MetricKeyDataPoints.of_json j
    let to_json v = composed_to_json to_value v
  end
module GetResourceMetricsResponse =
  struct
    type nonrec t =
      {
      alignedStartTime: ISOTimestamp.t option
        [@ocaml.doc
          "The start time for the returned metrics, after alignment to a granular boundary (as specified by PeriodInSeconds). AlignedStartTime will be less than or equal to the value of the user-specified StartTime."];
      alignedEndTime: ISOTimestamp.t option
        [@ocaml.doc
          "The end time for the returned metrics, after alignment to a granular boundary (as specified by PeriodInSeconds). AlignedEndTime will be greater than or equal to the value of the user-specified Endtime."];
      identifier: String_.t option
        [@ocaml.doc
          "An immutable identifier for a data source that is unique for an Amazon Web Services Region. Performance Insights gathers metrics from this data source. In the console, the identifier is shown as ResourceID. When you call DescribeDBInstances, the identifier is returned as DbiResourceId."];
      metricList: MetricKeyDataPointsList.t option
        [@ocaml.doc
          "An array of metric results, where each array element contains all of the data points for a particular dimension."];
      nextToken: NextToken.t option
        [@ocaml.doc
          "An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the token, up to the value specified by MaxRecords."]}
    type nonrec error =
      [ `InternalServiceError of InternalServiceError.t 
      | `InvalidArgumentException of InvalidArgumentException.t 
      | `NotAuthorizedException of NotAuthorizedException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?alignedStartTime =
      fun ?alignedEndTime ->
        fun ?identifier ->
          fun ?metricList ->
            fun ?nextToken ->
              fun () ->
                {
                  alignedStartTime;
                  alignedEndTime;
                  identifier;
                  metricList;
                  nextToken
                }
    let error_of_json name json =
      match name with
      | "InternalServiceError" ->
          `InternalServiceError (InternalServiceError.of_json json)
      | "InvalidArgumentException" ->
          `InvalidArgumentException (InvalidArgumentException.of_json json)
      | "NotAuthorizedException" ->
          `NotAuthorizedException (NotAuthorizedException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "InternalServiceError" ->
          `InternalServiceError (InternalServiceError.of_xml xml)
      | "InvalidArgumentException" ->
          `InvalidArgumentException (InvalidArgumentException.of_xml xml)
      | "NotAuthorizedException" ->
          `NotAuthorizedException (NotAuthorizedException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `InternalServiceError e ->
          `Assoc
            [("error", (`String "InternalServiceError"));
            ("details", (InternalServiceError.to_json e))]
      | `InvalidArgumentException e ->
          `Assoc
            [("error", (`String "InvalidArgumentException"));
            ("details", (InvalidArgumentException.to_json e))]
      | `NotAuthorizedException e ->
          `Assoc
            [("error", (`String "NotAuthorizedException"));
            ("details", (NotAuthorizedException.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
        [("AlignedStartTime",
           (Option.map x.alignedStartTime ~f:ISOTimestamp.to_value));
        ("AlignedEndTime",
          (Option.map x.alignedEndTime ~f:ISOTimestamp.to_value));
        ("Identifier", (Option.map x.identifier ~f:String_.to_value));
        ("MetricList",
          (Option.map x.metricList ~f:MetricKeyDataPointsList.to_value));
        ("NextToken", (Option.map x.nextToken ~f:NextToken.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let nextToken =
        (Option.map ~f:NextToken.of_xml) (Xml.child xml_arg0 "NextToken") in
      let metricList =
        (Option.map ~f:MetricKeyDataPointsList.of_xml)
          (Xml.child xml_arg0 "MetricList") in
      let identifier =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Identifier") in
      let alignedEndTime =
        (Option.map ~f:ISOTimestamp.of_xml)
          (Xml.child xml_arg0 "AlignedEndTime") in
      let alignedStartTime =
        (Option.map ~f:ISOTimestamp.of_xml)
          (Xml.child xml_arg0 "AlignedStartTime") in
      make ?nextToken ?metricList ?identifier ?alignedEndTime
        ?alignedStartTime ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let nextToken = field_map json__ "NextToken" NextToken.of_json in
      let metricList =
        field_map json__ "MetricList" MetricKeyDataPointsList.of_json in
      let identifier = field_map json__ "Identifier" String_.of_json in
      let alignedEndTime =
        field_map json__ "AlignedEndTime" ISOTimestamp.of_json in
      let alignedStartTime =
        field_map json__ "AlignedStartTime" ISOTimestamp.of_json in
      make ?nextToken ?metricList ?identifier ?alignedEndTime
        ?alignedStartTime ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Retrieve Performance Insights metrics for a set of data sources over a time period. You can provide specific dimension groups and dimensions, and provide filtering criteria for each group. You must specify an aggregate function for each metric. Each response element returns a maximum of 500 bytes. For larger elements, such as SQL statements, only the first 500 bytes are returned."]
module ListAvailableResourceDimensionsRequest =
  struct
    type nonrec t =
      {
      serviceType: ServiceType.t
        [@ocaml.doc
          "The Amazon Web Services service for which Performance Insights returns metrics."];
      identifier: IdentifierString.t
        [@ocaml.doc
          "An immutable identifier for a data source that is unique within an Amazon Web Services Region. Performance Insights gathers metrics from this data source. To use an Amazon RDS DB instance as a data source, specify its DbiResourceId value. For example, specify db-ABCDEFGHIJKLMNOPQRSTU1VWZ."];
      metrics: DimensionsMetricList.t
        [@ocaml.doc
          "The types of metrics for which to retrieve dimensions. Valid values include db.load."];
      maxResults: MaxResults.t option
        [@ocaml.doc
          "The maximum number of items to return in the response. If more items exist than the specified MaxRecords value, a pagination token is included in the response so that the remaining results can be retrieved."];
      nextToken: NextToken.t option
        [@ocaml.doc
          "An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the token, up to the value specified by MaxRecords."];
      authorizedActions: AuthorizedActionsList.t option
        [@ocaml.doc
          "The actions to discover the dimensions you are authorized to access. If you specify multiple actions, then the response will contain the dimensions common for all the actions. When you don't specify this request parameter or provide an empty list, the response contains all the available dimensions for the target database engine whether or not you are authorized to access them."]}
    let context_ = "ListAvailableResourceDimensionsRequest"
    let make ?maxResults =
      fun ?nextToken ->
        fun ?authorizedActions ->
          fun ~serviceType ->
            fun ~identifier ->
              fun ~metrics ->
                fun () ->
                  {
                    maxResults;
                    nextToken;
                    authorizedActions;
                    serviceType;
                    identifier;
                    metrics
                  }
    let to_value x =
      structure_to_value
        [("ServiceType", (Some (ServiceType.to_value x.serviceType)));
        ("Identifier", (Some (IdentifierString.to_value x.identifier)));
        ("Metrics", (Some (DimensionsMetricList.to_value x.metrics)));
        ("MaxResults", (Option.map x.maxResults ~f:MaxResults.to_value));
        ("NextToken", (Option.map x.nextToken ~f:NextToken.to_value));
        ("AuthorizedActions",
          (Option.map x.authorizedActions ~f:AuthorizedActionsList.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let authorizedActions =
        (Option.map ~f:AuthorizedActionsList.of_xml)
          (Xml.child xml_arg0 "AuthorizedActions") in
      let nextToken =
        (Option.map ~f:NextToken.of_xml) (Xml.child xml_arg0 "NextToken") in
      let maxResults =
        (Option.map ~f:MaxResults.of_xml) (Xml.child xml_arg0 "MaxResults") in
      let metrics =
        DimensionsMetricList.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "Metrics") in
      let identifier =
        IdentifierString.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "Identifier") in
      let serviceType =
        ServiceType.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "ServiceType") in
      make ?authorizedActions ?nextToken ?maxResults ~metrics ~identifier
        ~serviceType ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let authorizedActions =
        field_map json__ "AuthorizedActions" AuthorizedActionsList.of_json in
      let nextToken = field_map json__ "NextToken" NextToken.of_json in
      let maxResults = field_map json__ "MaxResults" MaxResults.of_json in
      let metrics =
        field_map_exn json__ "Metrics" DimensionsMetricList.of_json in
      let identifier =
        field_map_exn json__ "Identifier" IdentifierString.of_json in
      let serviceType =
        field_map_exn json__ "ServiceType" ServiceType.of_json in
      make ?authorizedActions ?nextToken ?maxResults ~metrics ~identifier
        ~serviceType ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Retrieve the dimensions that can be queried for each specified metric type on a specified DB instance."]
module MetricDimensionGroups =
  struct
    type nonrec t =
      {
      metric: String_.t option
        [@ocaml.doc
          "The metric type to which the dimension information belongs."];
      groups: DimensionGroupDetailList.t option
        [@ocaml.doc "The available dimension groups for a metric type."]}
    let make ?metric = fun ?groups -> fun () -> { metric; groups }
    let to_value x =
      structure_to_value
        [("Metric", (Option.map x.metric ~f:String_.to_value));
        ("Groups",
          (Option.map x.groups ~f:DimensionGroupDetailList.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let groups =
        (Option.map ~f:DimensionGroupDetailList.of_xml)
          (Xml.child xml_arg0 "Groups") in
      let metric =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Metric") in
      make ?groups ?metric ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let groups = field_map json__ "Groups" DimensionGroupDetailList.of_json in
      let metric = field_map json__ "Metric" String_.of_json in
      make ?groups ?metric ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "The available dimension information for a metric type."]
module MetricDimensionsList =
  struct
    type nonrec t = MetricDimensionGroups.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:MetricDimensionGroups.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:MetricDimensionGroups.of_xml)
    let of_json j =
      list_of_json ~kind:"MetricDimensionsList"
        ~of_json:MetricDimensionGroups.of_json j
    let to_json v = composed_to_json to_value v
  end
module ListAvailableResourceDimensionsResponse =
  struct
    type nonrec t =
      {
      metricDimensions: MetricDimensionsList.t option
        [@ocaml.doc
          "The dimension information returned for requested metric types."];
      nextToken: NextToken.t option
        [@ocaml.doc
          "An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the token, up to the value specified by MaxRecords."]}
    type nonrec error =
      [ `InternalServiceError of InternalServiceError.t 
      | `InvalidArgumentException of InvalidArgumentException.t 
      | `NotAuthorizedException of NotAuthorizedException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?metricDimensions =
      fun ?nextToken -> fun () -> { metricDimensions; nextToken }
    let error_of_json name json =
      match name with
      | "InternalServiceError" ->
          `InternalServiceError (InternalServiceError.of_json json)
      | "InvalidArgumentException" ->
          `InvalidArgumentException (InvalidArgumentException.of_json json)
      | "NotAuthorizedException" ->
          `NotAuthorizedException (NotAuthorizedException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "InternalServiceError" ->
          `InternalServiceError (InternalServiceError.of_xml xml)
      | "InvalidArgumentException" ->
          `InvalidArgumentException (InvalidArgumentException.of_xml xml)
      | "NotAuthorizedException" ->
          `NotAuthorizedException (NotAuthorizedException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `InternalServiceError e ->
          `Assoc
            [("error", (`String "InternalServiceError"));
            ("details", (InternalServiceError.to_json e))]
      | `InvalidArgumentException e ->
          `Assoc
            [("error", (`String "InvalidArgumentException"));
            ("details", (InvalidArgumentException.to_json e))]
      | `NotAuthorizedException e ->
          `Assoc
            [("error", (`String "NotAuthorizedException"));
            ("details", (NotAuthorizedException.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
        [("MetricDimensions",
           (Option.map x.metricDimensions ~f:MetricDimensionsList.to_value));
        ("NextToken", (Option.map x.nextToken ~f:NextToken.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let nextToken =
        (Option.map ~f:NextToken.of_xml) (Xml.child xml_arg0 "NextToken") in
      let metricDimensions =
        (Option.map ~f:MetricDimensionsList.of_xml)
          (Xml.child xml_arg0 "MetricDimensions") in
      make ?nextToken ?metricDimensions ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let nextToken = field_map json__ "NextToken" NextToken.of_json in
      let metricDimensions =
        field_map json__ "MetricDimensions" MetricDimensionsList.of_json in
      make ?nextToken ?metricDimensions ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Retrieve the dimensions that can be queried for each specified metric type on a specified DB instance."]
module MetricTypeList =
  struct
    type nonrec t = SanitizedString.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:SanitizedString.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:SanitizedString.of_xml)
    let of_json j =
      list_of_json ~kind:"MetricTypeList" ~of_json:SanitizedString.of_json j
    let to_json v = composed_to_json to_value v
  end
module ListAvailableResourceMetricsRequest =
  struct
    type nonrec t =
      {
      serviceType: ServiceType.t
        [@ocaml.doc
          "The Amazon Web Services service for which Performance Insights returns metrics."];
      identifier: IdentifierString.t
        [@ocaml.doc
          "An immutable identifier for a data source that is unique within an Amazon Web Services Region. Performance Insights gathers metrics from this data source. To use an Amazon RDS DB instance as a data source, specify its DbiResourceId value. For example, specify db-ABCDEFGHIJKLMNOPQRSTU1VWZ."];
      metricTypes: MetricTypeList.t
        [@ocaml.doc
          "The types of metrics to return in the response. Valid values in the array include the following: os (OS counter metrics) - All engines db (DB load metrics) - All engines except for Amazon DocumentDB db.sql.stats (per-SQL metrics) - All engines except for Amazon DocumentDB db.sql_tokenized.stats (per-SQL digest metrics) - All engines except for Amazon DocumentDB"];
      nextToken: NextToken.t option
        [@ocaml.doc
          "An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the token, up to the value specified by MaxRecords."];
      maxResults: MaxResults.t option
        [@ocaml.doc
          "The maximum number of items to return. If the MaxRecords value is less than the number of existing items, the response includes a pagination token."]}
    let context_ = "ListAvailableResourceMetricsRequest"
    let make ?nextToken =
      fun ?maxResults ->
        fun ~serviceType ->
          fun ~identifier ->
            fun ~metricTypes ->
              fun () ->
                { nextToken; maxResults; serviceType; identifier; metricTypes
                }
    let to_value x =
      structure_to_value
        [("ServiceType", (Some (ServiceType.to_value x.serviceType)));
        ("Identifier", (Some (IdentifierString.to_value x.identifier)));
        ("MetricTypes", (Some (MetricTypeList.to_value x.metricTypes)));
        ("NextToken", (Option.map x.nextToken ~f:NextToken.to_value));
        ("MaxResults", (Option.map x.maxResults ~f:MaxResults.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let maxResults =
        (Option.map ~f:MaxResults.of_xml) (Xml.child xml_arg0 "MaxResults") in
      let nextToken =
        (Option.map ~f:NextToken.of_xml) (Xml.child xml_arg0 "NextToken") in
      let metricTypes =
        MetricTypeList.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "MetricTypes") in
      let identifier =
        IdentifierString.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "Identifier") in
      let serviceType =
        ServiceType.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "ServiceType") in
      make ?maxResults ?nextToken ~metricTypes ~identifier ~serviceType ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let maxResults = field_map json__ "MaxResults" MaxResults.of_json in
      let nextToken = field_map json__ "NextToken" NextToken.of_json in
      let metricTypes =
        field_map_exn json__ "MetricTypes" MetricTypeList.of_json in
      let identifier =
        field_map_exn json__ "Identifier" IdentifierString.of_json in
      let serviceType =
        field_map_exn json__ "ServiceType" ServiceType.of_json in
      make ?maxResults ?nextToken ~metricTypes ~identifier ~serviceType ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Retrieve metrics of the specified types that can be queried for a specified DB instance."]
module ResponseResourceMetric =
  struct
    type nonrec t =
      {
      metric: String_.t option [@ocaml.doc "The full name of the metric."];
      description: Description.t option
        [@ocaml.doc "The description of the metric."];
      unit: String_.t option [@ocaml.doc "The unit of the metric."]}
    let make ?metric =
      fun ?description ->
        fun ?unit -> fun () -> { metric; description; unit }
    let to_value x =
      structure_to_value
        [("Metric", (Option.map x.metric ~f:String_.to_value));
        ("Description", (Option.map x.description ~f:Description.to_value));
        ("Unit", (Option.map x.unit ~f:String_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let unit = (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Unit") in
      let description =
        (Option.map ~f:Description.of_xml) (Xml.child xml_arg0 "Description") in
      let metric =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Metric") in
      make ?unit ?description ?metric ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let unit = field_map json__ "Unit" String_.of_json in
      let description = field_map json__ "Description" Description.of_json in
      let metric = field_map json__ "Metric" String_.of_json in
      make ?unit ?description ?metric ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "An object that contains the full name, description, and unit of a metric."]
module ResponseResourceMetricList =
  struct
    type nonrec t = ResponseResourceMetric.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:ResponseResourceMetric.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:ResponseResourceMetric.of_xml)
    let of_json j =
      list_of_json ~kind:"ResponseResourceMetricList"
        ~of_json:ResponseResourceMetric.of_json j
    let to_json v = composed_to_json to_value v
  end
module ListAvailableResourceMetricsResponse =
  struct
    type nonrec t =
      {
      metrics: ResponseResourceMetricList.t option
        [@ocaml.doc
          "An array of metrics available to query. Each array element contains the full name, description, and unit of the metric."];
      nextToken: NextToken.t option
        [@ocaml.doc
          "A pagination token that indicates the response didn\226\128\153t return all available records because MaxRecords was specified in the previous request. To get the remaining records, specify NextToken in a separate request with this value."]}
    type nonrec error =
      [ `InternalServiceError of InternalServiceError.t 
      | `InvalidArgumentException of InvalidArgumentException.t 
      | `NotAuthorizedException of NotAuthorizedException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?metrics = fun ?nextToken -> fun () -> { metrics; nextToken }
    let error_of_json name json =
      match name with
      | "InternalServiceError" ->
          `InternalServiceError (InternalServiceError.of_json json)
      | "InvalidArgumentException" ->
          `InvalidArgumentException (InvalidArgumentException.of_json json)
      | "NotAuthorizedException" ->
          `NotAuthorizedException (NotAuthorizedException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "InternalServiceError" ->
          `InternalServiceError (InternalServiceError.of_xml xml)
      | "InvalidArgumentException" ->
          `InvalidArgumentException (InvalidArgumentException.of_xml xml)
      | "NotAuthorizedException" ->
          `NotAuthorizedException (NotAuthorizedException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `InternalServiceError e ->
          `Assoc
            [("error", (`String "InternalServiceError"));
            ("details", (InternalServiceError.to_json e))]
      | `InvalidArgumentException e ->
          `Assoc
            [("error", (`String "InvalidArgumentException"));
            ("details", (InvalidArgumentException.to_json e))]
      | `NotAuthorizedException e ->
          `Assoc
            [("error", (`String "NotAuthorizedException"));
            ("details", (NotAuthorizedException.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
        [("Metrics",
           (Option.map x.metrics ~f:ResponseResourceMetricList.to_value));
        ("NextToken", (Option.map x.nextToken ~f:NextToken.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let nextToken =
        (Option.map ~f:NextToken.of_xml) (Xml.child xml_arg0 "NextToken") in
      let metrics =
        (Option.map ~f:ResponseResourceMetricList.of_xml)
          (Xml.child xml_arg0 "Metrics") in
      make ?nextToken ?metrics ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let nextToken = field_map json__ "NextToken" NextToken.of_json in
      let metrics =
        field_map json__ "Metrics" ResponseResourceMetricList.of_json in
      make ?nextToken ?metrics ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Retrieve metrics of the specified types that can be queried for a specified DB instance."]
module ListPerformanceAnalysisReportsRequest =
  struct
    type nonrec t =
      {
      serviceType: ServiceType.t
        [@ocaml.doc
          "The Amazon Web Services service for which Performance Insights returns metrics. Valid value is RDS."];
      identifier: IdentifierString.t
        [@ocaml.doc
          "An immutable identifier for a data source that is unique for an Amazon Web Services Region. Performance Insights gathers metrics from this data source. In the console, the identifier is shown as ResourceID. When you call DescribeDBInstances, the identifier is returned as DbiResourceId. To use a DB instance as a data source, specify its DbiResourceId value. For example, specify db-ABCDEFGHIJKLMNOPQRSTU1VW2X."];
      nextToken: NextToken.t option
        [@ocaml.doc
          "An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the token, up to the value specified by MaxResults."];
      maxResults: MaxResults.t option
        [@ocaml.doc
          "The maximum number of items to return in the response. If more items exist than the specified MaxResults value, a pagination token is included in the response so that the remaining results can be retrieved."];
      listTags: Boolean.t option
        [@ocaml.doc
          "Specifies whether or not to include the list of tags in the response."]}
    let context_ = "ListPerformanceAnalysisReportsRequest"
    let make ?nextToken =
      fun ?maxResults ->
        fun ?listTags ->
          fun ~serviceType ->
            fun ~identifier ->
              fun () ->
                { nextToken; maxResults; listTags; serviceType; identifier }
    let to_value x =
      structure_to_value
        [("ServiceType", (Some (ServiceType.to_value x.serviceType)));
        ("Identifier", (Some (IdentifierString.to_value x.identifier)));
        ("NextToken", (Option.map x.nextToken ~f:NextToken.to_value));
        ("MaxResults", (Option.map x.maxResults ~f:MaxResults.to_value));
        ("ListTags", (Option.map x.listTags ~f:Boolean.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let listTags =
        (Option.map ~f:Boolean.of_xml) (Xml.child xml_arg0 "ListTags") in
      let maxResults =
        (Option.map ~f:MaxResults.of_xml) (Xml.child xml_arg0 "MaxResults") in
      let nextToken =
        (Option.map ~f:NextToken.of_xml) (Xml.child xml_arg0 "NextToken") in
      let identifier =
        IdentifierString.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "Identifier") in
      let serviceType =
        ServiceType.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "ServiceType") in
      make ?listTags ?maxResults ?nextToken ~identifier ~serviceType ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let listTags = field_map json__ "ListTags" Boolean.of_json in
      let maxResults = field_map json__ "MaxResults" MaxResults.of_json in
      let nextToken = field_map json__ "NextToken" NextToken.of_json in
      let identifier =
        field_map_exn json__ "Identifier" IdentifierString.of_json in
      let serviceType =
        field_map_exn json__ "ServiceType" ServiceType.of_json in
      make ?listTags ?maxResults ?nextToken ~identifier ~serviceType ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Lists all the analysis reports created for the DB instance. The reports are sorted based on the start time of each report."]
module ListPerformanceAnalysisReportsResponse =
  struct
    type nonrec t =
      {
      analysisReports: AnalysisReportSummaryList.t option
        [@ocaml.doc
          "List of reports including the report identifier, start and end time, creation time, and status."];
      nextToken: NextToken.t option
        [@ocaml.doc
          "An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the token, up to the value specified by MaxResults."]}
    type nonrec error =
      [ `InternalServiceError of InternalServiceError.t 
      | `InvalidArgumentException of InvalidArgumentException.t 
      | `NotAuthorizedException of NotAuthorizedException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?analysisReports =
      fun ?nextToken -> fun () -> { analysisReports; nextToken }
    let error_of_json name json =
      match name with
      | "InternalServiceError" ->
          `InternalServiceError (InternalServiceError.of_json json)
      | "InvalidArgumentException" ->
          `InvalidArgumentException (InvalidArgumentException.of_json json)
      | "NotAuthorizedException" ->
          `NotAuthorizedException (NotAuthorizedException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "InternalServiceError" ->
          `InternalServiceError (InternalServiceError.of_xml xml)
      | "InvalidArgumentException" ->
          `InvalidArgumentException (InvalidArgumentException.of_xml xml)
      | "NotAuthorizedException" ->
          `NotAuthorizedException (NotAuthorizedException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `InternalServiceError e ->
          `Assoc
            [("error", (`String "InternalServiceError"));
            ("details", (InternalServiceError.to_json e))]
      | `InvalidArgumentException e ->
          `Assoc
            [("error", (`String "InvalidArgumentException"));
            ("details", (InvalidArgumentException.to_json e))]
      | `NotAuthorizedException e ->
          `Assoc
            [("error", (`String "NotAuthorizedException"));
            ("details", (NotAuthorizedException.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
        [("AnalysisReports",
           (Option.map x.analysisReports
              ~f:AnalysisReportSummaryList.to_value));
        ("NextToken", (Option.map x.nextToken ~f:NextToken.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let nextToken =
        (Option.map ~f:NextToken.of_xml) (Xml.child xml_arg0 "NextToken") in
      let analysisReports =
        (Option.map ~f:AnalysisReportSummaryList.of_xml)
          (Xml.child xml_arg0 "AnalysisReports") in
      make ?nextToken ?analysisReports ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let nextToken = field_map json__ "NextToken" NextToken.of_json in
      let analysisReports =
        field_map json__ "AnalysisReports" AnalysisReportSummaryList.of_json in
      make ?nextToken ?analysisReports ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Lists all the analysis reports created for the DB instance. The reports are sorted based on the start time of each report."]
module ListTagsForResourceRequest =
  struct
    type nonrec t =
      {
      serviceType: ServiceType.t
        [@ocaml.doc
          "List the tags for the Amazon Web Services service for which Performance Insights returns metrics. Valid value is RDS."];
      resourceARN: AmazonResourceName.t
        [@ocaml.doc
          "Lists all the tags for the Amazon RDS Performance Insights resource. This value is an Amazon Resource Name (ARN). For information about creating an ARN, see Constructing an RDS Amazon Resource Name (ARN)."]}
    let context_ = "ListTagsForResourceRequest"
    let make ~serviceType =
      fun ~resourceARN -> fun () -> { serviceType; resourceARN }
    let to_value x =
      structure_to_value
        [("ServiceType", (Some (ServiceType.to_value x.serviceType)));
        ("ResourceARN", (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 "ResourceARN") in
      let serviceType =
        ServiceType.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "ServiceType") in
      make ~resourceARN ~serviceType ()
    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
      let serviceType =
        field_map_exn json__ "ServiceType" ServiceType.of_json in
      make ~resourceARN ~serviceType ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Retrieves all the metadata tags associated with Amazon RDS Performance Insights resource."]
module ListTagsForResourceResponse =
  struct
    type nonrec t =
      {
      tags: TagList.t option
        [@ocaml.doc
          "The metadata assigned to an Amazon RDS resource consisting of a key-value pair."]}
    type nonrec error =
      [ `InternalServiceError of InternalServiceError.t 
      | `InvalidArgumentException of InvalidArgumentException.t 
      | `NotAuthorizedException of NotAuthorizedException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?tags = fun () -> { tags }
    let error_of_json name json =
      match name with
      | "InternalServiceError" ->
          `InternalServiceError (InternalServiceError.of_json json)
      | "InvalidArgumentException" ->
          `InvalidArgumentException (InvalidArgumentException.of_json json)
      | "NotAuthorizedException" ->
          `NotAuthorizedException (NotAuthorizedException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "InternalServiceError" ->
          `InternalServiceError (InternalServiceError.of_xml xml)
      | "InvalidArgumentException" ->
          `InvalidArgumentException (InvalidArgumentException.of_xml xml)
      | "NotAuthorizedException" ->
          `NotAuthorizedException (NotAuthorizedException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `InternalServiceError e ->
          `Assoc
            [("error", (`String "InternalServiceError"));
            ("details", (InternalServiceError.to_json e))]
      | `InvalidArgumentException e ->
          `Assoc
            [("error", (`String "InvalidArgumentException"));
            ("details", (InvalidArgumentException.to_json e))]
      | `NotAuthorizedException e ->
          `Assoc
            [("error", (`String "NotAuthorizedException"));
            ("details", (NotAuthorizedException.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
       "Retrieves all the metadata tags associated with Amazon RDS Performance Insights resource."]
module TagKeyList =
  struct
    type nonrec t = TagKey.t list
    let make i =
      let open Result in
        ok_or_failwith
          ((check_list_max i ~max:200) >>=
             (fun () -> check_list_min i ~min:0));
        i
    let of_string _ =
      failwithf "of_string is not implemented for List_shape objects" ()
      [@@warning "-32"]
    let to_value xs =
      (xs |> (List.map ~f:TagKey.to_value)) |> (fun x -> `List x)
    let to_query v = to_query to_value v
    let to_header _ =
      failwithf "to_header is not implemented for List_shape objects" ()
    let of_xml x =
      make
        (List.map
           ((Xml.all_children x) |>
              (List.filter
                 ~f:(function
                     | `Data s ->
                         (match Stdlib.String.trim s with
                          | "" -> false
                          | _ -> true)
                     | _ -> true))) ~f:TagKey.of_xml)
    let of_json j = list_of_json ~kind:"TagKeyList" ~of_json:TagKey.of_json j
    let to_json v = composed_to_json to_value v
  end
module TagResourceRequest =
  struct
    type nonrec t =
      {
      serviceType: ServiceType.t
        [@ocaml.doc
          "The Amazon Web Services service for which Performance Insights returns metrics. Valid value is RDS."];
      resourceARN: AmazonResourceName.t
        [@ocaml.doc
          "The Amazon RDS Performance Insights resource that the tags are added to. This value is an Amazon Resource Name (ARN). For information about creating an ARN, see Constructing an RDS Amazon Resource Name (ARN)."];
      tags: TagList.t
        [@ocaml.doc
          "The metadata assigned to an Amazon RDS resource consisting of a key-value pair."]}
    let context_ = "TagResourceRequest"
    let make ~serviceType =
      fun ~resourceARN ->
        fun ~tags -> fun () -> { serviceType; resourceARN; tags }
    let to_value x =
      structure_to_value
        [("ServiceType", (Some (ServiceType.to_value x.serviceType)));
        ("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
      let serviceType =
        ServiceType.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "ServiceType") in
      make ~tags ~resourceARN ~serviceType ()
    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
      let serviceType =
        field_map_exn json__ "ServiceType" ServiceType.of_json in
      make ~tags ~resourceARN ~serviceType ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Adds metadata tags to the Amazon RDS Performance Insights resource."]
module TagResourceResponse =
  struct
    type nonrec t = unit
    type nonrec error =
      [ `InternalServiceError of InternalServiceError.t 
      | `InvalidArgumentException of InvalidArgumentException.t 
      | `NotAuthorizedException of NotAuthorizedException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make () = ()
    let error_of_json name json =
      match name with
      | "InternalServiceError" ->
          `InternalServiceError (InternalServiceError.of_json json)
      | "InvalidArgumentException" ->
          `InvalidArgumentException (InvalidArgumentException.of_json json)
      | "NotAuthorizedException" ->
          `NotAuthorizedException (NotAuthorizedException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "InternalServiceError" ->
          `InternalServiceError (InternalServiceError.of_xml xml)
      | "InvalidArgumentException" ->
          `InvalidArgumentException (InvalidArgumentException.of_xml xml)
      | "NotAuthorizedException" ->
          `NotAuthorizedException (NotAuthorizedException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `InternalServiceError e ->
          `Assoc
            [("error", (`String "InternalServiceError"));
            ("details", (InternalServiceError.to_json e))]
      | `InvalidArgumentException e ->
          `Assoc
            [("error", (`String "InvalidArgumentException"));
            ("details", (InvalidArgumentException.to_json e))]
      | `NotAuthorizedException e ->
          `Assoc
            [("error", (`String "NotAuthorizedException"));
            ("details", (NotAuthorizedException.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
       "Adds metadata tags to the Amazon RDS Performance Insights resource."]
module UntagResourceRequest =
  struct
    type nonrec t =
      {
      serviceType: ServiceType.t
        [@ocaml.doc
          "List the tags for the Amazon Web Services service for which Performance Insights returns metrics. Valid value is RDS."];
      resourceARN: AmazonResourceName.t
        [@ocaml.doc
          "The Amazon RDS Performance Insights resource that the tags are added to. This value is an Amazon Resource Name (ARN). For information about creating an ARN, see Constructing an RDS Amazon Resource Name (ARN)."];
      tagKeys: TagKeyList.t
        [@ocaml.doc
          "The metadata assigned to an Amazon RDS Performance Insights resource consisting of a key-value pair."]}
    let context_ = "UntagResourceRequest"
    let make ~serviceType =
      fun ~resourceARN ->
        fun ~tagKeys -> fun () -> { serviceType; resourceARN; tagKeys }
    let to_value x =
      structure_to_value
        [("ServiceType", (Some (ServiceType.to_value x.serviceType)));
        ("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
      let serviceType =
        ServiceType.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "ServiceType") in
      make ~tagKeys ~resourceARN ~serviceType ()
    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
      let serviceType =
        field_map_exn json__ "ServiceType" ServiceType.of_json in
      make ~tagKeys ~resourceARN ~serviceType ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Deletes the metadata tags from the Amazon RDS Performance Insights resource."]
module UntagResourceResponse =
  struct
    type nonrec t = unit
    type nonrec error =
      [ `InternalServiceError of InternalServiceError.t 
      | `InvalidArgumentException of InvalidArgumentException.t 
      | `NotAuthorizedException of NotAuthorizedException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make () = ()
    let error_of_json name json =
      match name with
      | "InternalServiceError" ->
          `InternalServiceError (InternalServiceError.of_json json)
      | "InvalidArgumentException" ->
          `InvalidArgumentException (InvalidArgumentException.of_json json)
      | "NotAuthorizedException" ->
          `NotAuthorizedException (NotAuthorizedException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "InternalServiceError" ->
          `InternalServiceError (InternalServiceError.of_xml xml)
      | "InvalidArgumentException" ->
          `InvalidArgumentException (InvalidArgumentException.of_xml xml)
      | "NotAuthorizedException" ->
          `NotAuthorizedException (NotAuthorizedException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `InternalServiceError e ->
          `Assoc
            [("error", (`String "InternalServiceError"));
            ("details", (InternalServiceError.to_json e))]
      | `InvalidArgumentException e ->
          `Assoc
            [("error", (`String "InvalidArgumentException"));
            ("details", (InvalidArgumentException.to_json e))]
      | `NotAuthorizedException e ->
          `Assoc
            [("error", (`String "NotAuthorizedException"));
            ("details", (NotAuthorizedException.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
       "Deletes the metadata tags from the Amazon RDS Performance Insights resource."]