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
(* 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.sts
let apiVersion = "2011-06-15"
let endpointPrefix = "sts"
let serviceFullName = "AWS Security Token Service"
let signatureVersion = "v4"
let protocol = "query"
let globalEndpoint = endpointPrefix ^ ".amazonaws.com"
let serviceAbbreviation = "AWS STS"
let xmlNamespace = "https://sts.amazonaws.com/doc/2011-06-15/"
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 TagKeyType =
  struct
    type nonrec t = string
    let context_ = "tagKeyType"
    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:"[\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]+")));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"tagKeyType" j
    let to_json = simple_to_json to_value
  end
module TagValueType =
  struct
    type nonrec t = string
    let context_ = "tagValueType"
    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:"[\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*")));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"tagValueType" j
    let to_json = simple_to_json to_value
  end
module ArnType =
  struct
    type nonrec t = string
    let context_ = "arnType"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:20) >>=
             (fun () ->
                (check_string_max i ~max:2048) >>=
                  (fun () ->
                     check_pattern i
                       ~pattern:"[\\u0009\\u000A\\u000D\\u0020-\\u007E\\u0085\\u00A0-\\uD7FF\\uE000-\\uFFFD\\u10000-\\u10FFFF]+")));
        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:"arnType" j
    let to_json = simple_to_json to_value
  end
module ContextAssertionType =
  struct
    type nonrec t = string
    let context_ = "contextAssertionType"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_max i ~max:2048) >>=
             (fun () -> check_string_min i ~min:4));
        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:"contextAssertionType" j
    let to_json = simple_to_json to_value
  end
module JwtPayloadSizeExceededException =
  struct
    type nonrec t = string
    let context_ = "jwtPayloadSizeExceededException"
    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:"jwtPayloadSizeExceededException" j
    let to_json = simple_to_json to_value
  end
module OutboundWebIdentityFederationDisabledException__lc1 =
  struct
    type nonrec t = string
    let context_ = "OutboundWebIdentityFederationDisabledException__lc1"
    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:"OutboundWebIdentityFederationDisabledException__lc1" j
    let to_json = simple_to_json to_value
  end
module SessionDurationEscalationException__lc1 =
  struct
    type nonrec t = string
    let context_ = "SessionDurationEscalationException__lc1"
    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:"SessionDurationEscalationException__lc1" j
    let to_json = simple_to_json to_value
  end
module Tag =
  struct
    type nonrec t =
      {
      key: TagKeyType.t
        [@ocaml.doc
          "The key for a session tag. You can pass up to 50 session tags. The plain text session tag keys can\226\128\153t exceed 128 characters. For these and additional limits, see IAM and STS Character Limits in the IAM User Guide."];
      value: TagValueType.t
        [@ocaml.doc
          "The value for a session tag. You can pass up to 50 session tags. The plain text session tag values can\226\128\153t exceed 256 characters. For these and additional limits, see IAM and STS Character Limits in the IAM User Guide."]}
    let context_ = "Tag"
    let make ~key = fun ~value -> fun () -> { key; value }
    let to_value x =
      structure_to_value
        [("Key", (Some (TagKeyType.to_value x.key)));
        ("Value", (Some (TagValueType.to_value x.value)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let value =
        TagValueType.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "Value") in
      let key =
        TagKeyType.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" TagValueType.of_json in
      let key = field_map_exn json__ "Key" TagKeyType.of_json in
      make ~value ~key ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "You can pass custom key-value pair attributes when you assume a role or federate a user. These are called session tags. You can then use the session tags to control access to resources. For more information, see Tagging Amazon Web Services STS Sessions in the IAM User Guide."]
module WebIdentityTokenAudienceStringType =
  struct
    type nonrec t = string
    let context_ = "webIdentityTokenAudienceStringType"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_max i ~max:1000) >>=
             (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:"webIdentityTokenAudienceStringType" j
    let to_json = simple_to_json to_value
  end
module AccessKeyIdType =
  struct
    type nonrec t = string
    let context_ = "accessKeyIdType"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:16) >>=
             (fun () ->
                (check_string_max i ~max:128) >>=
                  (fun () -> check_pattern i ~pattern:"[\\w]*")));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"accessKeyIdType" j
    let to_json = simple_to_json to_value
  end
module AccessKeySecretType =
  struct
    type nonrec t = string
    let context_ = "accessKeySecretType"
    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:"accessKeySecretType" j
    let to_json = simple_to_json to_value
  end
module DateType =
  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 TokenType =
  struct
    type nonrec t = string
    let context_ = "tokenType"
    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:"tokenType" j
    let to_json = simple_to_json to_value
  end
module RegionDisabledMessage =
  struct
    type nonrec t = string
    let context_ = "regionDisabledMessage"
    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:"regionDisabledMessage" j
    let to_json = simple_to_json to_value
  end
module FederatedIdType =
  struct
    type nonrec t = string
    let context_ = "federatedIdType"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:2) >>=
             (fun () ->
                (check_string_max i ~max:193) >>=
                  (fun () -> check_pattern i ~pattern:"[\\w+=,.@\\:-]*")));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"federatedIdType" j
    let to_json = simple_to_json to_value
  end
module MalformedPolicyDocumentMessage =
  struct
    type nonrec t = string
    let context_ = "malformedPolicyDocumentMessage"
    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:"malformedPolicyDocumentMessage" j
    let to_json = simple_to_json to_value
  end
module PackedPolicyTooLargeMessage =
  struct
    type nonrec t = string
    let context_ = "packedPolicyTooLargeMessage"
    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:"packedPolicyTooLargeMessage" j
    let to_json = simple_to_json to_value
  end
module PolicyDescriptorType =
  struct
    type nonrec t =
      {
      arn: ArnType.t option
        [@ocaml.doc
          "The Amazon Resource Name (ARN) of the IAM managed policy to use as a session policy for the role. For more information about ARNs, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces in the Amazon Web Services General Reference."]}
    let make ?arn = fun () -> { arn }
    let to_value x =
      structure_to_value [("arn", (Option.map x.arn ~f:ArnType.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let arn = (Option.map ~f:ArnType.of_xml) (Xml.child xml_arg0 "Arn") in
      make ?arn ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let arn = field_map json__ "arn" ArnType.of_json in make ?arn ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "A reference to the IAM managed policy that is passed as a session policy for a role session or a federated user session."]
module ExpiredTradeInTokenExceptionMessage =
  struct
    type nonrec t = string
    let context_ = "expiredTradeInTokenExceptionMessage"
    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:"expiredTradeInTokenExceptionMessage" j
    let to_json = simple_to_json to_value
  end
module InvalidAuthorizationMessage =
  struct
    type nonrec t = string
    let context_ = "invalidAuthorizationMessage"
    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:"invalidAuthorizationMessage" j
    let to_json = simple_to_json to_value
  end
module ExpiredIdentityTokenMessage =
  struct
    type nonrec t = string
    let context_ = "expiredIdentityTokenMessage"
    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:"expiredIdentityTokenMessage" j
    let to_json = simple_to_json to_value
  end
module AssumedRoleIdType =
  struct
    type nonrec t = string
    let context_ = "assumedRoleIdType"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:2) >>=
             (fun () ->
                (check_string_max i ~max:193) >>=
                  (fun () -> check_pattern i ~pattern:"[\\w+=,.@:-]*")));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"assumedRoleIdType" j
    let to_json = simple_to_json to_value
  end
module IdpCommunicationErrorMessage =
  struct
    type nonrec t = string
    let context_ = "idpCommunicationErrorMessage"
    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:"idpCommunicationErrorMessage" j
    let to_json = simple_to_json to_value
  end
module IdpRejectedClaimMessage =
  struct
    type nonrec t = string
    let context_ = "idpRejectedClaimMessage"
    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:"idpRejectedClaimMessage" j
    let to_json = simple_to_json to_value
  end
module InvalidIdentityTokenMessage =
  struct
    type nonrec t = string
    let context_ = "invalidIdentityTokenMessage"
    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:"invalidIdentityTokenMessage" j
    let to_json = simple_to_json to_value
  end
module ProvidedContext =
  struct
    type nonrec t =
      {
      providerArn: ArnType.t option
        [@ocaml.doc
          "The context provider ARN from which the trusted context assertion was generated."];
      contextAssertion: ContextAssertionType.t option
        [@ocaml.doc
          "The signed and encrypted trusted context assertion generated by the context provider. The trusted context assertion is signed and encrypted by Amazon Web Services STS."]}
    let make ?providerArn =
      fun ?contextAssertion -> fun () -> { providerArn; contextAssertion }
    let to_value x =
      structure_to_value
        [("ProviderArn", (Option.map x.providerArn ~f:ArnType.to_value));
        ("ContextAssertion",
          (Option.map x.contextAssertion ~f:ContextAssertionType.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let contextAssertion =
        (Option.map ~f:ContextAssertionType.of_xml)
          (Xml.child xml_arg0 "ContextAssertion") in
      let providerArn =
        (Option.map ~f:ArnType.of_xml) (Xml.child xml_arg0 "ProviderArn") in
      make ?contextAssertion ?providerArn ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let contextAssertion =
        field_map json__ "ContextAssertion" ContextAssertionType.of_json in
      let providerArn = field_map json__ "ProviderArn" ArnType.of_json in
      make ?contextAssertion ?providerArn ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Contains information about the provided context. This includes the signed and encrypted trusted context assertion and the context provider ARN from which the trusted context assertion was generated."]
module JWTPayloadSizeExceededException =
  struct
    type nonrec t = {
      message: JwtPayloadSizeExceededException.t option }
    let make ?message = fun () -> { message }
    let to_value x =
      structure_to_value
        [("message",
           (Option.map x.message ~f:JwtPayloadSizeExceededException.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let message =
        (Option.map ~f:JwtPayloadSizeExceededException.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" JwtPayloadSizeExceededException.of_json in
      make ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The requested token payload size exceeds the maximum allowed size. Reduce the number of request tags included in the GetWebIdentityToken API call to reduce the token payload size."]
module OutboundWebIdentityFederationDisabledException =
  struct
    type nonrec t =
      {
      message: OutboundWebIdentityFederationDisabledException__lc1.t option }
    let make ?message = fun () -> { message }
    let to_value x =
      structure_to_value
        [("message",
           (Option.map x.message
              ~f:OutboundWebIdentityFederationDisabledException__lc1.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let message =
        (Option.map
           ~f:OutboundWebIdentityFederationDisabledException__lc1.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"
          OutboundWebIdentityFederationDisabledException__lc1.of_json in
      make ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The outbound web identity federation feature is not enabled for this account. To use this feature, you must first enable it through the Amazon Web Services Management Console or API."]
module SessionDurationEscalationException =
  struct
    type nonrec t =
      {
      message: SessionDurationEscalationException__lc1.t option }
    let make ?message = fun () -> { message }
    let to_value x =
      structure_to_value
        [("message",
           (Option.map x.message
              ~f:SessionDurationEscalationException__lc1.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let message =
        (Option.map ~f:SessionDurationEscalationException__lc1.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"
          SessionDurationEscalationException__lc1.of_json in
      make ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The requested token duration would extend the session beyond its original expiration time. You cannot use this operation to extend the lifetime of a session beyond what was granted when the session was originally created."]
module WebIdentityTokenType =
  struct
    type nonrec t = string
    let context_ = "webIdentityTokenType"
    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:"webIdentityTokenType" j
    let to_json = simple_to_json to_value
  end
module JwtAlgorithmType =
  struct
    type nonrec t = string
    let context_ = "jwtAlgorithmType"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_max i ~max:5) >>=
             (fun () -> check_string_min i ~min:5));
        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:"jwtAlgorithmType" j
    let to_json = simple_to_json to_value
  end
module TagListType =
  struct
    type nonrec t = Tag.t list
    let make i =
      let open Result in ok_or_failwith (check_list_max i ~max:50); 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:"tagListType" ~of_json:Tag.of_json j
    let to_json v = composed_to_json to_value v
  end
module WebIdentityTokenAudienceListType =
  struct
    type nonrec t = WebIdentityTokenAudienceStringType.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:WebIdentityTokenAudienceStringType.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:WebIdentityTokenAudienceStringType.of_xml)
    let of_json j =
      list_of_json ~kind:"webIdentityTokenAudienceListType"
        ~of_json:WebIdentityTokenAudienceStringType.of_json j
    let to_json v = composed_to_json to_value v
  end
module WebIdentityTokenDurationSecondsType =
  struct
    type nonrec t = int
    let make i =
      let open Result in
        ok_or_failwith
          ((check_int_max i ~max:3600) >>=
             (fun () -> check_int_min i ~min:60));
        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 webIdentityTokenDurationSecondsType"
           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 Credentials =
  struct
    type nonrec t =
      {
      accessKeyId: AccessKeyIdType.t option
        [@ocaml.doc
          "The access key ID that identifies the temporary security credentials."];
      secretAccessKey: AccessKeySecretType.t option
        [@ocaml.doc
          "The secret access key that can be used to sign requests."];
      sessionToken: TokenType.t option
        [@ocaml.doc
          "The token that users must pass to the service API to use the temporary credentials."];
      expiration: DateType.t option
        [@ocaml.doc "The date on which the current credentials expire."]}
    let make ?accessKeyId =
      fun ?secretAccessKey ->
        fun ?sessionToken ->
          fun ?expiration ->
            fun () ->
              { accessKeyId; secretAccessKey; sessionToken; expiration }
    let to_value x =
      structure_to_value
        [("AccessKeyId",
           (Option.map x.accessKeyId ~f:AccessKeyIdType.to_value));
        ("SecretAccessKey",
          (Option.map x.secretAccessKey ~f:AccessKeySecretType.to_value));
        ("SessionToken", (Option.map x.sessionToken ~f:TokenType.to_value));
        ("Expiration", (Option.map x.expiration ~f:DateType.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let expiration =
        (Option.map ~f:DateType.of_xml) (Xml.child xml_arg0 "Expiration") in
      let sessionToken =
        (Option.map ~f:TokenType.of_xml) (Xml.child xml_arg0 "SessionToken") in
      let secretAccessKey =
        (Option.map ~f:AccessKeySecretType.of_xml)
          (Xml.child xml_arg0 "SecretAccessKey") in
      let accessKeyId =
        (Option.map ~f:AccessKeyIdType.of_xml)
          (Xml.child xml_arg0 "AccessKeyId") in
      make ?expiration ?sessionToken ?secretAccessKey ?accessKeyId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let expiration = field_map json__ "Expiration" DateType.of_json in
      let sessionToken = field_map json__ "SessionToken" TokenType.of_json in
      let secretAccessKey =
        field_map json__ "SecretAccessKey" AccessKeySecretType.of_json in
      let accessKeyId =
        field_map json__ "AccessKeyId" AccessKeyIdType.of_json in
      make ?expiration ?sessionToken ?secretAccessKey ?accessKeyId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "Amazon Web Services credentials for API authentication."]
module RegionDisabledException =
  struct
    type nonrec t = {
      message: RegionDisabledMessage.t option }
    let make ?message = fun () -> { message }
    let to_value x =
      structure_to_value
        [("message",
           (Option.map x.message ~f:RegionDisabledMessage.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let message =
        (Option.map ~f:RegionDisabledMessage.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" RegionDisabledMessage.of_json in
      make ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "STS is not activated in the requested region for the account that is being asked to generate credentials. The account administrator must use the IAM console to activate STS in that region. For more information, see Activating and Deactivating STS in an Amazon Web Services Region in the IAM User Guide."]
module DurationSecondsType =
  struct
    type nonrec t = int
    let make i =
      let open Result in
        ok_or_failwith
          ((check_int_max i ~max:129600) >>=
             (fun () -> check_int_min i ~min:900));
        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 durationSecondsType" 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 SerialNumberType =
  struct
    type nonrec t = string
    let context_ = "serialNumberType"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:9) >>=
             (fun () ->
                (check_string_max i ~max:256) >>=
                  (fun () -> check_pattern i ~pattern:"[\\w+=/:,.@-]*")));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"serialNumberType" j
    let to_json = simple_to_json to_value
  end
module TokenCodeType =
  struct
    type nonrec t = string
    let context_ = "tokenCodeType"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:6) >>=
             (fun () ->
                (check_string_max i ~max:6) >>=
                  (fun () -> check_pattern i ~pattern:"[\\d]*")));
        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:"tokenCodeType" j
    let to_json = simple_to_json to_value
  end
module FederatedUser =
  struct
    type nonrec t =
      {
      federatedUserId: FederatedIdType.t option
        [@ocaml.doc
          "The string that identifies the federated user associated with the credentials, similar to the unique ID of an IAM user."];
      arn: ArnType.t option
        [@ocaml.doc
          "The ARN that specifies the federated user that is associated with the credentials. For more information about ARNs and how to use them in policies, see IAM Identifiers in the IAM User Guide."]}
    let make ?federatedUserId =
      fun ?arn -> fun () -> { federatedUserId; arn }
    let to_value x =
      structure_to_value
        [("FederatedUserId",
           (Option.map x.federatedUserId ~f:FederatedIdType.to_value));
        ("Arn", (Option.map x.arn ~f:ArnType.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let arn = (Option.map ~f:ArnType.of_xml) (Xml.child xml_arg0 "Arn") in
      let federatedUserId =
        (Option.map ~f:FederatedIdType.of_xml)
          (Xml.child xml_arg0 "FederatedUserId") in
      make ?arn ?federatedUserId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let arn = field_map json__ "Arn" ArnType.of_json in
      let federatedUserId =
        field_map json__ "FederatedUserId" FederatedIdType.of_json in
      make ?arn ?federatedUserId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Identifiers for the federated user that is associated with the credentials."]
module MalformedPolicyDocumentException =
  struct
    type nonrec t = {
      message: MalformedPolicyDocumentMessage.t option }
    let make ?message = fun () -> { message }
    let to_value x =
      structure_to_value
        [("message",
           (Option.map x.message ~f:MalformedPolicyDocumentMessage.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let message =
        (Option.map ~f:MalformedPolicyDocumentMessage.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" MalformedPolicyDocumentMessage.of_json in
      make ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The request was rejected because the policy document was malformed. The error message describes the specific error."]
module PackedPolicyTooLargeException =
  struct
    type nonrec t = {
      message: PackedPolicyTooLargeMessage.t option }
    let make ?message = fun () -> { message }
    let to_value x =
      structure_to_value
        [("message",
           (Option.map x.message ~f:PackedPolicyTooLargeMessage.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let message =
        (Option.map ~f:PackedPolicyTooLargeMessage.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" PackedPolicyTooLargeMessage.of_json in
      make ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The request was rejected because the total packed size of the session policies and session tags combined was too large. An Amazon Web Services conversion compresses the session policy document, session policy ARNs, and session tags into a packed binary format that has a separate limit. The error message indicates by percentage how close the policies and tags are to the upper size limit. For more information, see Passing Session Tags in STS in the IAM User Guide. You could receive this error even though you meet other defined session policy and session tag limits. For more information, see IAM and STS Entity Character Limits in the IAM User Guide."]
module NonNegativeIntegerType =
  struct
    type nonrec t = int
    let make i =
      let open Result in ok_or_failwith (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 nonNegativeIntegerType" 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 PolicyDescriptorListType =
  struct
    type nonrec t = PolicyDescriptorType.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:PolicyDescriptorType.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:PolicyDescriptorType.of_xml)
    let of_json j =
      list_of_json ~kind:"policyDescriptorListType"
        ~of_json:PolicyDescriptorType.of_json j
    let to_json v = composed_to_json to_value v
  end
module SessionPolicyDocumentType =
  struct
    type nonrec t = string
    let context_ = "sessionPolicyDocumentType"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:1) >>=
             (fun () ->
                (check_string_max i ~max:2048) >>=
                  (fun () ->
                     check_pattern i
                       ~pattern:"[\\u0009\\u000A\\u000D\\u0020-\\u00FF]+")));
        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:"sessionPolicyDocumentType" j
    let to_json = simple_to_json to_value
  end
module UserNameType =
  struct
    type nonrec t = string
    let context_ = "userNameType"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:2) >>=
             (fun () ->
                (check_string_max i ~max:32) >>=
                  (fun () -> check_pattern i ~pattern:"[\\w+=,.@-]*")));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"userNameType" j
    let to_json = simple_to_json to_value
  end
module ExpiredTradeInTokenException =
  struct
    type nonrec t = {
      message: ExpiredTradeInTokenExceptionMessage.t option }
    let make ?message = fun () -> { message }
    let to_value x =
      structure_to_value
        [("message",
           (Option.map x.message
              ~f:ExpiredTradeInTokenExceptionMessage.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let message =
        (Option.map ~f:ExpiredTradeInTokenExceptionMessage.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"
          ExpiredTradeInTokenExceptionMessage.of_json in
      make ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The trade-in token provided in the request has expired and can no longer be exchanged for credentials. Request a new token and retry the operation."]
module TradeInTokenType =
  struct
    type nonrec t = string
    let context_ = "tradeInTokenType"
    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:"tradeInTokenType" j
    let to_json = simple_to_json to_value
  end
module AccountType =
  struct
    type nonrec t = string
    let context_ = "accountType"
    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:"accountType" j
    let to_json = simple_to_json to_value
  end
module UserIdType =
  struct
    type nonrec t = string
    let context_ = "userIdType"
    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:"userIdType" j
    let to_json = simple_to_json to_value
  end
module InvalidAuthorizationMessageException =
  struct
    type nonrec t = {
      message: InvalidAuthorizationMessage.t option }
    let make ?message = fun () -> { message }
    let to_value x =
      structure_to_value
        [("message",
           (Option.map x.message ~f:InvalidAuthorizationMessage.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let message =
        (Option.map ~f:InvalidAuthorizationMessage.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" InvalidAuthorizationMessage.of_json in
      make ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The error returned if the message passed to DecodeAuthorizationMessage was invalid. This can happen if the token contains invalid characters, such as line breaks, or if the message has expired."]
module DecodedMessageType =
  struct
    type nonrec t = string
    let context_ = "decodedMessageType"
    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:"decodedMessageType" j
    let to_json = simple_to_json to_value
  end
module EncodedMessageType =
  struct
    type nonrec t = string
    let context_ = "encodedMessageType"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_max i ~max:10240) >>=
             (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:"encodedMessageType" j
    let to_json = simple_to_json to_value
  end
module ExpiredTokenException =
  struct
    type nonrec t = {
      message: ExpiredIdentityTokenMessage.t option }
    let make ?message = fun () -> { message }
    let to_value x =
      structure_to_value
        [("message",
           (Option.map x.message ~f:ExpiredIdentityTokenMessage.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let message =
        (Option.map ~f:ExpiredIdentityTokenMessage.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" ExpiredIdentityTokenMessage.of_json in
      make ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The web identity token that was passed is expired or is not valid. Get a new identity token from the identity provider and then retry the request."]
module SourceIdentityType =
  struct
    type nonrec t = string
    let context_ = "sourceIdentityType"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:2) >>=
             (fun () ->
                (check_string_max i ~max:64) >>=
                  (fun () -> check_pattern i ~pattern:"[\\w+=,.@-]*")));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"sourceIdentityType" j
    let to_json = simple_to_json to_value
  end
module RootDurationSecondsType =
  struct
    type nonrec t = int
    let make i =
      let open Result in
        ok_or_failwith
          ((check_int_max i ~max:900) >>= (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 RootDurationSecondsType"
           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 TargetPrincipalType =
  struct
    type nonrec t = string
    let context_ = "TargetPrincipalType"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_max i ~max:2048) >>=
             (fun () -> check_string_min i ~min:12));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"TargetPrincipalType" j
    let to_json = simple_to_json to_value
  end
module AssumedRoleUser =
  struct
    type nonrec t =
      {
      assumedRoleId: AssumedRoleIdType.t option
        [@ocaml.doc
          "A unique identifier that contains the role ID and the role session name of the role that is being assumed. The role ID is generated by Amazon Web Services when the role is created."];
      arn: ArnType.t option
        [@ocaml.doc
          "The ARN of the temporary security credentials that are returned from the AssumeRole action. For more information about ARNs and how to use them in policies, see IAM Identifiers in the IAM User Guide."]}
    let make ?assumedRoleId = fun ?arn -> fun () -> { assumedRoleId; arn }
    let to_value x =
      structure_to_value
        [("AssumedRoleId",
           (Option.map x.assumedRoleId ~f:AssumedRoleIdType.to_value));
        ("Arn", (Option.map x.arn ~f:ArnType.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let arn = (Option.map ~f:ArnType.of_xml) (Xml.child xml_arg0 "Arn") in
      let assumedRoleId =
        (Option.map ~f:AssumedRoleIdType.of_xml)
          (Xml.child xml_arg0 "AssumedRoleId") in
      make ?arn ?assumedRoleId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let arn = field_map json__ "Arn" ArnType.of_json in
      let assumedRoleId =
        field_map json__ "AssumedRoleId" AssumedRoleIdType.of_json in
      make ?arn ?assumedRoleId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The identifiers for the temporary security credentials that the operation returns."]
module Audience =
  struct
    type nonrec t = string
    let context_ = "Audience"
    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:"Audience" j
    let to_json = simple_to_json to_value
  end
module IDPCommunicationErrorException =
  struct
    type nonrec t = {
      message: IdpCommunicationErrorMessage.t option }
    let make ?message = fun () -> { message }
    let to_value x =
      structure_to_value
        [("message",
           (Option.map x.message ~f:IdpCommunicationErrorMessage.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let message =
        (Option.map ~f:IdpCommunicationErrorMessage.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" IdpCommunicationErrorMessage.of_json in
      make ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The request could not be fulfilled because the identity provider (IDP) that was asked to verify the incoming identity token could not be reached. This is often a transient error caused by network conditions. Retry the request a limited number of times so that you don't exceed the request rate. If the error persists, the identity provider might be down or not responding."]
module IDPRejectedClaimException =
  struct
    type nonrec t = {
      message: IdpRejectedClaimMessage.t option }
    let make ?message = fun () -> { message }
    let to_value x =
      structure_to_value
        [("message",
           (Option.map x.message ~f:IdpRejectedClaimMessage.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let message =
        (Option.map ~f:IdpRejectedClaimMessage.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" IdpRejectedClaimMessage.of_json in
      make ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The identity provider (IdP) reported that authentication failed. This might be because the claim is invalid. If this error is returned for the AssumeRoleWithWebIdentity operation, it can also mean that the claim has expired or has been explicitly revoked."]
module InvalidIdentityTokenException =
  struct
    type nonrec t = {
      message: InvalidIdentityTokenMessage.t option }
    let make ?message = fun () -> { message }
    let to_value x =
      structure_to_value
        [("message",
           (Option.map x.message ~f:InvalidIdentityTokenMessage.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let message =
        (Option.map ~f:InvalidIdentityTokenMessage.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" InvalidIdentityTokenMessage.of_json in
      make ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The web identity token that was passed could not be validated by Amazon Web Services. Get a new identity token from the identity provider and then retry the request."]
module Issuer =
  struct
    type nonrec t = string
    let context_ = "Issuer"
    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:"Issuer" j
    let to_json = simple_to_json to_value
  end
module WebIdentitySubjectType =
  struct
    type nonrec t = string
    let context_ = "webIdentitySubjectType"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_max i ~max:255) >>=
             (fun () -> check_string_min i ~min:6));
        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:"webIdentitySubjectType" j
    let to_json = simple_to_json to_value
  end
module ClientTokenType =
  struct
    type nonrec t = string
    let context_ = "clientTokenType"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_max i ~max:20000) >>=
             (fun () -> check_string_min i ~min:4));
        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:"clientTokenType" j
    let to_json = simple_to_json to_value
  end
module RoleDurationSecondsType =
  struct
    type nonrec t = int
    let make i =
      let open Result in
        ok_or_failwith
          ((check_int_max i ~max:43200) >>=
             (fun () -> check_int_min i ~min:900));
        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 roleDurationSecondsType"
           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 RoleSessionNameType =
  struct
    type nonrec t = string
    let context_ = "roleSessionNameType"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:2) >>=
             (fun () ->
                (check_string_max i ~max:64) >>=
                  (fun () -> check_pattern i ~pattern:"[\\w+=,.@-]*")));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"roleSessionNameType" j
    let to_json = simple_to_json to_value
  end
module UrlType =
  struct
    type nonrec t = string
    let context_ = "urlType"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_max i ~max:2048) >>=
             (fun () -> check_string_min i ~min:4));
        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:"urlType" j
    let to_json = simple_to_json to_value
  end
module NameQualifier =
  struct
    type nonrec t = string
    let context_ = "NameQualifier"
    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:"NameQualifier" j
    let to_json = simple_to_json to_value
  end
module Subject =
  struct
    type nonrec t = string
    let context_ = "Subject"
    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:"Subject" j
    let to_json = simple_to_json to_value
  end
module SubjectType =
  struct
    type nonrec t = string
    let context_ = "SubjectType"
    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:"SubjectType" j
    let to_json = simple_to_json to_value
  end
module SAMLAssertionType =
  struct
    type nonrec t = string
    let context_ = "SAMLAssertionType"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_max i ~max:100000) >>=
             (fun () -> check_string_min i ~min:4));
        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:"SAMLAssertionType" j
    let to_json = simple_to_json to_value
  end
module ProvidedContextsListType =
  struct
    type nonrec t = ProvidedContext.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:ProvidedContext.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:ProvidedContext.of_xml)
    let of_json j =
      list_of_json ~kind:"ProvidedContextsListType"
        ~of_json:ProvidedContext.of_json j
    let to_json v = composed_to_json to_value v
  end
module ExternalIdType =
  struct
    type nonrec t = string
    let context_ = "externalIdType"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:2) >>=
             (fun () ->
                (check_string_max i ~max:1224) >>=
                  (fun () -> check_pattern i ~pattern:"[\\w+=,.@:\\/-]*")));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"externalIdType" j
    let to_json = simple_to_json to_value
  end
module TagKeyListType =
  struct
    type nonrec t = TagKeyType.t list
    let make i =
      let open Result in ok_or_failwith (check_list_max i ~max:50); i
    let of_string _ =
      failwithf "of_string is not implemented for List_shape objects" ()
      [@@warning "-32"]
    let to_value xs =
      (xs |> (List.map ~f:TagKeyType.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:TagKeyType.of_xml)
    let of_json j =
      list_of_json ~kind:"tagKeyListType" ~of_json:TagKeyType.of_json j
    let to_json v = composed_to_json to_value v
  end
module UnrestrictedSessionPolicyDocumentType =
  struct
    type nonrec t = string
    let context_ = "unrestrictedSessionPolicyDocumentType"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:1) >>=
             (fun () ->
                check_pattern i
                  ~pattern:"[\\u0009\\u000A\\u000D\\u0020-\\u00FF]+"));
        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:"unrestrictedSessionPolicyDocumentType" j
    let to_json = simple_to_json to_value
  end
module GetWebIdentityTokenResponse =
  struct
    type getWebIdentityTokenResult =
      {
      webIdentityToken: WebIdentityTokenType.t option
        [@ocaml.doc
          "A signed JSON Web Token (JWT) that represents the caller's Amazon Web Services identity. The token contains standard JWT claims such as subject, audience, expiration time, and additional identity attributes added by STS as custom claims. You can also add your own custom claims to the token by passing tags as request parameters to the GetWebIdentityToken API. The token is signed using the specified signing algorithm and can be verified using the verification keys available at the issuer's JWKS endpoint."];
      expiration: DateType.t option
        [@ocaml.doc
          "The date and time when the web identity token expires, in UTC. The expiration is determined by adding the DurationSeconds value to the time the token was issued. After this time, the token should no longer be considered valid."]}
    and responseMetaData = unit
    and t =
      {
      getWebIdentityTokenResult: getWebIdentityTokenResult ;
      responseMetaData: responseMetaData }
    type error =
      [
        `JWTPayloadSizeExceededException of JWTPayloadSizeExceededException.t 
      | `OutboundWebIdentityFederationDisabledException of
          OutboundWebIdentityFederationDisabledException.t 
      | `SessionDurationEscalationException of
          SessionDurationEscalationException.t 
      | `Unknown_operation_error of (string * string option) ]
    let context_ = "GetWebIdentityTokenResponse"
    let make ?webIdentityToken =
      fun ?expiration ->
        fun () ->
          {
            getWebIdentityTokenResult = { webIdentityToken; expiration };
            responseMetaData = ()
          }
    let error_of_json name json =
      match name with
      | "JWTPayloadSizeExceededException" ->
          `JWTPayloadSizeExceededException
            (JWTPayloadSizeExceededException.of_json json)
      | "OutboundWebIdentityFederationDisabledException" ->
          `OutboundWebIdentityFederationDisabledException
            (OutboundWebIdentityFederationDisabledException.of_json json)
      | "SessionDurationEscalationException" ->
          `SessionDurationEscalationException
            (SessionDurationEscalationException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "JWTPayloadSizeExceededException" ->
          `JWTPayloadSizeExceededException
            (JWTPayloadSizeExceededException.of_xml xml)
      | "OutboundWebIdentityFederationDisabledException" ->
          `OutboundWebIdentityFederationDisabledException
            (OutboundWebIdentityFederationDisabledException.of_xml xml)
      | "SessionDurationEscalationException" ->
          `SessionDurationEscalationException
            (SessionDurationEscalationException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `JWTPayloadSizeExceededException e ->
          `Assoc
            [("error", (`String "JWTPayloadSizeExceededException"));
            ("details", (JWTPayloadSizeExceededException.to_json e))]
      | `OutboundWebIdentityFederationDisabledException e ->
          `Assoc
            [("error",
               (`String "OutboundWebIdentityFederationDisabledException"));
            ("details",
              (OutboundWebIdentityFederationDisabledException.to_json e))]
      | `SessionDurationEscalationException e ->
          `Assoc
            [("error", (`String "SessionDurationEscalationException"));
            ("details", (SessionDurationEscalationException.to_json e))]
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let to_value t =
      let x = t.getWebIdentityTokenResult in
      structure_to_wrapped_value
        [("WebIdentityToken",
           (Option.map x.webIdentityToken ~f:WebIdentityTokenType.to_value));
        ("Expiration", (Option.map x.expiration ~f:DateType.to_value))]
        ~wrapper:"GetWebIdentityTokenResult" ~response:"ResponseMetaData"
    let to_query v = to_query to_value v
    let of_xml t =
      let xml_arg0 =
        Xml.child_exn ~context:context_ t "GetWebIdentityTokenResult" in
      let expiration =
        (Option.map ~f:DateType.of_xml) (Xml.child xml_arg0 "Expiration") in
      let webIdentityToken =
        (Option.map ~f:WebIdentityTokenType.of_xml)
          (Xml.child xml_arg0 "WebIdentityToken") in
      make ?expiration ?webIdentityToken ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let expiration = field_map json__ "Expiration" DateType.of_json in
      let webIdentityToken =
        field_map json__ "WebIdentityToken" WebIdentityTokenType.of_json in
      make ?expiration ?webIdentityToken ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Returns a signed JSON Web Token (JWT) that represents the calling Amazon Web Services identity. The returned JWT can be used to authenticate with external services that support OIDC discovery. The token is signed by Amazon Web Services STS and can be publicly verified using the verification keys published at the issuer's JWKS endpoint."]
module GetWebIdentityTokenRequest =
  struct
    type nonrec t =
      {
      audience: WebIdentityTokenAudienceListType.t
        [@ocaml.doc
          "The intended recipient of the web identity token. This value populates the aud claim in the JWT and should identify the service or application that will validate and use the token. The external service should verify this claim to ensure the token was intended for their use."];
      durationSeconds: WebIdentityTokenDurationSecondsType.t option
        [@ocaml.doc
          "The duration, in seconds, for which the JSON Web Token (JWT) will remain valid. The value can range from 60 seconds (1 minute) to 3600 seconds (1 hour). If not specified, the default duration is 300 seconds (5 minutes). The token is designed to be short-lived and should be used for proof of identity, then exchanged for credentials or short-lived tokens in the external service."];
      signingAlgorithm: JwtAlgorithmType.t
        [@ocaml.doc
          "The cryptographic algorithm to use for signing the JSON Web Token (JWT). Valid values are RS256 (RSA with SHA-256) and ES384 (ECDSA using P-384 curve with SHA-384)."];
      tags: TagListType.t option
        [@ocaml.doc
          "An optional list of tags to include in the JSON Web Token (JWT). These tags are added as custom claims to the JWT and can be used by the downstream service for authorization decisions."]}
    let context_ = "GetWebIdentityTokenRequest"
    let make ?durationSeconds =
      fun ?tags ->
        fun ~audience ->
          fun ~signingAlgorithm ->
            fun () -> { durationSeconds; tags; audience; signingAlgorithm }
    let to_value x =
      structure_to_value
        [("Audience",
           (Some (WebIdentityTokenAudienceListType.to_value x.audience)));
        ("DurationSeconds",
          (Option.map x.durationSeconds
             ~f:WebIdentityTokenDurationSecondsType.to_value));
        ("SigningAlgorithm",
          (Some (JwtAlgorithmType.to_value x.signingAlgorithm)));
        ("Tags", (Option.map x.tags ~f:TagListType.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let tags =
        (Option.map ~f:TagListType.of_xml) (Xml.child xml_arg0 "Tags") in
      let signingAlgorithm =
        JwtAlgorithmType.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "SigningAlgorithm") in
      let durationSeconds =
        (Option.map ~f:WebIdentityTokenDurationSecondsType.of_xml)
          (Xml.child xml_arg0 "DurationSeconds") in
      let audience =
        WebIdentityTokenAudienceListType.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "Audience") in
      make ?tags ~signingAlgorithm ?durationSeconds ~audience ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let tags = field_map json__ "Tags" TagListType.of_json in
      let signingAlgorithm =
        field_map_exn json__ "SigningAlgorithm" JwtAlgorithmType.of_json in
      let durationSeconds =
        field_map json__ "DurationSeconds"
          WebIdentityTokenDurationSecondsType.of_json in
      let audience =
        field_map_exn json__ "Audience"
          WebIdentityTokenAudienceListType.of_json in
      make ?tags ~signingAlgorithm ?durationSeconds ~audience ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Returns a signed JSON Web Token (JWT) that represents the calling Amazon Web Services identity. The returned JWT can be used to authenticate with external services that support OIDC discovery. The token is signed by Amazon Web Services STS and can be publicly verified using the verification keys published at the issuer's JWKS endpoint."]
module GetSessionTokenResponse =
  struct
    type getSessionTokenResult =
      {
      credentials: Credentials.t option
        [@ocaml.doc
          "The temporary security credentials, which include an access key ID, a secret access key, and a security (or session) token. The size of the security token that STS API operations return is not fixed. We strongly recommend that you make no assumptions about the maximum size."]}
    and responseMetaData = unit
    and t =
      {
      getSessionTokenResult: getSessionTokenResult ;
      responseMetaData: responseMetaData }
    type error =
      [ `RegionDisabledException of RegionDisabledException.t 
      | `Unknown_operation_error of (string * string option) ]
    let context_ = "GetSessionTokenResponse"
    let make ?credentials =
      fun () ->
        { getSessionTokenResult = { credentials }; responseMetaData = () }
    let error_of_json name json =
      match name with
      | "RegionDisabledException" ->
          `RegionDisabledException (RegionDisabledException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "RegionDisabledException" ->
          `RegionDisabledException (RegionDisabledException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `RegionDisabledException e ->
          `Assoc
            [("error", (`String "RegionDisabledException"));
            ("details", (RegionDisabledException.to_json e))]
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let to_value t =
      let x = t.getSessionTokenResult in
      structure_to_wrapped_value
        [("Credentials", (Option.map x.credentials ~f:Credentials.to_value))]
        ~wrapper:"GetSessionTokenResult" ~response:"ResponseMetaData"
    let to_query v = to_query to_value v
    let of_xml t =
      let xml_arg0 =
        Xml.child_exn ~context:context_ t "GetSessionTokenResult" in
      let credentials =
        (Option.map ~f:Credentials.of_xml) (Xml.child xml_arg0 "Credentials") in
      make ?credentials ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let credentials = field_map json__ "Credentials" Credentials.of_json in
      make ?credentials ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Contains the response to a successful GetSessionToken request, including temporary Amazon Web Services credentials that can be used to make Amazon Web Services requests."]
module GetSessionTokenRequest =
  struct
    type nonrec t =
      {
      durationSeconds: DurationSecondsType.t option
        [@ocaml.doc
          "The duration, in seconds, that the credentials should remain valid. Acceptable durations for IAM user sessions range from 900 seconds (15 minutes) to 129,600 seconds (36 hours), with 43,200 seconds (12 hours) as the default. Sessions for Amazon Web Services account owners are restricted to a maximum of 3,600 seconds (one hour). If the duration is longer than one hour, the session for Amazon Web Services account owners defaults to one hour."];
      serialNumber: SerialNumberType.t option
        [@ocaml.doc
          "The identification number of the MFA device that is associated with the IAM user who is making the GetSessionToken call. Specify this value if the IAM user has a policy that requires MFA authentication. The value is either the serial number for a hardware device (such as GAHT12345678) or an Amazon Resource Name (ARN) for a virtual device (such as arn:aws:iam::123456789012:mfa/user). You can find the device for an IAM user by going to the Amazon Web Services Management Console and viewing the user's security credentials. The regex used to validate this parameter is a string of characters consisting of upper- and lower-case alphanumeric characters with no spaces. You can also include underscores or any of the following characters: =,.\\@:/-"];
      tokenCode: TokenCodeType.t option
        [@ocaml.doc
          "The value provided by the MFA device, if MFA is required. If any policy requires the IAM user to submit an MFA code, specify this value. If MFA authentication is required, the user must provide a code when requesting a set of temporary security credentials. A user who fails to provide the code receives an \"access denied\" response when requesting resources that require MFA authentication. The format for this parameter, as described by its regex pattern, is a sequence of six numeric digits."]}
    let make ?durationSeconds =
      fun ?serialNumber ->
        fun ?tokenCode ->
          fun () -> { durationSeconds; serialNumber; tokenCode }
    let to_value x =
      structure_to_value
        [("DurationSeconds",
           (Option.map x.durationSeconds ~f:DurationSecondsType.to_value));
        ("SerialNumber",
          (Option.map x.serialNumber ~f:SerialNumberType.to_value));
        ("TokenCode", (Option.map x.tokenCode ~f:TokenCodeType.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let tokenCode =
        (Option.map ~f:TokenCodeType.of_xml) (Xml.child xml_arg0 "TokenCode") in
      let serialNumber =
        (Option.map ~f:SerialNumberType.of_xml)
          (Xml.child xml_arg0 "SerialNumber") in
      let durationSeconds =
        (Option.map ~f:DurationSecondsType.of_xml)
          (Xml.child xml_arg0 "DurationSeconds") in
      make ?tokenCode ?serialNumber ?durationSeconds ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let tokenCode = field_map json__ "TokenCode" TokenCodeType.of_json in
      let serialNumber =
        field_map json__ "SerialNumber" SerialNumberType.of_json in
      let durationSeconds =
        field_map json__ "DurationSeconds" DurationSecondsType.of_json in
      make ?tokenCode ?serialNumber ?durationSeconds ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Returns a set of temporary credentials for an Amazon Web Services account or IAM user. The credentials consist of an access key ID, a secret access key, and a security token. Typically, you use GetSessionToken if you want to use MFA to protect programmatic calls to specific Amazon Web Services API operations like Amazon EC2 StopInstances. MFA-enabled IAM users must call GetSessionToken and submit an MFA code that is associated with their MFA device. Using the temporary security credentials that the call returns, IAM users can then make programmatic calls to API operations that require MFA authentication. An incorrect MFA code causes the API to return an access denied error. For a comparison of GetSessionToken with the other API operations that produce temporary credentials, see Requesting Temporary Security Credentials and Compare STS credentials in the IAM User Guide. No permissions are required for users to perform this operation. The purpose of the sts:GetSessionToken operation is to authenticate the user using MFA. You cannot use policies to control authentication operations. For more information, see Permissions for GetSessionToken in the IAM User Guide. Session Duration The GetSessionToken operation must be called by using the long-term Amazon Web Services security credentials of an IAM user. Credentials that are created by IAM users are valid for the duration that you specify. This duration can range from 900 seconds (15 minutes) up to a maximum of 129,600 seconds (36 hours), with a default of 43,200 seconds (12 hours). Credentials based on account credentials can range from 900 seconds (15 minutes) up to 3,600 seconds (1 hour), with a default of 1 hour. Permissions The temporary security credentials created by GetSessionToken can be used to make API calls to any Amazon Web Services service with the following exceptions: You cannot call any IAM API operations unless MFA authentication information is included in the request. You cannot call any STS API except AssumeRole or GetCallerIdentity. The credentials that GetSessionToken returns are based on permissions associated with the IAM user whose credentials were used to call the operation. The temporary credentials have the same permissions as the IAM user. Although it is possible to call GetSessionToken using the security credentials of an Amazon Web Services account root user rather than an IAM user, we do not recommend it. If GetSessionToken is called using root user credentials, the temporary credentials have root user permissions. For more information, see Safeguard your root user credentials and don't use them for everyday tasks in the IAM User Guide For more information about using GetSessionToken to create temporary credentials, see Temporary Credentials for Users in Untrusted Environments in the IAM User Guide."]
module GetFederationTokenResponse =
  struct
    type getFederationTokenResult =
      {
      credentials: Credentials.t option
        [@ocaml.doc
          "The temporary security credentials, which include an access key ID, a secret access key, and a security (or session) token. The size of the security token that STS API operations return is not fixed. We strongly recommend that you make no assumptions about the maximum size."];
      federatedUser: FederatedUser.t option
        [@ocaml.doc
          "Identifiers for the federated user associated with the credentials (such as arn:aws:sts::123456789012:federated-user/Bob or 123456789012:Bob). You can use the federated user's ARN in your resource-based policies, such as an Amazon S3 bucket policy."];
      packedPolicySize: NonNegativeIntegerType.t option
        [@ocaml.doc
          "A percentage value that indicates the packed size of the session policies and session tags combined passed in the request. The request fails if the packed size is greater than 100 percent, which means the policies and tags exceeded the allowed space."]}
    and responseMetaData = unit
    and t =
      {
      getFederationTokenResult: getFederationTokenResult ;
      responseMetaData: responseMetaData }
    type error =
      [
        `MalformedPolicyDocumentException of
          MalformedPolicyDocumentException.t 
      | `PackedPolicyTooLargeException of PackedPolicyTooLargeException.t 
      | `RegionDisabledException of RegionDisabledException.t 
      | `Unknown_operation_error of (string * string option) ]
    let context_ = "GetFederationTokenResponse"
    let make ?credentials =
      fun ?federatedUser ->
        fun ?packedPolicySize ->
          fun () ->
            {
              getFederationTokenResult =
                { credentials; federatedUser; packedPolicySize };
              responseMetaData = ()
            }
    let error_of_json name json =
      match name with
      | "MalformedPolicyDocumentException" ->
          `MalformedPolicyDocumentException
            (MalformedPolicyDocumentException.of_json json)
      | "PackedPolicyTooLargeException" ->
          `PackedPolicyTooLargeException
            (PackedPolicyTooLargeException.of_json json)
      | "RegionDisabledException" ->
          `RegionDisabledException (RegionDisabledException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "MalformedPolicyDocumentException" ->
          `MalformedPolicyDocumentException
            (MalformedPolicyDocumentException.of_xml xml)
      | "PackedPolicyTooLargeException" ->
          `PackedPolicyTooLargeException
            (PackedPolicyTooLargeException.of_xml xml)
      | "RegionDisabledException" ->
          `RegionDisabledException (RegionDisabledException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `MalformedPolicyDocumentException e ->
          `Assoc
            [("error", (`String "MalformedPolicyDocumentException"));
            ("details", (MalformedPolicyDocumentException.to_json e))]
      | `PackedPolicyTooLargeException e ->
          `Assoc
            [("error", (`String "PackedPolicyTooLargeException"));
            ("details", (PackedPolicyTooLargeException.to_json e))]
      | `RegionDisabledException e ->
          `Assoc
            [("error", (`String "RegionDisabledException"));
            ("details", (RegionDisabledException.to_json e))]
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let to_value t =
      let x = t.getFederationTokenResult in
      structure_to_wrapped_value
        [("Credentials", (Option.map x.credentials ~f:Credentials.to_value));
        ("FederatedUser",
          (Option.map x.federatedUser ~f:FederatedUser.to_value));
        ("PackedPolicySize",
          (Option.map x.packedPolicySize ~f:NonNegativeIntegerType.to_value))]
        ~wrapper:"GetFederationTokenResult" ~response:"ResponseMetaData"
    let to_query v = to_query to_value v
    let of_xml t =
      let xml_arg0 =
        Xml.child_exn ~context:context_ t "GetFederationTokenResult" in
      let packedPolicySize =
        (Option.map ~f:NonNegativeIntegerType.of_xml)
          (Xml.child xml_arg0 "PackedPolicySize") in
      let federatedUser =
        (Option.map ~f:FederatedUser.of_xml)
          (Xml.child xml_arg0 "FederatedUser") in
      let credentials =
        (Option.map ~f:Credentials.of_xml) (Xml.child xml_arg0 "Credentials") in
      make ?packedPolicySize ?federatedUser ?credentials ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let packedPolicySize =
        field_map json__ "PackedPolicySize" NonNegativeIntegerType.of_json in
      let federatedUser =
        field_map json__ "FederatedUser" FederatedUser.of_json in
      let credentials = field_map json__ "Credentials" Credentials.of_json in
      make ?packedPolicySize ?federatedUser ?credentials ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Contains the response to a successful GetFederationToken request, including temporary Amazon Web Services credentials that can be used to make Amazon Web Services requests."]
module GetFederationTokenRequest =
  struct
    type nonrec t =
      {
      name: UserNameType.t
        [@ocaml.doc
          "The name of the federated user. The name is used as an identifier for the temporary security credentials (such as Bob). For example, you can reference the federated user name in a resource-based policy, such as in an Amazon S3 bucket policy. The regex used to validate this parameter is a string of characters consisting of upper- and lower-case alphanumeric characters with no spaces. You can also include underscores or any of the following characters: =,.\\@-"];
      policy: SessionPolicyDocumentType.t option
        [@ocaml.doc
          "An IAM policy in JSON format that you want to use as an inline session policy. You must pass an inline or managed session policy to this operation. You can pass a single JSON policy document to use as an inline session policy. You can also specify up to 10 managed policy Amazon Resource Names (ARNs) to use as managed session policies. This parameter is optional. However, if you do not pass any session policies, then the resulting federated user session has no permissions. When you pass session policies, the session permissions are the intersection of the IAM user policies and the session policies that you pass. This gives you a way to further restrict the permissions for a federated user. You cannot use session policies to grant more permissions than those that are defined in the permissions policy of the IAM user. For more information, see Session Policies in the IAM User Guide. The resulting credentials can be used to access a resource that has a resource-based policy. If that policy specifically references the federated user session in the Principal element of the policy, the session has the permissions allowed by the policy. These permissions are granted in addition to the permissions that are granted by the session policies. The plaintext that you use for both inline and managed session policies can't exceed 2,048 characters. The JSON policy characters can be any ASCII character from the space character to the end of the valid character list (\\u0020 through \\u00FF). It can also include the tab (\\u0009), linefeed (\\u000A), and carriage return (\\u000D) characters. An Amazon Web Services conversion compresses the passed inline session policy, managed policy ARNs, and session tags into a packed binary format that has a separate limit. Your request can fail for this limit even if your plaintext meets the other requirements. The PackedPolicySize response element indicates by percentage how close the policies and tags for your request are to the upper size limit."];
      policyArns: PolicyDescriptorListType.t option
        [@ocaml.doc
          "The Amazon Resource Names (ARNs) of the IAM managed policies that you want to use as a managed session policy. The policies must exist in the same account as the IAM user that is requesting federated access. You must pass an inline or managed session policy to this operation. You can pass a single JSON policy document to use as an inline session policy. You can also specify up to 10 managed policy Amazon Resource Names (ARNs) to use as managed session policies. The plaintext that you use for both inline and managed session policies can't exceed 2,048 characters. You can provide up to 10 managed policy ARNs. For more information about ARNs, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces in the Amazon Web Services General Reference. This parameter is optional. However, if you do not pass any session policies, then the resulting federated user session has no permissions. When you pass session policies, the session permissions are the intersection of the IAM user policies and the session policies that you pass. This gives you a way to further restrict the permissions for a federated user. You cannot use session policies to grant more permissions than those that are defined in the permissions policy of the IAM user. For more information, see Session Policies in the IAM User Guide. The resulting credentials can be used to access a resource that has a resource-based policy. If that policy specifically references the federated user session in the Principal element of the policy, the session has the permissions allowed by the policy. These permissions are granted in addition to the permissions that are granted by the session policies. An Amazon Web Services conversion compresses the passed inline session policy, managed policy ARNs, and session tags into a packed binary format that has a separate limit. Your request can fail for this limit even if your plaintext meets the other requirements. The PackedPolicySize response element indicates by percentage how close the policies and tags for your request are to the upper size limit."];
      durationSeconds: DurationSecondsType.t option
        [@ocaml.doc
          "The duration, in seconds, that the session should last. Acceptable durations for federation sessions range from 900 seconds (15 minutes) to 129,600 seconds (36 hours), with 43,200 seconds (12 hours) as the default. Sessions obtained using root user credentials are restricted to a maximum of 3,600 seconds (one hour). If the specified duration is longer than one hour, the session obtained by using root user credentials defaults to one hour."];
      tags: TagListType.t option
        [@ocaml.doc
          "A list of session tags. Each session tag consists of a key name and an associated value. For more information about session tags, see Passing Session Tags in STS in the IAM User Guide. This parameter is optional. You can pass up to 50 session tags. The plaintext session tag keys can\226\128\153t exceed 128 characters and the values can\226\128\153t exceed 256 characters. For these and additional limits, see IAM and STS Character Limits in the IAM User Guide. An Amazon Web Services conversion compresses the passed inline session policy, managed policy ARNs, and session tags into a packed binary format that has a separate limit. Your request can fail for this limit even if your plaintext meets the other requirements. The PackedPolicySize response element indicates by percentage how close the policies and tags for your request are to the upper size limit. You can pass a session tag with the same key as a tag that is already attached to the user you are federating. When you do, session tags override a user tag with the same key. Tag key\226\128\147value pairs are not case sensitive, but case is preserved. This means that you cannot have separate Department and department tag keys. Assume that the role has the Department=Marketing tag and you pass the department=engineering session tag. Department and department are not saved as separate tags, and the session tag passed in the request takes precedence over the role tag."]}
    let context_ = "GetFederationTokenRequest"
    let make ?policy =
      fun ?policyArns ->
        fun ?durationSeconds ->
          fun ?tags ->
            fun ~name ->
              fun () -> { policy; policyArns; durationSeconds; tags; name }
    let to_value x =
      structure_to_value
        [("Name", (Some (UserNameType.to_value x.name)));
        ("Policy",
          (Option.map x.policy ~f:SessionPolicyDocumentType.to_value));
        ("PolicyArns",
          (Option.map x.policyArns ~f:PolicyDescriptorListType.to_value));
        ("DurationSeconds",
          (Option.map x.durationSeconds ~f:DurationSecondsType.to_value));
        ("Tags", (Option.map x.tags ~f:TagListType.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let tags =
        (Option.map ~f:TagListType.of_xml) (Xml.child xml_arg0 "Tags") in
      let durationSeconds =
        (Option.map ~f:DurationSecondsType.of_xml)
          (Xml.child xml_arg0 "DurationSeconds") in
      let policyArns =
        (Option.map ~f:PolicyDescriptorListType.of_xml)
          (Xml.child xml_arg0 "PolicyArns") in
      let policy =
        (Option.map ~f:SessionPolicyDocumentType.of_xml)
          (Xml.child xml_arg0 "Policy") in
      let name =
        UserNameType.of_xml (Xml.child_exn ~context:context_ xml_arg0 "Name") in
      make ?tags ?durationSeconds ?policyArns ?policy ~name ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let tags = field_map json__ "Tags" TagListType.of_json in
      let durationSeconds =
        field_map json__ "DurationSeconds" DurationSecondsType.of_json in
      let policyArns =
        field_map json__ "PolicyArns" PolicyDescriptorListType.of_json in
      let policy =
        field_map json__ "Policy" SessionPolicyDocumentType.of_json in
      let name = field_map_exn json__ "Name" UserNameType.of_json in
      make ?tags ?durationSeconds ?policyArns ?policy ~name ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Returns a set of temporary security credentials (consisting of an access key ID, a secret access key, and a security token) for a user. A typical use is in a proxy application that gets temporary security credentials on behalf of distributed applications inside a corporate network. You must call the GetFederationToken operation using the long-term security credentials of an IAM user. As a result, this call is appropriate in contexts where those credentials can be safeguarded, usually in a server-based application. For a comparison of GetFederationToken with the other API operations that produce temporary credentials, see Requesting Temporary Security Credentials and Compare STS credentials in the IAM User Guide. Although it is possible to call GetFederationToken using the security credentials of an Amazon Web Services account root user rather than an IAM user that you create for the purpose of a proxy application, we do not recommend it. For more information, see Safeguard your root user credentials and don't use them for everyday tasks in the IAM User Guide. You can create a mobile-based or browser-based app that can authenticate users using a web identity provider like Login with Amazon, Facebook, Google, or an OpenID Connect-compatible identity provider. In this case, we recommend that you use Amazon Cognito or AssumeRoleWithWebIdentity. For more information, see Federation Through a Web-based Identity Provider in the IAM User Guide. Session duration The temporary credentials are valid for the specified duration, from 900 seconds (15 minutes) up to a maximum of 129,600 seconds (36 hours). The default session duration is 43,200 seconds (12 hours). Temporary credentials obtained by using the root user credentials have a maximum duration of 3,600 seconds (1 hour). Permissions You can use the temporary credentials created by GetFederationToken in any Amazon Web Services service with the following exceptions: You cannot call any IAM operations using the CLI or the Amazon Web Services API. This limitation does not apply to console sessions. You cannot call any STS operations except GetCallerIdentity. You can use temporary credentials for single sign-on (SSO) to the console. You must pass an inline or managed session policy to this operation. You can pass a single JSON policy document to use as an inline session policy. You can also specify up to 10 managed policy Amazon Resource Names (ARNs) to use as managed session policies. The plaintext that you use for both inline and managed session policies can't exceed 2,048 characters. Though the session policy parameters are optional, if you do not pass a policy, then the resulting federated user session has no permissions. When you pass session policies, the session permissions are the intersection of the IAM user policies and the session policies that you pass. This gives you a way to further restrict the permissions for a federated user. You cannot use session policies to grant more permissions than those that are defined in the permissions policy of the IAM user. For more information, see Session Policies in the IAM User Guide. For information about using GetFederationToken to create temporary security credentials, see GetFederationToken\226\128\148Federation Through a Custom Identity Broker. You can use the credentials to access a resource that has a resource-based policy. If that policy specifically references the federated user session in the Principal element of the policy, the session has the permissions allowed by the policy. These permissions are granted in addition to the permissions granted by the session policies. Tags (Optional) You can pass tag key-value pairs to your session. These are called session tags. For more information about session tags, see Passing Session Tags in STS in the IAM User Guide. You can create a mobile-based or browser-based app that can authenticate users using a web identity provider like Login with Amazon, Facebook, Google, or an OpenID Connect-compatible identity provider. In this case, we recommend that you use Amazon Cognito or AssumeRoleWithWebIdentity. For more information, see Federation Through a Web-based Identity Provider in the IAM User Guide. An administrator must grant you the permissions necessary to pass session tags. The administrator can also create granular permissions to allow you to pass only specific session tags. For more information, see Tutorial: Using Tags for Attribute-Based Access Control in the IAM User Guide. Tag key\226\128\147value pairs are not case sensitive, but case is preserved. This means that you cannot have separate Department and department tag keys. Assume that the user that you are federating has the Department=Marketing tag and you pass the department=engineering session tag. Department and department are not saved as separate tags, and the session tag passed in the request takes precedence over the user tag."]
module GetDelegatedAccessTokenResponse =
  struct
    type getDelegatedAccessTokenResult =
      {
      credentials: Credentials.t option ;
      packedPolicySize: NonNegativeIntegerType.t option
        [@ocaml.doc
          "The percentage of the maximum policy size that is used by the session policy. The policy size is calculated as the sum of all the session policies and permission boundaries attached to the session. If the packed size exceeds 100%, the request fails."];
      assumedPrincipal: ArnType.t option
        [@ocaml.doc
          "The Amazon Resource Name (ARN) of the principal that was assumed when obtaining the delegated access token. This ARN identifies the IAM entity whose permissions are granted by the temporary credentials."]}
    and responseMetaData = unit
    and t =
      {
      getDelegatedAccessTokenResult: getDelegatedAccessTokenResult ;
      responseMetaData: responseMetaData }
    type error =
      [ `ExpiredTradeInTokenException of ExpiredTradeInTokenException.t 
      | `PackedPolicyTooLargeException of PackedPolicyTooLargeException.t 
      | `RegionDisabledException of RegionDisabledException.t 
      | `Unknown_operation_error of (string * string option) ]
    let context_ = "GetDelegatedAccessTokenResponse"
    let make ?credentials =
      fun ?packedPolicySize ->
        fun ?assumedPrincipal ->
          fun () ->
            {
              getDelegatedAccessTokenResult =
                { credentials; packedPolicySize; assumedPrincipal };
              responseMetaData = ()
            }
    let error_of_json name json =
      match name with
      | "ExpiredTradeInTokenException" ->
          `ExpiredTradeInTokenException
            (ExpiredTradeInTokenException.of_json json)
      | "PackedPolicyTooLargeException" ->
          `PackedPolicyTooLargeException
            (PackedPolicyTooLargeException.of_json json)
      | "RegionDisabledException" ->
          `RegionDisabledException (RegionDisabledException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "ExpiredTradeInTokenException" ->
          `ExpiredTradeInTokenException
            (ExpiredTradeInTokenException.of_xml xml)
      | "PackedPolicyTooLargeException" ->
          `PackedPolicyTooLargeException
            (PackedPolicyTooLargeException.of_xml xml)
      | "RegionDisabledException" ->
          `RegionDisabledException (RegionDisabledException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `ExpiredTradeInTokenException e ->
          `Assoc
            [("error", (`String "ExpiredTradeInTokenException"));
            ("details", (ExpiredTradeInTokenException.to_json e))]
      | `PackedPolicyTooLargeException e ->
          `Assoc
            [("error", (`String "PackedPolicyTooLargeException"));
            ("details", (PackedPolicyTooLargeException.to_json e))]
      | `RegionDisabledException e ->
          `Assoc
            [("error", (`String "RegionDisabledException"));
            ("details", (RegionDisabledException.to_json e))]
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let to_value t =
      let x = t.getDelegatedAccessTokenResult in
      structure_to_wrapped_value
        [("Credentials", (Option.map x.credentials ~f:Credentials.to_value));
        ("PackedPolicySize",
          (Option.map x.packedPolicySize ~f:NonNegativeIntegerType.to_value));
        ("AssumedPrincipal",
          (Option.map x.assumedPrincipal ~f:ArnType.to_value))]
        ~wrapper:"GetDelegatedAccessTokenResult" ~response:"ResponseMetaData"
    let to_query v = to_query to_value v
    let of_xml t =
      let xml_arg0 =
        Xml.child_exn ~context:context_ t "GetDelegatedAccessTokenResult" in
      let assumedPrincipal =
        (Option.map ~f:ArnType.of_xml)
          (Xml.child xml_arg0 "AssumedPrincipal") in
      let packedPolicySize =
        (Option.map ~f:NonNegativeIntegerType.of_xml)
          (Xml.child xml_arg0 "PackedPolicySize") in
      let credentials =
        (Option.map ~f:Credentials.of_xml) (Xml.child xml_arg0 "Credentials") in
      make ?assumedPrincipal ?packedPolicySize ?credentials ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let assumedPrincipal =
        field_map json__ "AssumedPrincipal" ArnType.of_json in
      let packedPolicySize =
        field_map json__ "PackedPolicySize" NonNegativeIntegerType.of_json in
      let credentials = field_map json__ "Credentials" Credentials.of_json in
      make ?assumedPrincipal ?packedPolicySize ?credentials ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Exchanges a trade-in token for temporary Amazon Web Services credentials with the permissions associated with the assumed principal. This operation allows you to obtain credentials for a specific principal based on a trade-in token, enabling delegation of access to Amazon Web Services resources."]
module GetDelegatedAccessTokenRequest =
  struct
    type nonrec t =
      {
      tradeInToken: TradeInTokenType.t
        [@ocaml.doc
          "The token to exchange for temporary Amazon Web Services credentials. This token must be valid and unexpired at the time of the request."]}
    let context_ = "GetDelegatedAccessTokenRequest"
    let make ~tradeInToken = fun () -> { tradeInToken }
    let to_value x =
      structure_to_value
        [("TradeInToken", (Some (TradeInTokenType.to_value x.tradeInToken)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let tradeInToken =
        TradeInTokenType.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "TradeInToken") in
      make ~tradeInToken ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let tradeInToken =
        field_map_exn json__ "TradeInToken" TradeInTokenType.of_json in
      make ~tradeInToken ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Exchanges a trade-in token for temporary Amazon Web Services credentials with the permissions associated with the assumed principal. This operation allows you to obtain credentials for a specific principal based on a trade-in token, enabling delegation of access to Amazon Web Services resources."]
module GetCallerIdentityResponse =
  struct
    type getCallerIdentityResult =
      {
      userId: UserIdType.t option
        [@ocaml.doc
          "The unique identifier of the calling entity. The exact value depends on the type of entity that is making the call. The values returned are those listed in the aws:userid column in the Principal table found on the Policy Variables reference page in the IAM User Guide."];
      account: AccountType.t option
        [@ocaml.doc
          "The Amazon Web Services account ID number of the account that owns or contains the calling entity."];
      arn: ArnType.t option
        [@ocaml.doc
          "The Amazon Web Services ARN associated with the calling entity."]}
    and responseMetaData = unit
    and t =
      {
      getCallerIdentityResult: getCallerIdentityResult ;
      responseMetaData: responseMetaData }
    type error = [ `Unknown_operation_error of (string * string option) ]
    let context_ = "GetCallerIdentityResponse"
    let make ?userId =
      fun ?account ->
        fun ?arn ->
          fun () ->
            {
              getCallerIdentityResult = { userId; account; arn };
              responseMetaData = ()
            }
    let error_of_json name json =
      match name with
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let to_value t =
      let x = t.getCallerIdentityResult in
      structure_to_wrapped_value
        [("UserId", (Option.map x.userId ~f:UserIdType.to_value));
        ("Account", (Option.map x.account ~f:AccountType.to_value));
        ("Arn", (Option.map x.arn ~f:ArnType.to_value))]
        ~wrapper:"GetCallerIdentityResult" ~response:"ResponseMetaData"
    let to_query v = to_query to_value v
    let of_xml t =
      let xml_arg0 =
        Xml.child_exn ~context:context_ t "GetCallerIdentityResult" in
      let arn = (Option.map ~f:ArnType.of_xml) (Xml.child xml_arg0 "Arn") in
      let account =
        (Option.map ~f:AccountType.of_xml) (Xml.child xml_arg0 "Account") in
      let userId =
        (Option.map ~f:UserIdType.of_xml) (Xml.child xml_arg0 "UserId") in
      make ?arn ?account ?userId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let arn = field_map json__ "Arn" ArnType.of_json in
      let account = field_map json__ "Account" AccountType.of_json in
      let userId = field_map json__ "UserId" UserIdType.of_json in
      make ?arn ?account ?userId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Contains the response to a successful GetCallerIdentity request, including information about the entity making the request."]
module GetCallerIdentityRequest =
  struct
    type nonrec t = unit
    let make () = ()
    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
       "Returns details about the IAM user or role whose credentials are used to call the operation. No permissions are required to perform this operation. If an administrator attaches a policy to your identity that explicitly denies access to the sts:GetCallerIdentity action, you can still perform this operation. Permissions are not required because the same information is returned when access is denied. To view an example response, see I Am Not Authorized to Perform: iam:DeleteVirtualMFADevice in the IAM User Guide."]
module GetAccessKeyInfoResponse =
  struct
    type getAccessKeyInfoResult =
      {
      account: AccountType.t option
        [@ocaml.doc
          "The number used to identify the Amazon Web Services account."]}
    and responseMetaData = unit
    and t =
      {
      getAccessKeyInfoResult: getAccessKeyInfoResult ;
      responseMetaData: responseMetaData }
    type error = [ `Unknown_operation_error of (string * string option) ]
    let context_ = "GetAccessKeyInfoResponse"
    let make ?account =
      fun () ->
        { getAccessKeyInfoResult = { account }; responseMetaData = () }
    let error_of_json name json =
      match name with
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let to_value t =
      let x = t.getAccessKeyInfoResult in
      structure_to_wrapped_value
        [("Account", (Option.map x.account ~f:AccountType.to_value))]
        ~wrapper:"GetAccessKeyInfoResult" ~response:"ResponseMetaData"
    let to_query v = to_query to_value v
    let of_xml t =
      let xml_arg0 =
        Xml.child_exn ~context:context_ t "GetAccessKeyInfoResult" in
      let account =
        (Option.map ~f:AccountType.of_xml) (Xml.child xml_arg0 "Account") in
      make ?account ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let account = field_map json__ "Account" AccountType.of_json in
      make ?account ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Returns the account identifier for the specified access key ID. Access keys consist of two parts: an access key ID (for example, AKIAIOSFODNN7EXAMPLE) and a secret access key (for example, wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY). For more information about access keys, see Managing Access Keys for IAM Users in the IAM User Guide. When you pass an access key ID to this operation, it returns the ID of the Amazon Web Services account to which the keys belong. Access key IDs beginning with AKIA are long-term credentials for an IAM user or the Amazon Web Services account root user. Access key IDs beginning with ASIA are temporary credentials that are created using STS operations. If the account in the response belongs to you, you can sign in as the root user and review your root user access keys. Then, you can pull a credentials report to learn which IAM user owns the keys. To learn who requested the temporary credentials for an ASIA access key, view the STS events in your CloudTrail logs in the IAM User Guide. This operation does not indicate the state of the access key. The key might be active, inactive, or deleted. Active keys might not have permissions to perform an operation. Providing a deleted access key might return an error that the key doesn't exist."]
module GetAccessKeyInfoRequest =
  struct
    type nonrec t =
      {
      accessKeyId: AccessKeyIdType.t
        [@ocaml.doc
          "The identifier of an access key. This parameter allows (through its regex pattern) a string of characters that can consist of any upper- or lowercase letter or digit."]}
    let context_ = "GetAccessKeyInfoRequest"
    let make ~accessKeyId = fun () -> { accessKeyId }
    let to_value x =
      structure_to_value
        [("AccessKeyId", (Some (AccessKeyIdType.to_value x.accessKeyId)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let accessKeyId =
        AccessKeyIdType.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "AccessKeyId") in
      make ~accessKeyId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let accessKeyId =
        field_map_exn json__ "AccessKeyId" AccessKeyIdType.of_json in
      make ~accessKeyId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Returns the account identifier for the specified access key ID. Access keys consist of two parts: an access key ID (for example, AKIAIOSFODNN7EXAMPLE) and a secret access key (for example, wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY). For more information about access keys, see Managing Access Keys for IAM Users in the IAM User Guide. When you pass an access key ID to this operation, it returns the ID of the Amazon Web Services account to which the keys belong. Access key IDs beginning with AKIA are long-term credentials for an IAM user or the Amazon Web Services account root user. Access key IDs beginning with ASIA are temporary credentials that are created using STS operations. If the account in the response belongs to you, you can sign in as the root user and review your root user access keys. Then, you can pull a credentials report to learn which IAM user owns the keys. To learn who requested the temporary credentials for an ASIA access key, view the STS events in your CloudTrail logs in the IAM User Guide. This operation does not indicate the state of the access key. The key might be active, inactive, or deleted. Active keys might not have permissions to perform an operation. Providing a deleted access key might return an error that the key doesn't exist."]
module DecodeAuthorizationMessageResponse =
  struct
    type decodeAuthorizationMessageResult =
      {
      decodedMessage: DecodedMessageType.t option
        [@ocaml.doc "The API returns a response with the decoded message."]}
    and responseMetaData = unit
    and t =
      {
      decodeAuthorizationMessageResult: decodeAuthorizationMessageResult ;
      responseMetaData: responseMetaData }
    type error =
      [
        `InvalidAuthorizationMessageException of
          InvalidAuthorizationMessageException.t 
      | `Unknown_operation_error of (string * string option) ]
    let context_ = "DecodeAuthorizationMessageResponse"
    let make ?decodedMessage =
      fun () ->
        {
          decodeAuthorizationMessageResult = { decodedMessage };
          responseMetaData = ()
        }
    let error_of_json name json =
      match name with
      | "InvalidAuthorizationMessageException" ->
          `InvalidAuthorizationMessageException
            (InvalidAuthorizationMessageException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "InvalidAuthorizationMessageException" ->
          `InvalidAuthorizationMessageException
            (InvalidAuthorizationMessageException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `InvalidAuthorizationMessageException e ->
          `Assoc
            [("error", (`String "InvalidAuthorizationMessageException"));
            ("details", (InvalidAuthorizationMessageException.to_json e))]
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let to_value t =
      let x = t.decodeAuthorizationMessageResult in
      structure_to_wrapped_value
        [("DecodedMessage",
           (Option.map x.decodedMessage ~f:DecodedMessageType.to_value))]
        ~wrapper:"DecodeAuthorizationMessageResult"
        ~response:"ResponseMetaData"
    let to_query v = to_query to_value v
    let of_xml t =
      let xml_arg0 =
        Xml.child_exn ~context:context_ t "DecodeAuthorizationMessageResult" in
      let decodedMessage =
        (Option.map ~f:DecodedMessageType.of_xml)
          (Xml.child xml_arg0 "DecodedMessage") in
      make ?decodedMessage ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let decodedMessage =
        field_map json__ "DecodedMessage" DecodedMessageType.of_json in
      make ?decodedMessage ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "A document that contains additional information about the authorization status of a request from an encoded message that is returned in response to an Amazon Web Services request."]
module DecodeAuthorizationMessageRequest =
  struct
    type nonrec t =
      {
      encodedMessage: EncodedMessageType.t
        [@ocaml.doc
          "The encoded message that was returned with the response."]}
    let context_ = "DecodeAuthorizationMessageRequest"
    let make ~encodedMessage = fun () -> { encodedMessage }
    let to_value x =
      structure_to_value
        [("EncodedMessage",
           (Some (EncodedMessageType.to_value x.encodedMessage)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let encodedMessage =
        EncodedMessageType.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "EncodedMessage") in
      make ~encodedMessage ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let encodedMessage =
        field_map_exn json__ "EncodedMessage" EncodedMessageType.of_json in
      make ~encodedMessage ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Decodes additional information about the authorization status of a request from an encoded message returned in response to an Amazon Web Services request. For example, if a user is not authorized to perform an operation that he or she has requested, the request returns a Client.UnauthorizedOperation response (an HTTP 403 response). Some Amazon Web Services operations additionally return an encoded message that can provide details about this authorization failure. Only certain Amazon Web Services operations return an encoded authorization message. The documentation for an individual operation indicates whether that operation returns an encoded message in addition to returning an HTTP code. The message is encoded because the details of the authorization status can contain privileged information that the user who requested the operation should not see. To decode an authorization status message, a user must be granted permissions through an IAM policy to request the DecodeAuthorizationMessage (sts:DecodeAuthorizationMessage) action. The decoded message includes the following type of information: Whether the request was denied due to an explicit deny or due to the absence of an explicit allow. For more information, see Determining Whether a Request is Allowed or Denied in the IAM User Guide. The principal who made the request. The requested action. The requested resource. The values of condition keys in the context of the user's request."]
module AssumeRootResponse =
  struct
    type assumeRootResult =
      {
      credentials: Credentials.t option
        [@ocaml.doc
          "The temporary security credentials, which include an access key ID, a secret access key, and a security token. The size of the security token that STS API operations return is not fixed. We strongly recommend that you make no assumptions about the maximum size."];
      sourceIdentity: SourceIdentityType.t option
        [@ocaml.doc
          "The source identity specified by the principal that is calling the AssumeRoot operation. You can use the aws:SourceIdentity condition key to control access based on the value of source identity. For more information about using source identity, see Monitor and control actions taken with assumed roles in the IAM User Guide. The regex used to validate this parameter is a string of characters consisting of upper- and lower-case alphanumeric characters with no spaces. You can also include underscores or any of the following characters: =,.\\@-"]}
    and responseMetaData = unit
    and t =
      {
      assumeRootResult: assumeRootResult ;
      responseMetaData: responseMetaData }
    type error =
      [ `ExpiredTokenException of ExpiredTokenException.t 
      | `RegionDisabledException of RegionDisabledException.t 
      | `Unknown_operation_error of (string * string option) ]
    let context_ = "AssumeRootResponse"
    let make ?credentials =
      fun ?sourceIdentity ->
        fun () ->
          {
            assumeRootResult = { credentials; sourceIdentity };
            responseMetaData = ()
          }
    let error_of_json name json =
      match name with
      | "ExpiredTokenException" ->
          `ExpiredTokenException (ExpiredTokenException.of_json json)
      | "RegionDisabledException" ->
          `RegionDisabledException (RegionDisabledException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "ExpiredTokenException" ->
          `ExpiredTokenException (ExpiredTokenException.of_xml xml)
      | "RegionDisabledException" ->
          `RegionDisabledException (RegionDisabledException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `ExpiredTokenException e ->
          `Assoc
            [("error", (`String "ExpiredTokenException"));
            ("details", (ExpiredTokenException.to_json e))]
      | `RegionDisabledException e ->
          `Assoc
            [("error", (`String "RegionDisabledException"));
            ("details", (RegionDisabledException.to_json e))]
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let to_value t =
      let x = t.assumeRootResult in
      structure_to_wrapped_value
        [("Credentials", (Option.map x.credentials ~f:Credentials.to_value));
        ("SourceIdentity",
          (Option.map x.sourceIdentity ~f:SourceIdentityType.to_value))]
        ~wrapper:"AssumeRootResult" ~response:"ResponseMetaData"
    let to_query v = to_query to_value v
    let of_xml t =
      let xml_arg0 = Xml.child_exn ~context:context_ t "AssumeRootResult" in
      let sourceIdentity =
        (Option.map ~f:SourceIdentityType.of_xml)
          (Xml.child xml_arg0 "SourceIdentity") in
      let credentials =
        (Option.map ~f:Credentials.of_xml) (Xml.child xml_arg0 "Credentials") in
      make ?sourceIdentity ?credentials ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let sourceIdentity =
        field_map json__ "SourceIdentity" SourceIdentityType.of_json in
      let credentials = field_map json__ "Credentials" Credentials.of_json in
      make ?sourceIdentity ?credentials ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Returns a set of short term credentials you can use to perform privileged tasks on a member account in your organization. You must use credentials from an Organizations management account or a delegated administrator account for IAM to call AssumeRoot. You cannot use root user credentials to make this call. Before you can launch a privileged session, you must have centralized root access in your organization. For steps to enable this feature, see Centralize root access for member accounts in the IAM User Guide. The STS global endpoint is not supported for AssumeRoot. You must send this request to a Regional STS endpoint. For more information, see Endpoints. You can track AssumeRoot in CloudTrail logs to determine what actions were performed in a session. For more information, see Track privileged tasks in CloudTrail in the IAM User Guide. When granting access to privileged tasks you should only grant the necessary permissions required to perform that task. For more information, see Security best practices in IAM. In addition, you can use service control policies (SCPs) to manage and limit permissions in your organization. See General examples in the Organizations User Guide for more information on SCPs."]
module AssumeRootRequest =
  struct
    type nonrec t =
      {
      targetPrincipal: TargetPrincipalType.t
        [@ocaml.doc "The member account principal ARN or account ID."];
      taskPolicyArn: PolicyDescriptorType.t
        [@ocaml.doc
          "The identity based policy that scopes the session to the privileged tasks that can be performed. You must use one of following Amazon Web Services managed policies to scope root session actions: IAMAuditRootUserCredentials IAMCreateRootUserPassword IAMDeleteRootUserCredentials S3UnlockBucketPolicy SQSUnlockQueuePolicy"];
      durationSeconds: RootDurationSecondsType.t option
        [@ocaml.doc
          "The duration, in seconds, of the privileged session. The value can range from 0 seconds up to the maximum session duration of 900 seconds (15 minutes). If you specify a value higher than this setting, the operation fails. By default, the value is set to 900 seconds."]}
    let context_ = "AssumeRootRequest"
    let make ?durationSeconds =
      fun ~targetPrincipal ->
        fun ~taskPolicyArn ->
          fun () -> { durationSeconds; targetPrincipal; taskPolicyArn }
    let to_value x =
      structure_to_value
        [("TargetPrincipal",
           (Some (TargetPrincipalType.to_value x.targetPrincipal)));
        ("TaskPolicyArn",
          (Some (PolicyDescriptorType.to_value x.taskPolicyArn)));
        ("DurationSeconds",
          (Option.map x.durationSeconds ~f:RootDurationSecondsType.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let durationSeconds =
        (Option.map ~f:RootDurationSecondsType.of_xml)
          (Xml.child xml_arg0 "DurationSeconds") in
      let taskPolicyArn =
        PolicyDescriptorType.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "TaskPolicyArn") in
      let targetPrincipal =
        TargetPrincipalType.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "TargetPrincipal") in
      make ?durationSeconds ~taskPolicyArn ~targetPrincipal ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let durationSeconds =
        field_map json__ "DurationSeconds" RootDurationSecondsType.of_json in
      let taskPolicyArn =
        field_map_exn json__ "TaskPolicyArn" PolicyDescriptorType.of_json in
      let targetPrincipal =
        field_map_exn json__ "TargetPrincipal" TargetPrincipalType.of_json in
      make ?durationSeconds ~taskPolicyArn ~targetPrincipal ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Returns a set of short term credentials you can use to perform privileged tasks on a member account in your organization. You must use credentials from an Organizations management account or a delegated administrator account for IAM to call AssumeRoot. You cannot use root user credentials to make this call. Before you can launch a privileged session, you must have centralized root access in your organization. For steps to enable this feature, see Centralize root access for member accounts in the IAM User Guide. The STS global endpoint is not supported for AssumeRoot. You must send this request to a Regional STS endpoint. For more information, see Endpoints. You can track AssumeRoot in CloudTrail logs to determine what actions were performed in a session. For more information, see Track privileged tasks in CloudTrail in the IAM User Guide. When granting access to privileged tasks you should only grant the necessary permissions required to perform that task. For more information, see Security best practices in IAM. In addition, you can use service control policies (SCPs) to manage and limit permissions in your organization. See General examples in the Organizations User Guide for more information on SCPs."]
module AssumeRoleWithWebIdentityResponse =
  struct
    type assumeRoleWithWebIdentityResult =
      {
      credentials: Credentials.t option
        [@ocaml.doc
          "The temporary security credentials, which include an access key ID, a secret access key, and a security token. The size of the security token that STS API operations return is not fixed. We strongly recommend that you make no assumptions about the maximum size."];
      subjectFromWebIdentityToken: WebIdentitySubjectType.t option
        [@ocaml.doc
          "The unique user identifier that is returned by the identity provider. This identifier is associated with the WebIdentityToken that was submitted with the AssumeRoleWithWebIdentity call. The identifier is typically unique to the user and the application that acquired the WebIdentityToken (pairwise identifier). For OpenID Connect ID tokens, this field contains the value returned by the identity provider as the token's sub (Subject) claim."];
      assumedRoleUser: AssumedRoleUser.t option
        [@ocaml.doc
          "The Amazon Resource Name (ARN) and the assumed role ID, which are identifiers that you can use to refer to the resulting temporary security credentials. For example, you can reference these credentials as a principal in a resource-based policy by using the ARN or assumed role ID. The ARN and ID include the RoleSessionName that you specified when you called AssumeRole."];
      packedPolicySize: NonNegativeIntegerType.t option
        [@ocaml.doc
          "A percentage value that indicates the packed size of the session policies and session tags combined passed in the request. The request fails if the packed size is greater than 100 percent, which means the policies and tags exceeded the allowed space."];
      provider: Issuer.t option
        [@ocaml.doc
          "The issuing authority of the web identity token presented. For OpenID Connect ID tokens, this contains the value of the iss field. For OAuth 2.0 access tokens, this contains the value of the ProviderId parameter that was passed in the AssumeRoleWithWebIdentity request."];
      audience: Audience.t option
        [@ocaml.doc
          "The intended audience (also known as client ID) of the web identity token. This is traditionally the client identifier issued to the application that requested the web identity token."];
      sourceIdentity: SourceIdentityType.t option
        [@ocaml.doc
          "The value of the source identity that is returned in the JSON web token (JWT) from the identity provider. You can require users to set a source identity value when they assume a role. You do this by using the sts:SourceIdentity condition key in a role trust policy. That way, actions that are taken with the role are associated with that user. After the source identity is set, the value cannot be changed. It is present in the request for all actions that are taken by the role and persists across chained role sessions. You can configure your identity provider to use an attribute associated with your users, like user name or email, as the source identity when calling AssumeRoleWithWebIdentity. You do this by adding a claim to the JSON web token. To learn more about OIDC tokens and claims, see Using Tokens with User Pools in the Amazon Cognito Developer Guide. For more information about using source identity, see Monitor and control actions taken with assumed roles in the IAM User Guide. The regex used to validate this parameter is a string of characters consisting of upper- and lower-case alphanumeric characters with no spaces. You can also include underscores or any of the following characters: =,.\\@-"]}
    and responseMetaData = unit
    and t =
      {
      assumeRoleWithWebIdentityResult: assumeRoleWithWebIdentityResult ;
      responseMetaData: responseMetaData }
    type error =
      [ `ExpiredTokenException of ExpiredTokenException.t 
      | `IDPCommunicationErrorException of IDPCommunicationErrorException.t 
      | `IDPRejectedClaimException of IDPRejectedClaimException.t 
      | `InvalidIdentityTokenException of InvalidIdentityTokenException.t 
      | `MalformedPolicyDocumentException of
          MalformedPolicyDocumentException.t 
      | `PackedPolicyTooLargeException of PackedPolicyTooLargeException.t 
      | `RegionDisabledException of RegionDisabledException.t 
      | `Unknown_operation_error of (string * string option) ]
    let context_ = "AssumeRoleWithWebIdentityResponse"
    let make ?credentials =
      fun ?subjectFromWebIdentityToken ->
        fun ?assumedRoleUser ->
          fun ?packedPolicySize ->
            fun ?provider ->
              fun ?audience ->
                fun ?sourceIdentity ->
                  fun () ->
                    {
                      assumeRoleWithWebIdentityResult =
                        {
                          credentials;
                          subjectFromWebIdentityToken;
                          assumedRoleUser;
                          packedPolicySize;
                          provider;
                          audience;
                          sourceIdentity
                        };
                      responseMetaData = ()
                    }
    let error_of_json name json =
      match name with
      | "ExpiredTokenException" ->
          `ExpiredTokenException (ExpiredTokenException.of_json json)
      | "IDPCommunicationErrorException" ->
          `IDPCommunicationErrorException
            (IDPCommunicationErrorException.of_json json)
      | "IDPRejectedClaimException" ->
          `IDPRejectedClaimException (IDPRejectedClaimException.of_json json)
      | "InvalidIdentityTokenException" ->
          `InvalidIdentityTokenException
            (InvalidIdentityTokenException.of_json json)
      | "MalformedPolicyDocumentException" ->
          `MalformedPolicyDocumentException
            (MalformedPolicyDocumentException.of_json json)
      | "PackedPolicyTooLargeException" ->
          `PackedPolicyTooLargeException
            (PackedPolicyTooLargeException.of_json json)
      | "RegionDisabledException" ->
          `RegionDisabledException (RegionDisabledException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "ExpiredTokenException" ->
          `ExpiredTokenException (ExpiredTokenException.of_xml xml)
      | "IDPCommunicationErrorException" ->
          `IDPCommunicationErrorException
            (IDPCommunicationErrorException.of_xml xml)
      | "IDPRejectedClaimException" ->
          `IDPRejectedClaimException (IDPRejectedClaimException.of_xml xml)
      | "InvalidIdentityTokenException" ->
          `InvalidIdentityTokenException
            (InvalidIdentityTokenException.of_xml xml)
      | "MalformedPolicyDocumentException" ->
          `MalformedPolicyDocumentException
            (MalformedPolicyDocumentException.of_xml xml)
      | "PackedPolicyTooLargeException" ->
          `PackedPolicyTooLargeException
            (PackedPolicyTooLargeException.of_xml xml)
      | "RegionDisabledException" ->
          `RegionDisabledException (RegionDisabledException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `ExpiredTokenException e ->
          `Assoc
            [("error", (`String "ExpiredTokenException"));
            ("details", (ExpiredTokenException.to_json e))]
      | `IDPCommunicationErrorException e ->
          `Assoc
            [("error", (`String "IDPCommunicationErrorException"));
            ("details", (IDPCommunicationErrorException.to_json e))]
      | `IDPRejectedClaimException e ->
          `Assoc
            [("error", (`String "IDPRejectedClaimException"));
            ("details", (IDPRejectedClaimException.to_json e))]
      | `InvalidIdentityTokenException e ->
          `Assoc
            [("error", (`String "InvalidIdentityTokenException"));
            ("details", (InvalidIdentityTokenException.to_json e))]
      | `MalformedPolicyDocumentException e ->
          `Assoc
            [("error", (`String "MalformedPolicyDocumentException"));
            ("details", (MalformedPolicyDocumentException.to_json e))]
      | `PackedPolicyTooLargeException e ->
          `Assoc
            [("error", (`String "PackedPolicyTooLargeException"));
            ("details", (PackedPolicyTooLargeException.to_json e))]
      | `RegionDisabledException e ->
          `Assoc
            [("error", (`String "RegionDisabledException"));
            ("details", (RegionDisabledException.to_json e))]
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let to_value t =
      let x = t.assumeRoleWithWebIdentityResult in
      structure_to_wrapped_value
        [("Credentials", (Option.map x.credentials ~f:Credentials.to_value));
        ("SubjectFromWebIdentityToken",
          (Option.map x.subjectFromWebIdentityToken
             ~f:WebIdentitySubjectType.to_value));
        ("AssumedRoleUser",
          (Option.map x.assumedRoleUser ~f:AssumedRoleUser.to_value));
        ("PackedPolicySize",
          (Option.map x.packedPolicySize ~f:NonNegativeIntegerType.to_value));
        ("Provider", (Option.map x.provider ~f:Issuer.to_value));
        ("Audience", (Option.map x.audience ~f:Audience.to_value));
        ("SourceIdentity",
          (Option.map x.sourceIdentity ~f:SourceIdentityType.to_value))]
        ~wrapper:"AssumeRoleWithWebIdentityResult"
        ~response:"ResponseMetaData"
    let to_query v = to_query to_value v
    let of_xml t =
      let xml_arg0 =
        Xml.child_exn ~context:context_ t "AssumeRoleWithWebIdentityResult" in
      let sourceIdentity =
        (Option.map ~f:SourceIdentityType.of_xml)
          (Xml.child xml_arg0 "SourceIdentity") in
      let audience =
        (Option.map ~f:Audience.of_xml) (Xml.child xml_arg0 "Audience") in
      let provider =
        (Option.map ~f:Issuer.of_xml) (Xml.child xml_arg0 "Provider") in
      let packedPolicySize =
        (Option.map ~f:NonNegativeIntegerType.of_xml)
          (Xml.child xml_arg0 "PackedPolicySize") in
      let assumedRoleUser =
        (Option.map ~f:AssumedRoleUser.of_xml)
          (Xml.child xml_arg0 "AssumedRoleUser") in
      let subjectFromWebIdentityToken =
        (Option.map ~f:WebIdentitySubjectType.of_xml)
          (Xml.child xml_arg0 "SubjectFromWebIdentityToken") in
      let credentials =
        (Option.map ~f:Credentials.of_xml) (Xml.child xml_arg0 "Credentials") in
      make ?sourceIdentity ?audience ?provider ?packedPolicySize
        ?assumedRoleUser ?subjectFromWebIdentityToken ?credentials ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let sourceIdentity =
        field_map json__ "SourceIdentity" SourceIdentityType.of_json in
      let audience = field_map json__ "Audience" Audience.of_json in
      let provider = field_map json__ "Provider" Issuer.of_json in
      let packedPolicySize =
        field_map json__ "PackedPolicySize" NonNegativeIntegerType.of_json in
      let assumedRoleUser =
        field_map json__ "AssumedRoleUser" AssumedRoleUser.of_json in
      let subjectFromWebIdentityToken =
        field_map json__ "SubjectFromWebIdentityToken"
          WebIdentitySubjectType.of_json in
      let credentials = field_map json__ "Credentials" Credentials.of_json in
      make ?sourceIdentity ?audience ?provider ?packedPolicySize
        ?assumedRoleUser ?subjectFromWebIdentityToken ?credentials ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Contains the response to a successful AssumeRoleWithWebIdentity request, including temporary Amazon Web Services credentials that can be used to make Amazon Web Services requests."]
module AssumeRoleWithWebIdentityRequest =
  struct
    type nonrec t =
      {
      roleArn: ArnType.t
        [@ocaml.doc
          "The Amazon Resource Name (ARN) of the role that the caller is assuming. Additional considerations apply to Amazon Cognito identity pools that assume cross-account IAM roles. The trust policies of these roles must accept the cognito-identity.amazonaws.com service principal and must contain the cognito-identity.amazonaws.com:aud condition key to restrict role assumption to users from your intended identity pools. A policy that trusts Amazon Cognito identity pools without this condition creates a risk that a user from an unintended identity pool can assume the role. For more information, see Trust policies for IAM roles in Basic (Classic) authentication in the Amazon Cognito Developer Guide."];
      roleSessionName: RoleSessionNameType.t
        [@ocaml.doc
          "An identifier for the assumed role session. Typically, you pass the name or identifier that is associated with the user who is using your application. That way, the temporary security credentials that your application will use are associated with that user. This session name is included as part of the ARN and assumed role ID in the AssumedRoleUser response element. For security purposes, administrators can view this field in CloudTrail logs to help identify who performed an action in Amazon Web Services. Your administrator might require that you specify your user name as the session name when you assume the role. For more information, see sts:RoleSessionName . The regex used to validate this parameter is a string of characters consisting of upper- and lower-case alphanumeric characters with no spaces. You can also include underscores or any of the following characters: =,.\\@-"];
      webIdentityToken: ClientTokenType.t
        [@ocaml.doc
          "The OAuth 2.0 access token or OpenID Connect ID token that is provided by the identity provider. Your application must get this token by authenticating the user who is using your application with a web identity provider before the application makes an AssumeRoleWithWebIdentity call. Timestamps in the token must be formatted as either an integer or a long integer. Tokens must be signed using either RSA keys (RS256, RS384, or RS512) or ECDSA keys (ES256, ES384, or ES512)."];
      providerId: UrlType.t option
        [@ocaml.doc
          "The fully qualified host component of the domain name of the OAuth 2.0 identity provider. Do not specify this value for an OpenID Connect identity provider. Currently www.amazon.com and graph.facebook.com are the only supported identity providers for OAuth 2.0 access tokens. Do not include URL schemes and port numbers. Do not specify this value for OpenID Connect ID tokens."];
      policyArns: PolicyDescriptorListType.t option
        [@ocaml.doc
          "The Amazon Resource Names (ARNs) of the IAM managed policies that you want to use as managed session policies. The policies must exist in the same account as the role. This parameter is optional. You can provide up to 10 managed policy ARNs. However, the plaintext that you use for both inline and managed session policies can't exceed 2,048 characters. For more information about ARNs, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces in the Amazon Web Services General Reference. An Amazon Web Services conversion compresses the passed inline session policy, managed policy ARNs, and session tags into a packed binary format that has a separate limit. Your request can fail for this limit even if your plaintext meets the other requirements. The PackedPolicySize response element indicates by percentage how close the policies and tags for your request are to the upper size limit. Passing policies to this operation returns new temporary credentials. The resulting session's permissions are the intersection of the role's identity-based policy and the session policies. You can use the role's temporary credentials in subsequent Amazon Web Services API calls to access resources in the account that owns the role. You cannot use session policies to grant more permissions than those allowed by the identity-based policy of the role that is being assumed. For more information, see Session Policies in the IAM User Guide."];
      policy: SessionPolicyDocumentType.t option
        [@ocaml.doc
          "An IAM policy in JSON format that you want to use as an inline session policy. This parameter is optional. Passing policies to this operation returns new temporary credentials. The resulting session's permissions are the intersection of the role's identity-based policy and the session policies. You can use the role's temporary credentials in subsequent Amazon Web Services API calls to access resources in the account that owns the role. You cannot use session policies to grant more permissions than those allowed by the identity-based policy of the role that is being assumed. For more information, see Session Policies in the IAM User Guide. The plaintext that you use for both inline and managed session policies can't exceed 2,048 characters. The JSON policy characters can be any ASCII character from the space character to the end of the valid character list (\\u0020 through \\u00FF). It can also include the tab (\\u0009), linefeed (\\u000A), and carriage return (\\u000D) characters. For more information about role session permissions, see Session policies. An Amazon Web Services conversion compresses the passed inline session policy, managed policy ARNs, and session tags into a packed binary format that has a separate limit. Your request can fail for this limit even if your plaintext meets the other requirements. The PackedPolicySize response element indicates by percentage how close the policies and tags for your request are to the upper size limit."];
      durationSeconds: RoleDurationSecondsType.t option
        [@ocaml.doc
          "The duration, in seconds, of the role session. The value can range from 900 seconds (15 minutes) up to the maximum session duration setting for the role. This setting can have a value from 1 hour to 12 hours. If you specify a value higher than this setting, the operation fails. For example, if you specify a session duration of 12 hours, but your administrator set the maximum session duration to 6 hours, your operation fails. To learn how to view the maximum value for your role, see View the Maximum Session Duration Setting for a Role in the IAM User Guide. By default, the value is set to 3600 seconds. The DurationSeconds parameter is separate from the duration of a console session that you might request using the returned credentials. The request to the federation endpoint for a console sign-in token takes a SessionDuration parameter that specifies the maximum length of the console session. For more information, see Creating a URL that Enables Federated Users to Access the Amazon Web Services Management Console in the IAM User Guide."]}
    let context_ = "AssumeRoleWithWebIdentityRequest"
    let make ?providerId =
      fun ?policyArns ->
        fun ?policy ->
          fun ?durationSeconds ->
            fun ~roleArn ->
              fun ~roleSessionName ->
                fun ~webIdentityToken ->
                  fun () ->
                    {
                      providerId;
                      policyArns;
                      policy;
                      durationSeconds;
                      roleArn;
                      roleSessionName;
                      webIdentityToken
                    }
    let to_value x =
      structure_to_value
        [("RoleArn", (Some (ArnType.to_value x.roleArn)));
        ("RoleSessionName",
          (Some (RoleSessionNameType.to_value x.roleSessionName)));
        ("WebIdentityToken",
          (Some (ClientTokenType.to_value x.webIdentityToken)));
        ("ProviderId", (Option.map x.providerId ~f:UrlType.to_value));
        ("PolicyArns",
          (Option.map x.policyArns ~f:PolicyDescriptorListType.to_value));
        ("Policy",
          (Option.map x.policy ~f:SessionPolicyDocumentType.to_value));
        ("DurationSeconds",
          (Option.map x.durationSeconds ~f:RoleDurationSecondsType.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let durationSeconds =
        (Option.map ~f:RoleDurationSecondsType.of_xml)
          (Xml.child xml_arg0 "DurationSeconds") in
      let policy =
        (Option.map ~f:SessionPolicyDocumentType.of_xml)
          (Xml.child xml_arg0 "Policy") in
      let policyArns =
        (Option.map ~f:PolicyDescriptorListType.of_xml)
          (Xml.child xml_arg0 "PolicyArns") in
      let providerId =
        (Option.map ~f:UrlType.of_xml) (Xml.child xml_arg0 "ProviderId") in
      let webIdentityToken =
        ClientTokenType.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "WebIdentityToken") in
      let roleSessionName =
        RoleSessionNameType.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "RoleSessionName") in
      let roleArn =
        ArnType.of_xml (Xml.child_exn ~context:context_ xml_arg0 "RoleArn") in
      make ?durationSeconds ?policy ?policyArns ?providerId ~webIdentityToken
        ~roleSessionName ~roleArn ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let durationSeconds =
        field_map json__ "DurationSeconds" RoleDurationSecondsType.of_json in
      let policy =
        field_map json__ "Policy" SessionPolicyDocumentType.of_json in
      let policyArns =
        field_map json__ "PolicyArns" PolicyDescriptorListType.of_json in
      let providerId = field_map json__ "ProviderId" UrlType.of_json in
      let webIdentityToken =
        field_map_exn json__ "WebIdentityToken" ClientTokenType.of_json in
      let roleSessionName =
        field_map_exn json__ "RoleSessionName" RoleSessionNameType.of_json in
      let roleArn = field_map_exn json__ "RoleArn" ArnType.of_json in
      make ?durationSeconds ?policy ?policyArns ?providerId ~webIdentityToken
        ~roleSessionName ~roleArn ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Returns a set of temporary security credentials for users who have been authenticated in a mobile or web application with a web identity provider. Example providers include the OAuth 2.0 providers Login with Amazon and Facebook, or any OpenID Connect-compatible identity provider such as Google or Amazon Cognito federated identities. For mobile applications, we recommend that you use Amazon Cognito. You can use Amazon Cognito with the Amazon Web Services SDK for iOS Developer Guide and the Amazon Web Services SDK for Android Developer Guide to uniquely identify a user. You can also supply the user with a consistent identity throughout the lifetime of an application. To learn more about Amazon Cognito, see Amazon Cognito identity pools in Amazon Cognito Developer Guide. Calling AssumeRoleWithWebIdentity does not require the use of Amazon Web Services security credentials. Therefore, you can distribute an application (for example, on mobile devices) that requests temporary security credentials without including long-term Amazon Web Services credentials in the application. You also don't need to deploy server-based proxy services that use long-term Amazon Web Services credentials. Instead, the identity of the caller is validated by using a token from the web identity provider. For a comparison of AssumeRoleWithWebIdentity with the other API operations that produce temporary credentials, see Requesting Temporary Security Credentials and Compare STS credentials in the IAM User Guide. The temporary security credentials returned by this API consist of an access key ID, a secret access key, and a security token. Applications can use these temporary security credentials to sign calls to Amazon Web Services service API operations. Session Duration By default, the temporary security credentials created by AssumeRoleWithWebIdentity last for one hour. However, you can use the optional DurationSeconds parameter to specify the duration of your session. You can provide a value from 900 seconds (15 minutes) up to the maximum session duration setting for the role. This setting can have a value from 1 hour to 12 hours. To learn how to view the maximum value for your role, see Update the maximum session duration for a role in the IAM User Guide. The maximum session duration limit applies when you use the AssumeRole* API operations or the assume-role* CLI commands. However the limit does not apply when you use those operations to create a console URL. For more information, see Using IAM Roles in the IAM User Guide. Permissions The temporary security credentials created by AssumeRoleWithWebIdentity can be used to make API calls to any Amazon Web Services service with the following exception: you cannot call the STS GetFederationToken or GetSessionToken API operations. (Optional) You can pass inline or managed session policies to this operation. You can pass a single JSON policy document to use as an inline session policy. You can also specify up to 10 managed policy Amazon Resource Names (ARNs) to use as managed session policies. The plaintext that you use for both inline and managed session policies can't exceed 2,048 characters. Passing policies to this operation returns new temporary credentials. The resulting session's permissions are the intersection of the role's identity-based policy and the session policies. You can use the role's temporary credentials in subsequent Amazon Web Services API calls to access resources in the account that owns the role. You cannot use session policies to grant more permissions than those allowed by the identity-based policy of the role that is being assumed. For more information, see Session Policies in the IAM User Guide. Tags (Optional) You can configure your IdP to pass attributes into your web identity token as session tags. Each session tag consists of a key name and an associated value. For more information about session tags, see Passing session tags using AssumeRoleWithWebIdentity in the IAM User Guide. You can pass up to 50 session tags. The plaintext session tag keys can\226\128\153t exceed 128 characters and the values can\226\128\153t exceed 256 characters. For these and additional limits, see IAM and STS Character Limits in the IAM User Guide. An Amazon Web Services conversion compresses the passed inline session policy, managed policy ARNs, and session tags into a packed binary format that has a separate limit. Your request can fail for this limit even if your plaintext meets the other requirements. The PackedPolicySize response element indicates by percentage how close the policies and tags for your request are to the upper size limit. You can pass a session tag with the same key as a tag that is attached to the role. When you do, the session tag overrides the role tag with the same key. An administrator must grant you the permissions necessary to pass session tags. The administrator can also create granular permissions to allow you to pass only specific session tags. For more information, see Tutorial: Using Tags for Attribute-Based Access Control in the IAM User Guide. You can set the session tags as transitive. Transitive tags persist during role chaining. For more information, see Chaining Roles with Session Tags in the IAM User Guide. Identities Before your application can call AssumeRoleWithWebIdentity, you must have an identity token from a supported identity provider and create a role that the application can assume. The role that your application assumes must trust the identity provider that is associated with the identity token. In other words, the identity provider must be specified in the role's trust policy. Calling AssumeRoleWithWebIdentity can result in an entry in your CloudTrail logs. The entry includes the Subject of the provided web identity token. We recommend that you avoid using any personally identifiable information (PII) in this field. For example, you could instead use a GUID or a pairwise identifier, as suggested in the OIDC specification. For more information about how to use OIDC federation and the AssumeRoleWithWebIdentity API, see the following resources: Using Web Identity Federation API Operations for Mobile Apps and Federation Through a Web-based Identity Provider. Amazon Web Services SDK for iOS Developer Guide and Amazon Web Services SDK for Android Developer Guide. These toolkits contain sample apps that show how to invoke the identity providers. The toolkits then show how to use the information from these providers to get and use temporary security credentials."]
module AssumeRoleWithSAMLResponse =
  struct
    type assumeRoleWithSAMLResult =
      {
      credentials: Credentials.t option
        [@ocaml.doc
          "The temporary security credentials, which include an access key ID, a secret access key, and a security (or session) token. The size of the security token that STS API operations return is not fixed. We strongly recommend that you make no assumptions about the maximum size."];
      assumedRoleUser: AssumedRoleUser.t option
        [@ocaml.doc
          "The identifiers for the temporary security credentials that the operation returns."];
      packedPolicySize: NonNegativeIntegerType.t option
        [@ocaml.doc
          "A percentage value that indicates the packed size of the session policies and session tags combined passed in the request. The request fails if the packed size is greater than 100 percent, which means the policies and tags exceeded the allowed space."];
      subject: Subject.t option
        [@ocaml.doc
          "The value of the NameID element in the Subject element of the SAML assertion."];
      subjectType: SubjectType.t option
        [@ocaml.doc
          "The format of the name ID, as defined by the Format attribute in the NameID element of the SAML assertion. Typical examples of the format are transient or persistent. If the format includes the prefix urn:oasis:names:tc:SAML:2.0:nameid-format, that prefix is removed. For example, urn:oasis:names:tc:SAML:2.0:nameid-format:transient is returned as transient. If the format includes any other prefix, the format is returned with no modifications."];
      issuer: Issuer.t option
        [@ocaml.doc "The value of the Issuer element of the SAML assertion."];
      audience: Audience.t option
        [@ocaml.doc
          "The value of the Recipient attribute of the SubjectConfirmationData element of the SAML assertion."];
      nameQualifier: NameQualifier.t option
        [@ocaml.doc
          "A hash value based on the concatenation of the following: The Issuer response value. The Amazon Web Services account ID. The friendly name (the last part of the ARN) of the SAML provider in IAM. The combination of NameQualifier and Subject can be used to uniquely identify a user. The following pseudocode shows how the hash value is calculated: BASE64 ( SHA1 ( \"https://example.com/saml\" + \"123456789012\" + \"/MySAMLIdP\" ) )"];
      sourceIdentity: SourceIdentityType.t option
        [@ocaml.doc
          "The value in the SourceIdentity attribute in the SAML assertion. The source identity value persists across chained role sessions. You can require users to set a source identity value when they assume a role. You do this by using the sts:SourceIdentity condition key in a role trust policy. That way, actions that are taken with the role are associated with that user. After the source identity is set, the value cannot be changed. It is present in the request for all actions that are taken by the role and persists across chained role sessions. You can configure your SAML identity provider to use an attribute associated with your users, like user name or email, as the source identity when calling AssumeRoleWithSAML. You do this by adding an attribute to the SAML assertion. For more information about using source identity, see Monitor and control actions taken with assumed roles in the IAM User Guide. The regex used to validate this parameter is a string of characters consisting of upper- and lower-case alphanumeric characters with no spaces. You can also include underscores or any of the following characters: =,.\\@-"]}
    and responseMetaData = unit
    and t =
      {
      assumeRoleWithSAMLResult: assumeRoleWithSAMLResult ;
      responseMetaData: responseMetaData }
    type error =
      [ `ExpiredTokenException of ExpiredTokenException.t 
      | `IDPRejectedClaimException of IDPRejectedClaimException.t 
      | `InvalidIdentityTokenException of InvalidIdentityTokenException.t 
      | `MalformedPolicyDocumentException of
          MalformedPolicyDocumentException.t 
      | `PackedPolicyTooLargeException of PackedPolicyTooLargeException.t 
      | `RegionDisabledException of RegionDisabledException.t 
      | `Unknown_operation_error of (string * string option) ]
    let context_ = "AssumeRoleWithSAMLResponse"
    let make ?credentials =
      fun ?assumedRoleUser ->
        fun ?packedPolicySize ->
          fun ?subject ->
            fun ?subjectType ->
              fun ?issuer ->
                fun ?audience ->
                  fun ?nameQualifier ->
                    fun ?sourceIdentity ->
                      fun () ->
                        {
                          assumeRoleWithSAMLResult =
                            {
                              credentials;
                              assumedRoleUser;
                              packedPolicySize;
                              subject;
                              subjectType;
                              issuer;
                              audience;
                              nameQualifier;
                              sourceIdentity
                            };
                          responseMetaData = ()
                        }
    let error_of_json name json =
      match name with
      | "ExpiredTokenException" ->
          `ExpiredTokenException (ExpiredTokenException.of_json json)
      | "IDPRejectedClaimException" ->
          `IDPRejectedClaimException (IDPRejectedClaimException.of_json json)
      | "InvalidIdentityTokenException" ->
          `InvalidIdentityTokenException
            (InvalidIdentityTokenException.of_json json)
      | "MalformedPolicyDocumentException" ->
          `MalformedPolicyDocumentException
            (MalformedPolicyDocumentException.of_json json)
      | "PackedPolicyTooLargeException" ->
          `PackedPolicyTooLargeException
            (PackedPolicyTooLargeException.of_json json)
      | "RegionDisabledException" ->
          `RegionDisabledException (RegionDisabledException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "ExpiredTokenException" ->
          `ExpiredTokenException (ExpiredTokenException.of_xml xml)
      | "IDPRejectedClaimException" ->
          `IDPRejectedClaimException (IDPRejectedClaimException.of_xml xml)
      | "InvalidIdentityTokenException" ->
          `InvalidIdentityTokenException
            (InvalidIdentityTokenException.of_xml xml)
      | "MalformedPolicyDocumentException" ->
          `MalformedPolicyDocumentException
            (MalformedPolicyDocumentException.of_xml xml)
      | "PackedPolicyTooLargeException" ->
          `PackedPolicyTooLargeException
            (PackedPolicyTooLargeException.of_xml xml)
      | "RegionDisabledException" ->
          `RegionDisabledException (RegionDisabledException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `ExpiredTokenException e ->
          `Assoc
            [("error", (`String "ExpiredTokenException"));
            ("details", (ExpiredTokenException.to_json e))]
      | `IDPRejectedClaimException e ->
          `Assoc
            [("error", (`String "IDPRejectedClaimException"));
            ("details", (IDPRejectedClaimException.to_json e))]
      | `InvalidIdentityTokenException e ->
          `Assoc
            [("error", (`String "InvalidIdentityTokenException"));
            ("details", (InvalidIdentityTokenException.to_json e))]
      | `MalformedPolicyDocumentException e ->
          `Assoc
            [("error", (`String "MalformedPolicyDocumentException"));
            ("details", (MalformedPolicyDocumentException.to_json e))]
      | `PackedPolicyTooLargeException e ->
          `Assoc
            [("error", (`String "PackedPolicyTooLargeException"));
            ("details", (PackedPolicyTooLargeException.to_json e))]
      | `RegionDisabledException e ->
          `Assoc
            [("error", (`String "RegionDisabledException"));
            ("details", (RegionDisabledException.to_json e))]
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let to_value t =
      let x = t.assumeRoleWithSAMLResult in
      structure_to_wrapped_value
        [("Credentials", (Option.map x.credentials ~f:Credentials.to_value));
        ("AssumedRoleUser",
          (Option.map x.assumedRoleUser ~f:AssumedRoleUser.to_value));
        ("PackedPolicySize",
          (Option.map x.packedPolicySize ~f:NonNegativeIntegerType.to_value));
        ("Subject", (Option.map x.subject ~f:Subject.to_value));
        ("SubjectType", (Option.map x.subjectType ~f:SubjectType.to_value));
        ("Issuer", (Option.map x.issuer ~f:Issuer.to_value));
        ("Audience", (Option.map x.audience ~f:Audience.to_value));
        ("NameQualifier",
          (Option.map x.nameQualifier ~f:NameQualifier.to_value));
        ("SourceIdentity",
          (Option.map x.sourceIdentity ~f:SourceIdentityType.to_value))]
        ~wrapper:"AssumeRoleWithSAMLResult" ~response:"ResponseMetaData"
    let to_query v = to_query to_value v
    let of_xml t =
      let xml_arg0 =
        Xml.child_exn ~context:context_ t "AssumeRoleWithSAMLResult" in
      let sourceIdentity =
        (Option.map ~f:SourceIdentityType.of_xml)
          (Xml.child xml_arg0 "SourceIdentity") in
      let nameQualifier =
        (Option.map ~f:NameQualifier.of_xml)
          (Xml.child xml_arg0 "NameQualifier") in
      let audience =
        (Option.map ~f:Audience.of_xml) (Xml.child xml_arg0 "Audience") in
      let issuer =
        (Option.map ~f:Issuer.of_xml) (Xml.child xml_arg0 "Issuer") in
      let subjectType =
        (Option.map ~f:SubjectType.of_xml) (Xml.child xml_arg0 "SubjectType") in
      let subject =
        (Option.map ~f:Subject.of_xml) (Xml.child xml_arg0 "Subject") in
      let packedPolicySize =
        (Option.map ~f:NonNegativeIntegerType.of_xml)
          (Xml.child xml_arg0 "PackedPolicySize") in
      let assumedRoleUser =
        (Option.map ~f:AssumedRoleUser.of_xml)
          (Xml.child xml_arg0 "AssumedRoleUser") in
      let credentials =
        (Option.map ~f:Credentials.of_xml) (Xml.child xml_arg0 "Credentials") in
      make ?sourceIdentity ?nameQualifier ?audience ?issuer ?subjectType
        ?subject ?packedPolicySize ?assumedRoleUser ?credentials ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let sourceIdentity =
        field_map json__ "SourceIdentity" SourceIdentityType.of_json in
      let nameQualifier =
        field_map json__ "NameQualifier" NameQualifier.of_json in
      let audience = field_map json__ "Audience" Audience.of_json in
      let issuer = field_map json__ "Issuer" Issuer.of_json in
      let subjectType = field_map json__ "SubjectType" SubjectType.of_json in
      let subject = field_map json__ "Subject" Subject.of_json in
      let packedPolicySize =
        field_map json__ "PackedPolicySize" NonNegativeIntegerType.of_json in
      let assumedRoleUser =
        field_map json__ "AssumedRoleUser" AssumedRoleUser.of_json in
      let credentials = field_map json__ "Credentials" Credentials.of_json in
      make ?sourceIdentity ?nameQualifier ?audience ?issuer ?subjectType
        ?subject ?packedPolicySize ?assumedRoleUser ?credentials ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Contains the response to a successful AssumeRoleWithSAML request, including temporary Amazon Web Services credentials that can be used to make Amazon Web Services requests."]
module AssumeRoleWithSAMLRequest =
  struct
    type nonrec t =
      {
      roleArn: ArnType.t
        [@ocaml.doc
          "The Amazon Resource Name (ARN) of the role that the caller is assuming."];
      principalArn: ArnType.t
        [@ocaml.doc
          "The Amazon Resource Name (ARN) of the SAML provider in IAM that describes the IdP."];
      sAMLAssertion: SAMLAssertionType.t
        [@ocaml.doc
          "The base64 encoded SAML authentication response provided by the IdP. For more information, see Configuring a Relying Party and Adding Claims in the IAM User Guide."];
      policyArns: PolicyDescriptorListType.t option
        [@ocaml.doc
          "The Amazon Resource Names (ARNs) of the IAM managed policies that you want to use as managed session policies. The policies must exist in the same account as the role. This parameter is optional. You can provide up to 10 managed policy ARNs. However, the plaintext that you use for both inline and managed session policies can't exceed 2,048 characters. For more information about ARNs, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces in the Amazon Web Services General Reference. An Amazon Web Services conversion compresses the passed inline session policy, managed policy ARNs, and session tags into a packed binary format that has a separate limit. Your request can fail for this limit even if your plaintext meets the other requirements. The PackedPolicySize response element indicates by percentage how close the policies and tags for your request are to the upper size limit. Passing policies to this operation returns new temporary credentials. The resulting session's permissions are the intersection of the role's identity-based policy and the session policies. You can use the role's temporary credentials in subsequent Amazon Web Services API calls to access resources in the account that owns the role. You cannot use session policies to grant more permissions than those allowed by the identity-based policy of the role that is being assumed. For more information, see Session Policies in the IAM User Guide."];
      policy: SessionPolicyDocumentType.t option
        [@ocaml.doc
          "An IAM policy in JSON format that you want to use as an inline session policy. This parameter is optional. Passing policies to this operation returns new temporary credentials. The resulting session's permissions are the intersection of the role's identity-based policy and the session policies. You can use the role's temporary credentials in subsequent Amazon Web Services API calls to access resources in the account that owns the role. You cannot use session policies to grant more permissions than those allowed by the identity-based policy of the role that is being assumed. For more information, see Session Policies in the IAM User Guide. The plaintext that you use for both inline and managed session policies can't exceed 2,048 characters. The JSON policy characters can be any ASCII character from the space character to the end of the valid character list (\\u0020 through \\u00FF). It can also include the tab (\\u0009), linefeed (\\u000A), and carriage return (\\u000D) characters. For more information about role session permissions, see Session policies. An Amazon Web Services conversion compresses the passed inline session policy, managed policy ARNs, and session tags into a packed binary format that has a separate limit. Your request can fail for this limit even if your plaintext meets the other requirements. The PackedPolicySize response element indicates by percentage how close the policies and tags for your request are to the upper size limit."];
      durationSeconds: RoleDurationSecondsType.t option
        [@ocaml.doc
          "The duration, in seconds, of the role session. Your role session lasts for the duration that you specify for the DurationSeconds parameter, or until the time specified in the SAML authentication response's SessionNotOnOrAfter value, whichever is shorter. You can provide a DurationSeconds value from 900 seconds (15 minutes) up to the maximum session duration setting for the role. This setting can have a value from 1 hour to 12 hours. If you specify a value higher than this setting, the operation fails. For example, if you specify a session duration of 12 hours, but your administrator set the maximum session duration to 6 hours, your operation fails. To learn how to view the maximum value for your role, see View the Maximum Session Duration Setting for a Role in the IAM User Guide. By default, the value is set to 3600 seconds. The DurationSeconds parameter is separate from the duration of a console session that you might request using the returned credentials. The request to the federation endpoint for a console sign-in token takes a SessionDuration parameter that specifies the maximum length of the console session. For more information, see Creating a URL that Enables Federated Users to Access the Amazon Web Services Management Console in the IAM User Guide."]}
    let context_ = "AssumeRoleWithSAMLRequest"
    let make ?policyArns =
      fun ?policy ->
        fun ?durationSeconds ->
          fun ~roleArn ->
            fun ~principalArn ->
              fun ~sAMLAssertion ->
                fun () ->
                  {
                    policyArns;
                    policy;
                    durationSeconds;
                    roleArn;
                    principalArn;
                    sAMLAssertion
                  }
    let to_value x =
      structure_to_value
        [("RoleArn", (Some (ArnType.to_value x.roleArn)));
        ("PrincipalArn", (Some (ArnType.to_value x.principalArn)));
        ("SAMLAssertion",
          (Some (SAMLAssertionType.to_value x.sAMLAssertion)));
        ("PolicyArns",
          (Option.map x.policyArns ~f:PolicyDescriptorListType.to_value));
        ("Policy",
          (Option.map x.policy ~f:SessionPolicyDocumentType.to_value));
        ("DurationSeconds",
          (Option.map x.durationSeconds ~f:RoleDurationSecondsType.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let durationSeconds =
        (Option.map ~f:RoleDurationSecondsType.of_xml)
          (Xml.child xml_arg0 "DurationSeconds") in
      let policy =
        (Option.map ~f:SessionPolicyDocumentType.of_xml)
          (Xml.child xml_arg0 "Policy") in
      let policyArns =
        (Option.map ~f:PolicyDescriptorListType.of_xml)
          (Xml.child xml_arg0 "PolicyArns") in
      let sAMLAssertion =
        SAMLAssertionType.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "SAMLAssertion") in
      let principalArn =
        ArnType.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "PrincipalArn") in
      let roleArn =
        ArnType.of_xml (Xml.child_exn ~context:context_ xml_arg0 "RoleArn") in
      make ?durationSeconds ?policy ?policyArns ~sAMLAssertion ~principalArn
        ~roleArn ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let durationSeconds =
        field_map json__ "DurationSeconds" RoleDurationSecondsType.of_json in
      let policy =
        field_map json__ "Policy" SessionPolicyDocumentType.of_json in
      let policyArns =
        field_map json__ "PolicyArns" PolicyDescriptorListType.of_json in
      let sAMLAssertion =
        field_map_exn json__ "SAMLAssertion" SAMLAssertionType.of_json in
      let principalArn = field_map_exn json__ "PrincipalArn" ArnType.of_json in
      let roleArn = field_map_exn json__ "RoleArn" ArnType.of_json in
      make ?durationSeconds ?policy ?policyArns ~sAMLAssertion ~principalArn
        ~roleArn ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Returns a set of temporary security credentials for users who have been authenticated via a SAML authentication response. This operation provides a mechanism for tying an enterprise identity store or directory to role-based Amazon Web Services access without user-specific credentials or configuration. For a comparison of AssumeRoleWithSAML with the other API operations that produce temporary credentials, see Requesting Temporary Security Credentials and Compare STS credentials in the IAM User Guide. The temporary security credentials returned by this operation consist of an access key ID, a secret access key, and a security token. Applications can use these temporary security credentials to sign calls to Amazon Web Services services. AssumeRoleWithSAML will not work on IAM Identity Center managed roles. These roles' names start with AWSReservedSSO_. Session Duration By default, the temporary security credentials created by AssumeRoleWithSAML last for one hour. However, you can use the optional DurationSeconds parameter to specify the duration of your session. Your role session lasts for the duration that you specify, or until the time specified in the SAML authentication response's SessionNotOnOrAfter value, whichever is shorter. You can provide a DurationSeconds value from 900 seconds (15 minutes) up to the maximum session duration setting for the role. This setting can have a value from 1 hour to 12 hours. To learn how to view the maximum value for your role, see View the Maximum Session Duration Setting for a Role in the IAM User Guide. The maximum session duration limit applies when you use the AssumeRole* API operations or the assume-role* CLI commands. However the limit does not apply when you use those operations to create a console URL. For more information, see Using IAM Roles in the IAM User Guide. Role chaining limits your CLI or Amazon Web Services API role session to a maximum of one hour. When you use the AssumeRole API operation to assume a role, you can specify the duration of your role session with the DurationSeconds parameter. You can specify a parameter value of up to 43200 seconds (12 hours), depending on the maximum session duration setting for your role. However, if you assume a role using role chaining and provide a DurationSeconds parameter value greater than one hour, the operation fails. Permissions The temporary security credentials created by AssumeRoleWithSAML can be used to make API calls to any Amazon Web Services service with the following exception: you cannot call the STS GetFederationToken or GetSessionToken API operations. (Optional) You can pass inline or managed session policies to this operation. You can pass a single JSON policy document to use as an inline session policy. You can also specify up to 10 managed policy Amazon Resource Names (ARNs) to use as managed session policies. The plaintext that you use for both inline and managed session policies can't exceed 2,048 characters. Passing policies to this operation returns new temporary credentials. The resulting session's permissions are the intersection of the role's identity-based policy and the session policies. You can use the role's temporary credentials in subsequent Amazon Web Services API calls to access resources in the account that owns the role. You cannot use session policies to grant more permissions than those allowed by the identity-based policy of the role that is being assumed. For more information, see Session Policies in the IAM User Guide. Calling AssumeRoleWithSAML does not require the use of Amazon Web Services security credentials. The identity of the caller is validated by using keys in the metadata document that is uploaded for the SAML provider entity for your identity provider. Calling AssumeRoleWithSAML can result in an entry in your CloudTrail logs. The entry includes the value in the NameID element of the SAML assertion. We recommend that you use a NameIDType that is not associated with any personally identifiable information (PII). For example, you could instead use the persistent identifier (urn:oasis:names:tc:SAML:2.0:nameid-format:persistent). Tags (Optional) You can configure your IdP to pass attributes into your SAML assertion as session tags. Each session tag consists of a key name and an associated value. For more information about session tags, see Passing Session Tags in STS in the IAM User Guide. You can pass up to 50 session tags. The plaintext session tag keys can\226\128\153t exceed 128 characters and the values can\226\128\153t exceed 256 characters. For these and additional limits, see IAM and STS Character Limits in the IAM User Guide. An Amazon Web Services conversion compresses the passed inline session policy, managed policy ARNs, and session tags into a packed binary format that has a separate limit. Your request can fail for this limit even if your plaintext meets the other requirements. The PackedPolicySize response element indicates by percentage how close the policies and tags for your request are to the upper size limit. You can pass a session tag with the same key as a tag that is attached to the role. When you do, session tags override the role's tags with the same key. An administrator must grant you the permissions necessary to pass session tags. The administrator can also create granular permissions to allow you to pass only specific session tags. For more information, see Tutorial: Using Tags for Attribute-Based Access Control in the IAM User Guide. You can set the session tags as transitive. Transitive tags persist during role chaining. For more information, see Chaining Roles with Session Tags in the IAM User Guide. SAML Configuration Before your application can call AssumeRoleWithSAML, you must configure your SAML identity provider (IdP) to issue the claims required by Amazon Web Services. Additionally, you must use Identity and Access Management (IAM) to create a SAML provider entity in your Amazon Web Services account that represents your identity provider. You must also create an IAM role that specifies this SAML provider in its trust policy. For more information, see the following resources: About SAML 2.0-based Federation in the IAM User Guide. Creating SAML Identity Providers in the IAM User Guide. Configuring a Relying Party and Claims in the IAM User Guide. Creating a Role for SAML 2.0 Federation in the IAM User Guide."]
module AssumeRoleResponse =
  struct
    type assumeRoleResult =
      {
      credentials: Credentials.t option
        [@ocaml.doc
          "The temporary security credentials, which include an access key ID, a secret access key, and a security (or session) token. The size of the security token that STS API operations return is not fixed. We strongly recommend that you make no assumptions about the maximum size."];
      assumedRoleUser: AssumedRoleUser.t option
        [@ocaml.doc
          "The Amazon Resource Name (ARN) and the assumed role ID, which are identifiers that you can use to refer to the resulting temporary security credentials. For example, you can reference these credentials as a principal in a resource-based policy by using the ARN or assumed role ID. The ARN and ID include the RoleSessionName that you specified when you called AssumeRole."];
      packedPolicySize: NonNegativeIntegerType.t option
        [@ocaml.doc
          "A percentage value that indicates the packed size of the session policies and session tags combined passed in the request. The request fails if the packed size is greater than 100 percent, which means the policies and tags exceeded the allowed space."];
      sourceIdentity: SourceIdentityType.t option
        [@ocaml.doc
          "The source identity specified by the principal that is calling the AssumeRole operation. You can require users to specify a source identity when they assume a role. You do this by using the sts:SourceIdentity condition key in a role trust policy. You can use source identity information in CloudTrail logs to determine who took actions with a role. You can use the aws:SourceIdentity condition key to further control access to Amazon Web Services resources based on the value of source identity. For more information about using source identity, see Monitor and control actions taken with assumed roles in the IAM User Guide. The regex used to validate this parameter is a string of characters consisting of upper- and lower-case alphanumeric characters with no spaces. You can also include underscores or any of the following characters: =,.\\@-"]}
    and responseMetaData = unit
    and t =
      {
      assumeRoleResult: assumeRoleResult ;
      responseMetaData: responseMetaData }
    type error =
      [ `ExpiredTokenException of ExpiredTokenException.t 
      | `MalformedPolicyDocumentException of
          MalformedPolicyDocumentException.t 
      | `PackedPolicyTooLargeException of PackedPolicyTooLargeException.t 
      | `RegionDisabledException of RegionDisabledException.t 
      | `Unknown_operation_error of (string * string option) ]
    let context_ = "AssumeRoleResponse"
    let make ?credentials =
      fun ?assumedRoleUser ->
        fun ?packedPolicySize ->
          fun ?sourceIdentity ->
            fun () ->
              {
                assumeRoleResult =
                  {
                    credentials;
                    assumedRoleUser;
                    packedPolicySize;
                    sourceIdentity
                  };
                responseMetaData = ()
              }
    let error_of_json name json =
      match name with
      | "ExpiredTokenException" ->
          `ExpiredTokenException (ExpiredTokenException.of_json json)
      | "MalformedPolicyDocumentException" ->
          `MalformedPolicyDocumentException
            (MalformedPolicyDocumentException.of_json json)
      | "PackedPolicyTooLargeException" ->
          `PackedPolicyTooLargeException
            (PackedPolicyTooLargeException.of_json json)
      | "RegionDisabledException" ->
          `RegionDisabledException (RegionDisabledException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "ExpiredTokenException" ->
          `ExpiredTokenException (ExpiredTokenException.of_xml xml)
      | "MalformedPolicyDocumentException" ->
          `MalformedPolicyDocumentException
            (MalformedPolicyDocumentException.of_xml xml)
      | "PackedPolicyTooLargeException" ->
          `PackedPolicyTooLargeException
            (PackedPolicyTooLargeException.of_xml xml)
      | "RegionDisabledException" ->
          `RegionDisabledException (RegionDisabledException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `ExpiredTokenException e ->
          `Assoc
            [("error", (`String "ExpiredTokenException"));
            ("details", (ExpiredTokenException.to_json e))]
      | `MalformedPolicyDocumentException e ->
          `Assoc
            [("error", (`String "MalformedPolicyDocumentException"));
            ("details", (MalformedPolicyDocumentException.to_json e))]
      | `PackedPolicyTooLargeException e ->
          `Assoc
            [("error", (`String "PackedPolicyTooLargeException"));
            ("details", (PackedPolicyTooLargeException.to_json e))]
      | `RegionDisabledException e ->
          `Assoc
            [("error", (`String "RegionDisabledException"));
            ("details", (RegionDisabledException.to_json e))]
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let to_value t =
      let x = t.assumeRoleResult in
      structure_to_wrapped_value
        [("Credentials", (Option.map x.credentials ~f:Credentials.to_value));
        ("AssumedRoleUser",
          (Option.map x.assumedRoleUser ~f:AssumedRoleUser.to_value));
        ("PackedPolicySize",
          (Option.map x.packedPolicySize ~f:NonNegativeIntegerType.to_value));
        ("SourceIdentity",
          (Option.map x.sourceIdentity ~f:SourceIdentityType.to_value))]
        ~wrapper:"AssumeRoleResult" ~response:"ResponseMetaData"
    let to_query v = to_query to_value v
    let of_xml t =
      let xml_arg0 = Xml.child_exn ~context:context_ t "AssumeRoleResult" in
      let sourceIdentity =
        (Option.map ~f:SourceIdentityType.of_xml)
          (Xml.child xml_arg0 "SourceIdentity") in
      let packedPolicySize =
        (Option.map ~f:NonNegativeIntegerType.of_xml)
          (Xml.child xml_arg0 "PackedPolicySize") in
      let assumedRoleUser =
        (Option.map ~f:AssumedRoleUser.of_xml)
          (Xml.child xml_arg0 "AssumedRoleUser") in
      let credentials =
        (Option.map ~f:Credentials.of_xml) (Xml.child xml_arg0 "Credentials") in
      make ?sourceIdentity ?packedPolicySize ?assumedRoleUser ?credentials ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let sourceIdentity =
        field_map json__ "SourceIdentity" SourceIdentityType.of_json in
      let packedPolicySize =
        field_map json__ "PackedPolicySize" NonNegativeIntegerType.of_json in
      let assumedRoleUser =
        field_map json__ "AssumedRoleUser" AssumedRoleUser.of_json in
      let credentials = field_map json__ "Credentials" Credentials.of_json in
      make ?sourceIdentity ?packedPolicySize ?assumedRoleUser ?credentials ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Contains the response to a successful AssumeRole request, including temporary Amazon Web Services credentials that can be used to make Amazon Web Services requests."]
module AssumeRoleRequest =
  struct
    type nonrec t =
      {
      roleArn: ArnType.t
        [@ocaml.doc "The Amazon Resource Name (ARN) of the role to assume."];
      roleSessionName: RoleSessionNameType.t
        [@ocaml.doc
          "An identifier for the assumed role session. Use the role session name to uniquely identify a session when the same role is assumed by different principals or for different reasons. In cross-account scenarios, the role session name is visible to, and can be logged by the account that owns the role. The role session name is also used in the ARN of the assumed role principal. This means that subsequent cross-account API requests that use the temporary security credentials will expose the role session name to the external account in their CloudTrail logs. For security purposes, administrators can view this field in CloudTrail logs to help identify who performed an action in Amazon Web Services. Your administrator might require that you specify your user name as the session name when you assume the role. For more information, see sts:RoleSessionName . The regex used to validate this parameter is a string of characters consisting of upper- and lower-case alphanumeric characters with no spaces. You can also include underscores or any of the following characters: +=,.\\@-"];
      policyArns: PolicyDescriptorListType.t option
        [@ocaml.doc
          "The Amazon Resource Names (ARNs) of the IAM managed policies that you want to use as managed session policies. The policies must exist in the same account as the role. This parameter is optional. You can provide up to 10 managed policy ARNs. However, the plaintext that you use for both inline and managed session policies can't exceed 2,048 characters. For more information about ARNs, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces in the Amazon Web Services General Reference. An Amazon Web Services conversion compresses the passed inline session policy, managed policy ARNs, and session tags into a packed binary format that has a separate limit. Your request can fail for this limit even if your plaintext meets the other requirements. The PackedPolicySize response element indicates by percentage how close the policies and tags for your request are to the upper size limit. Passing policies to this operation returns new temporary credentials. The resulting session's permissions are the intersection of the role's identity-based policy and the session policies. You can use the role's temporary credentials in subsequent Amazon Web Services API calls to access resources in the account that owns the role. You cannot use session policies to grant more permissions than those allowed by the identity-based policy of the role that is being assumed. For more information, see Session Policies in the IAM User Guide."];
      policy: UnrestrictedSessionPolicyDocumentType.t option
        [@ocaml.doc
          "An IAM policy in JSON format that you want to use as an inline session policy. This parameter is optional. Passing policies to this operation returns new temporary credentials. The resulting session's permissions are the intersection of the role's identity-based policy and the session policies. You can use the role's temporary credentials in subsequent Amazon Web Services API calls to access resources in the account that owns the role. You cannot use session policies to grant more permissions than those allowed by the identity-based policy of the role that is being assumed. For more information, see Session Policies in the IAM User Guide. The plaintext that you use for both inline and managed session policies can't exceed 2,048 characters. The JSON policy characters can be any ASCII character from the space character to the end of the valid character list (\\u0020 through \\u00FF). It can also include the tab (\\u0009), linefeed (\\u000A), and carriage return (\\u000D) characters. An Amazon Web Services conversion compresses the passed inline session policy, managed policy ARNs, and session tags into a packed binary format that has a separate limit. Your request can fail for this limit even if your plaintext meets the other requirements. The PackedPolicySize response element indicates by percentage how close the policies and tags for your request are to the upper size limit. For more information about role session permissions, see Session policies."];
      durationSeconds: RoleDurationSecondsType.t option
        [@ocaml.doc
          "The duration, in seconds, of the role session. The value specified can range from 900 seconds (15 minutes) up to the maximum session duration set for the role. The maximum session duration setting can have a value from 1 hour to 12 hours. If you specify a value higher than this setting or the administrator setting (whichever is lower), the operation fails. For example, if you specify a session duration of 12 hours, but your administrator set the maximum session duration to 6 hours, your operation fails. Role chaining limits your Amazon Web Services CLI or Amazon Web Services API role session to a maximum of one hour. When you use the AssumeRole API operation to assume a role, you can specify the duration of your role session with the DurationSeconds parameter. You can specify a parameter value of up to 43200 seconds (12 hours), depending on the maximum session duration setting for your role. However, if you assume a role using role chaining and provide a DurationSeconds parameter value greater than one hour, the operation fails. To learn how to view the maximum value for your role, see Update the maximum session duration for a role. By default, the value is set to 3600 seconds. The DurationSeconds parameter is separate from the duration of a console session that you might request using the returned credentials. The request to the federation endpoint for a console sign-in token takes a SessionDuration parameter that specifies the maximum length of the console session. For more information, see Creating a URL that Enables Federated Users to Access the Amazon Web Services Management Console in the IAM User Guide."];
      tags: TagListType.t option
        [@ocaml.doc
          "A list of session tags that you want to pass. Each session tag consists of a key name and an associated value. For more information about session tags, see Tagging Amazon Web Services STS Sessions in the IAM User Guide. This parameter is optional. You can pass up to 50 session tags. The plaintext session tag keys can\226\128\153t exceed 128 characters, and the values can\226\128\153t exceed 256 characters. For these and additional limits, see IAM and STS Character Limits in the IAM User Guide. An Amazon Web Services conversion compresses the passed inline session policy, managed policy ARNs, and session tags into a packed binary format that has a separate limit. Your request can fail for this limit even if your plaintext meets the other requirements. The PackedPolicySize response element indicates by percentage how close the policies and tags for your request are to the upper size limit. You can pass a session tag with the same key as a tag that is already attached to the role. When you do, session tags override a role tag with the same key. Tag key\226\128\147value pairs are not case sensitive, but case is preserved. This means that you cannot have separate Department and department tag keys. Assume that the role has the Department=Marketing tag and you pass the department=engineering session tag. Department and department are not saved as separate tags, and the session tag passed in the request takes precedence over the role tag. Additionally, if you used temporary credentials to perform this operation, the new session inherits any transitive session tags from the calling session. If you pass a session tag with the same key as an inherited tag, the operation fails. To view the inherited tags for a session, see the CloudTrail logs. For more information, see Viewing Session Tags in CloudTrail in the IAM User Guide."];
      transitiveTagKeys: TagKeyListType.t option
        [@ocaml.doc
          "A list of keys for session tags that you want to set as transitive. If you set a tag key as transitive, the corresponding key and value passes to subsequent sessions in a role chain. For more information, see Chaining Roles with Session Tags in the IAM User Guide. This parameter is optional. The transitive status of a session tag does not impact its packed binary size. If you choose not to specify a transitive tag key, then no tags are passed from this session to any subsequent sessions."];
      externalId: ExternalIdType.t option
        [@ocaml.doc
          "A unique identifier that might be required when you assume a role in another account. If the administrator of the account to which the role belongs provided you with an external ID, then provide that value in the ExternalId parameter. This value can be any string, such as a passphrase or account number. A cross-account role is usually set up to trust everyone in an account. Therefore, the administrator of the trusting account might send an external ID to the administrator of the trusted account. That way, only someone with the ID can assume the role, rather than everyone in the account. For more information about the external ID, see How to Use an External ID When Granting Access to Your Amazon Web Services Resources to a Third Party in the IAM User Guide. The regex used to validate this parameter is a string of characters consisting of upper- and lower-case alphanumeric characters with no spaces. You can also include underscores or any of the following characters: +=,.\\@:\\/-"];
      serialNumber: SerialNumberType.t option
        [@ocaml.doc
          "The identification number of the MFA device that is associated with the user who is making the AssumeRole call. Specify this value if the trust policy of the role being assumed includes a condition that requires MFA authentication. The value is either the serial number for a hardware device (such as GAHT12345678) or an Amazon Resource Name (ARN) for a virtual device (such as arn:aws:iam::123456789012:mfa/user). The regex used to validate this parameter is a string of characters consisting of upper- and lower-case alphanumeric characters with no spaces. You can also include underscores or any of the following characters: +=/:,.\\@-"];
      tokenCode: TokenCodeType.t option
        [@ocaml.doc
          "The value provided by the MFA device, if the trust policy of the role being assumed requires MFA. (In other words, if the policy includes a condition that tests for MFA). If the role being assumed requires MFA and if the TokenCode value is missing or expired, the AssumeRole call returns an \"access denied\" error. The format for this parameter, as described by its regex pattern, is a sequence of six numeric digits."];
      sourceIdentity: SourceIdentityType.t option
        [@ocaml.doc
          "The source identity specified by the principal that is calling the AssumeRole operation. The source identity value persists across chained role sessions. You can require users to specify a source identity when they assume a role. You do this by using the sts:SourceIdentity condition key in a role trust policy. You can use source identity information in CloudTrail logs to determine who took actions with a role. You can use the aws:SourceIdentity condition key to further control access to Amazon Web Services resources based on the value of source identity. For more information about using source identity, see Monitor and control actions taken with assumed roles in the IAM User Guide. The regex used to validate this parameter is a string of characters consisting of upper- and lower-case alphanumeric characters with no spaces. You can also include underscores or any of the following characters: +=,.\\@-. You cannot use a value that begins with the text aws:. This prefix is reserved for Amazon Web Services internal use."];
      providedContexts: ProvidedContextsListType.t option
        [@ocaml.doc
          "A list of previously acquired trusted context assertions in the format of a JSON array. The trusted context assertion is signed and encrypted by Amazon Web Services STS. The following is an example of a ProvidedContext value that includes a single trusted context assertion and the ARN of the context provider from which the trusted context assertion was generated. \\[\\{\"ProviderArn\":\"arn:aws:iam::aws:contextProvider/IdentityCenter\",\"ContextAssertion\":\"trusted-context-assertion\"\\}\\]"]}
    let context_ = "AssumeRoleRequest"
    let make ?policyArns =
      fun ?policy ->
        fun ?durationSeconds ->
          fun ?tags ->
            fun ?transitiveTagKeys ->
              fun ?externalId ->
                fun ?serialNumber ->
                  fun ?tokenCode ->
                    fun ?sourceIdentity ->
                      fun ?providedContexts ->
                        fun ~roleArn ->
                          fun ~roleSessionName ->
                            fun () ->
                              {
                                policyArns;
                                policy;
                                durationSeconds;
                                tags;
                                transitiveTagKeys;
                                externalId;
                                serialNumber;
                                tokenCode;
                                sourceIdentity;
                                providedContexts;
                                roleArn;
                                roleSessionName
                              }
    let to_value x =
      structure_to_value
        [("RoleArn", (Some (ArnType.to_value x.roleArn)));
        ("RoleSessionName",
          (Some (RoleSessionNameType.to_value x.roleSessionName)));
        ("PolicyArns",
          (Option.map x.policyArns ~f:PolicyDescriptorListType.to_value));
        ("Policy",
          (Option.map x.policy
             ~f:UnrestrictedSessionPolicyDocumentType.to_value));
        ("DurationSeconds",
          (Option.map x.durationSeconds ~f:RoleDurationSecondsType.to_value));
        ("Tags", (Option.map x.tags ~f:TagListType.to_value));
        ("TransitiveTagKeys",
          (Option.map x.transitiveTagKeys ~f:TagKeyListType.to_value));
        ("ExternalId", (Option.map x.externalId ~f:ExternalIdType.to_value));
        ("SerialNumber",
          (Option.map x.serialNumber ~f:SerialNumberType.to_value));
        ("TokenCode", (Option.map x.tokenCode ~f:TokenCodeType.to_value));
        ("SourceIdentity",
          (Option.map x.sourceIdentity ~f:SourceIdentityType.to_value));
        ("ProvidedContexts",
          (Option.map x.providedContexts ~f:ProvidedContextsListType.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let providedContexts =
        (Option.map ~f:ProvidedContextsListType.of_xml)
          (Xml.child xml_arg0 "ProvidedContexts") in
      let sourceIdentity =
        (Option.map ~f:SourceIdentityType.of_xml)
          (Xml.child xml_arg0 "SourceIdentity") in
      let tokenCode =
        (Option.map ~f:TokenCodeType.of_xml) (Xml.child xml_arg0 "TokenCode") in
      let serialNumber =
        (Option.map ~f:SerialNumberType.of_xml)
          (Xml.child xml_arg0 "SerialNumber") in
      let externalId =
        (Option.map ~f:ExternalIdType.of_xml)
          (Xml.child xml_arg0 "ExternalId") in
      let transitiveTagKeys =
        (Option.map ~f:TagKeyListType.of_xml)
          (Xml.child xml_arg0 "TransitiveTagKeys") in
      let tags =
        (Option.map ~f:TagListType.of_xml) (Xml.child xml_arg0 "Tags") in
      let durationSeconds =
        (Option.map ~f:RoleDurationSecondsType.of_xml)
          (Xml.child xml_arg0 "DurationSeconds") in
      let policy =
        (Option.map ~f:UnrestrictedSessionPolicyDocumentType.of_xml)
          (Xml.child xml_arg0 "Policy") in
      let policyArns =
        (Option.map ~f:PolicyDescriptorListType.of_xml)
          (Xml.child xml_arg0 "PolicyArns") in
      let roleSessionName =
        RoleSessionNameType.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "RoleSessionName") in
      let roleArn =
        ArnType.of_xml (Xml.child_exn ~context:context_ xml_arg0 "RoleArn") in
      make ?providedContexts ?sourceIdentity ?tokenCode ?serialNumber
        ?externalId ?transitiveTagKeys ?tags ?durationSeconds ?policy
        ?policyArns ~roleSessionName ~roleArn ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let providedContexts =
        field_map json__ "ProvidedContexts" ProvidedContextsListType.of_json in
      let sourceIdentity =
        field_map json__ "SourceIdentity" SourceIdentityType.of_json in
      let tokenCode = field_map json__ "TokenCode" TokenCodeType.of_json in
      let serialNumber =
        field_map json__ "SerialNumber" SerialNumberType.of_json in
      let externalId = field_map json__ "ExternalId" ExternalIdType.of_json in
      let transitiveTagKeys =
        field_map json__ "TransitiveTagKeys" TagKeyListType.of_json in
      let tags = field_map json__ "Tags" TagListType.of_json in
      let durationSeconds =
        field_map json__ "DurationSeconds" RoleDurationSecondsType.of_json in
      let policy =
        field_map json__ "Policy"
          UnrestrictedSessionPolicyDocumentType.of_json in
      let policyArns =
        field_map json__ "PolicyArns" PolicyDescriptorListType.of_json in
      let roleSessionName =
        field_map_exn json__ "RoleSessionName" RoleSessionNameType.of_json in
      let roleArn = field_map_exn json__ "RoleArn" ArnType.of_json in
      make ?providedContexts ?sourceIdentity ?tokenCode ?serialNumber
        ?externalId ?transitiveTagKeys ?tags ?durationSeconds ?policy
        ?policyArns ~roleSessionName ~roleArn ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Returns a set of temporary security credentials that you can use to access Amazon Web Services resources. These temporary credentials consist of an access key ID, a secret access key, and a security token. Typically, you use AssumeRole within your account or for cross-account access. For a comparison of AssumeRole with other API operations that produce temporary credentials, see Requesting Temporary Security Credentials and Compare STS credentials in the IAM User Guide. Permissions The temporary security credentials created by AssumeRole can be used to make API calls to any Amazon Web Services service with the following exception: You cannot call the Amazon Web Services STS GetFederationToken or GetSessionToken API operations. (Optional) You can pass inline or managed session policies to this operation. You can pass a single JSON policy document to use as an inline session policy. You can also specify up to 10 managed policy Amazon Resource Names (ARNs) to use as managed session policies. The plaintext that you use for both inline and managed session policies can't exceed 2,048 characters. Passing policies to this operation returns new temporary credentials. The resulting session's permissions are the intersection of the role's identity-based policy and the session policies. You can use the role's temporary credentials in subsequent Amazon Web Services API calls to access resources in the account that owns the role. You cannot use session policies to grant more permissions than those allowed by the identity-based policy of the role that is being assumed. For more information, see Session Policies in the IAM User Guide. When you create a role, you create two policies: a role trust policy that specifies who can assume the role, and a permissions policy that specifies what can be done with the role. You specify the trusted principal that is allowed to assume the role in the role trust policy. To assume a role from a different account, your Amazon Web Services account must be trusted by the role. The trust relationship is defined in the role's trust policy when the role is created. That trust policy states which accounts are allowed to delegate that access to users in the account. A user who wants to access a role in a different account must also have permissions that are delegated from the account administrator. The administrator must attach a policy that allows the user to call AssumeRole for the ARN of the role in the other account. To allow a user to assume a role in the same account, you can do either of the following: Attach a policy to the user that allows the user to call AssumeRole (as long as the role's trust policy trusts the account). Add the user as a principal directly in the role's trust policy. You can do either because the role\226\128\153s trust policy acts as an IAM resource-based policy. When a resource-based policy grants access to a principal in the same account, no additional identity-based policy is required. For more information about trust policies and resource-based policies, see IAM Policies in the IAM User Guide. Tags (Optional) You can pass tag key-value pairs to your session. These tags are called session tags. For more information about session tags, see Passing Session Tags in STS in the IAM User Guide. An administrator must grant you the permissions necessary to pass session tags. The administrator can also create granular permissions to allow you to pass only specific session tags. For more information, see Tutorial: Using Tags for Attribute-Based Access Control in the IAM User Guide. You can set the session tags as transitive. Transitive tags persist during role chaining. For more information, see Chaining Roles with Session Tags in the IAM User Guide. Using MFA with AssumeRole (Optional) You can include multi-factor authentication (MFA) information when you call AssumeRole. This is useful for cross-account scenarios to ensure that the user that assumes the role has been authenticated with an Amazon Web Services MFA device. In that scenario, the trust policy of the role being assumed includes a condition that tests for MFA authentication. If the caller does not include valid MFA information, the request to assume the role is denied. The condition in a trust policy that tests for MFA authentication might look like the following example. \"Condition\": \\{\"Bool\": \\{\"aws:MultiFactorAuthPresent\": true\\}\\} For more information, see Configuring MFA-Protected API Access in the IAM User Guide guide. To use MFA with AssumeRole, you pass values for the SerialNumber and TokenCode parameters. The SerialNumber value identifies the user's hardware or virtual MFA device. The TokenCode is the time-based one-time password (TOTP) that the MFA device produces."]