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
(* 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.freetier
let apiVersion = "2023-09-07"
let endpointPrefix = "freetier"
let serviceFullName = "AWS Free Tier"
let signatureVersion = "v4"
let protocol = "json"
let globalEndpoint = endpointPrefix ^ ".amazonaws.com"
let targetPrefix = "AWSFreeTierService"
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 GenericString =
  struct
    type nonrec t = string
    let context_ = "GenericString"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:0) >>=
             (fun () ->
                (check_string_max i ~max:1024) >>=
                  (fun () -> check_pattern i ~pattern:"[\\S\\s]*")));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"GenericString" j
    let to_json = simple_to_json to_value
  end
module AccessDeniedException =
  struct
    type nonrec t = {
      message: GenericString.t option }
    let make ?message = fun () -> { message }
    let to_value x =
      structure_to_value
        [("message", (Option.map x.message ~f:GenericString.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let message =
        (Option.map ~f:GenericString.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" GenericString.of_json in
      make ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "You don't have sufficient access to perform this action."]
module AccountId =
  struct
    type nonrec t = string
    let context_ = "AccountId"
    let make i =
      let open Result in
        ok_or_failwith (check_pattern i ~pattern:"[0-9]{12}"); i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"AccountId" j
    let to_json = simple_to_json to_value
  end
module AccountPlanStatus =
  struct
    type nonrec t =
      | NOT_STARTED 
      | ACTIVE 
      | EXPIRED 
      | Non_static_id of string 
    let make i = i
    let to_string =
      function
      | NOT_STARTED -> "NOT_STARTED"
      | ACTIVE -> "ACTIVE"
      | EXPIRED -> "EXPIRED"
      | Non_static_id s -> s
    let of_string =
      function
      | "NOT_STARTED" -> NOT_STARTED
      | "ACTIVE" -> ACTIVE
      | "EXPIRED" -> EXPIRED
      | x -> Non_static_id x
    let to_value x = `Enum (to_string x)
    let to_query v = to_query to_value v
    let to_header x = to_string x
    let of_xml xml_arg0 =
      of_string
        (string_of_xml ~kind:"enumeration AccountPlanStatus" xml_arg0)
    let of_json j = of_string (string_of_json ~kind:"AccountPlanStatus" j)
    let to_json = simple_to_json to_value
  end
module AccountPlanType =
  struct
    type nonrec t =
      | FREE 
      | PAID 
      | Non_static_id of string 
    let make i = i
    let to_string =
      function | FREE -> "FREE" | PAID -> "PAID" | Non_static_id s -> s
    let of_string =
      function | "FREE" -> FREE | "PAID" -> PAID | x -> Non_static_id x
    let to_value x = `Enum (to_string x)
    let to_query v = to_query to_value v
    let to_header x = to_string x
    let of_xml xml_arg0 =
      of_string (string_of_xml ~kind:"enumeration AccountPlanType" xml_arg0)
    let of_json j = of_string (string_of_json ~kind:"AccountPlanType" j)
    let to_json = simple_to_json to_value
  end
module ActivityStatus =
  struct
    type nonrec t =
      | NOT_STARTED 
      | IN_PROGRESS 
      | COMPLETED 
      | EXPIRING 
      | Non_static_id of string 
    let make i = i
    let to_string =
      function
      | NOT_STARTED -> "NOT_STARTED"
      | IN_PROGRESS -> "IN_PROGRESS"
      | COMPLETED -> "COMPLETED"
      | EXPIRING -> "EXPIRING"
      | Non_static_id s -> s
    let of_string =
      function
      | "NOT_STARTED" -> NOT_STARTED
      | "IN_PROGRESS" -> IN_PROGRESS
      | "COMPLETED" -> COMPLETED
      | "EXPIRING" -> EXPIRING
      | x -> Non_static_id x
    let to_value x = `Enum (to_string x)
    let to_query v = to_query to_value v
    let to_header x = to_string x
    let of_xml xml_arg0 =
      of_string (string_of_xml ~kind:"enumeration ActivityStatus" xml_arg0)
    let of_json j = of_string (string_of_json ~kind:"ActivityStatus" j)
    let to_json = simple_to_json to_value
  end
module GenericDouble =
  struct
    type nonrec t = float
    let make i = i
    let of_string = Float.of_string
    let to_value x = `Double x
    let to_query v = to_query to_value v
    let to_header x = Stdlib.Float.to_string x
    let of_xml xml_arg0 =
      Float.of_string (string_of_xml ~kind:"a double" xml_arg0)
    let of_json j = float_of_json ~kind:"a double" j
    let to_json = simple_to_json to_value
  end
module CurrencyCode =
  struct
    type nonrec t =
      | USD 
      | Non_static_id of string 
    let make i = i
    let to_string = function | USD -> "USD" | Non_static_id s -> s
    let of_string = function | "USD" -> USD | x -> Non_static_id x
    let to_value x = `Enum (to_string x)
    let to_query v = to_query to_value v
    let to_header x = to_string x
    let of_xml xml_arg0 =
      of_string (string_of_xml ~kind:"enumeration CurrencyCode" xml_arg0)
    let of_json j = of_string (string_of_json ~kind:"CurrencyCode" j)
    let to_json = simple_to_json to_value
  end
module MonetaryAmount =
  struct
    type nonrec t =
      {
      amount: GenericDouble.t option
        [@ocaml.doc "The aggregated monetary amount of credits earned."];
      unit: CurrencyCode.t option
        [@ocaml.doc "The unit that the monetary amount is given in."]}
    let make ?amount = fun ?unit -> fun () -> { amount; unit }
    let to_value x =
      structure_to_value
        [("amount", (Option.map x.amount ~f:GenericDouble.to_value));
        ("unit", (Option.map x.unit ~f:CurrencyCode.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let unit =
        (Option.map ~f:CurrencyCode.of_xml) (Xml.child xml_arg0 "unit") in
      let amount =
        (Option.map ~f:GenericDouble.of_xml) (Xml.child xml_arg0 "amount") in
      make ?unit ?amount ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let unit = field_map json__ "unit" CurrencyCode.of_json in
      let amount = field_map json__ "amount" GenericDouble.of_json in
      make ?unit ?amount ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "The monetary amount of the credit."]
module ActivityReward =
  struct
    type nonrec t =
      {
      credit: MonetaryAmount.t option
        [@ocaml.doc "The credits gained by activity rewards."]}
    let make ?credit = fun () -> { credit }
    let to_value x =
      structure_to_value
        [("credit", (Option.map x.credit ~f:MonetaryAmount.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let credit =
        (Option.map ~f:MonetaryAmount.of_xml) (Xml.child xml_arg0 "credit") in
      make ?credit ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let credit = field_map json__ "credit" MonetaryAmount.of_json in
      make ?credit ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The summary of the rewards granted as a result of activities completed."]
module ActivityId =
  struct
    type nonrec t = string
    let context_ = "ActivityId"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:32) >>=
             (fun () ->
                (check_string_max i ~max:32) >>=
                  (fun () -> check_pattern i ~pattern:"[a-zA-Z0-9]+")));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"ActivityId" j
    let to_json = simple_to_json to_value
  end
module ActivitySummary =
  struct
    type nonrec t =
      {
      activityId: ActivityId.t option
        [@ocaml.doc "A unique identifier that identifies the activity."];
      title: GenericString.t option [@ocaml.doc "The title of the activity."];
      reward: ActivityReward.t option
        [@ocaml.doc "The reward for the activity."];
      status: ActivityStatus.t option
        [@ocaml.doc "The current status of the activity."]}
    let make ?activityId =
      fun ?title ->
        fun ?reward ->
          fun ?status -> fun () -> { activityId; title; reward; status }
    let to_value x =
      structure_to_value
        [("activityId", (Option.map x.activityId ~f:ActivityId.to_value));
        ("title", (Option.map x.title ~f:GenericString.to_value));
        ("reward", (Option.map x.reward ~f:ActivityReward.to_value));
        ("status", (Option.map x.status ~f:ActivityStatus.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let status =
        (Option.map ~f:ActivityStatus.of_xml) (Xml.child xml_arg0 "status") in
      let reward =
        (Option.map ~f:ActivityReward.of_xml) (Xml.child xml_arg0 "reward") in
      let title =
        (Option.map ~f:GenericString.of_xml) (Xml.child xml_arg0 "title") in
      let activityId =
        (Option.map ~f:ActivityId.of_xml) (Xml.child xml_arg0 "activityId") in
      make ?status ?reward ?title ?activityId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let status = field_map json__ "status" ActivityStatus.of_json in
      let reward = field_map json__ "reward" ActivityReward.of_json in
      let title = field_map json__ "title" GenericString.of_json in
      let activityId = field_map json__ "activityId" ActivityId.of_json in
      make ?status ?reward ?title ?activityId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "The summary of activities."]
module Activities =
  struct
    type nonrec t = ActivitySummary.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:ActivitySummary.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:ActivitySummary.of_xml)
    let of_json j =
      list_of_json ~kind:"Activities" ~of_json:ActivitySummary.of_json j
    let to_json v = composed_to_json to_value v
  end
module Dimension =
  struct
    type nonrec t =
      | SERVICE 
      | OPERATION 
      | USAGE_TYPE 
      | REGION 
      | FREE_TIER_TYPE 
      | DESCRIPTION 
      | USAGE_PERCENTAGE 
      | Non_static_id of string 
    let make i = i
    let to_string =
      function
      | SERVICE -> "SERVICE"
      | OPERATION -> "OPERATION"
      | USAGE_TYPE -> "USAGE_TYPE"
      | REGION -> "REGION"
      | FREE_TIER_TYPE -> "FREE_TIER_TYPE"
      | DESCRIPTION -> "DESCRIPTION"
      | USAGE_PERCENTAGE -> "USAGE_PERCENTAGE"
      | Non_static_id s -> s
    let of_string =
      function
      | "SERVICE" -> SERVICE
      | "OPERATION" -> OPERATION
      | "USAGE_TYPE" -> USAGE_TYPE
      | "REGION" -> REGION
      | "FREE_TIER_TYPE" -> FREE_TIER_TYPE
      | "DESCRIPTION" -> DESCRIPTION
      | "USAGE_PERCENTAGE" -> USAGE_PERCENTAGE
      | x -> Non_static_id x
    let to_value x = `Enum (to_string x)
    let to_query v = to_query to_value v
    let to_header x = to_string x
    let of_xml xml_arg0 =
      of_string (string_of_xml ~kind:"enumeration Dimension" xml_arg0)
    let of_json j = of_string (string_of_json ~kind:"Dimension" j)
    let to_json = simple_to_json to_value
  end
module Value =
  struct
    type nonrec t = string
    let context_ = "Value"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:1) >>=
             (fun () ->
                (check_string_max i ~max:20) >>=
                  (fun () ->
                     check_pattern i
                       ~pattern:"[ a-zA-Z0-9\\-\\:\\.\\_\\/\\,\\$\\(\\)]*")));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"Value" j
    let to_json = simple_to_json to_value
  end
module Values =
  struct
    type nonrec t = Value.t list
    let make i =
      let open Result in ok_or_failwith (check_list_min i ~min:1); i
    let of_string _ =
      failwithf "of_string is not implemented for List_shape objects" ()
      [@@warning "-32"]
    let to_value xs =
      (xs |> (List.map ~f:Value.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:Value.of_xml)
    let of_json j = list_of_json ~kind:"Values" ~of_json:Value.of_json j
    let to_json v = composed_to_json to_value v
  end
module MatchOption =
  struct
    type nonrec t =
      | EQUALS 
      | STARTS_WITH 
      | ENDS_WITH 
      | CONTAINS 
      | GREATER_THAN_OR_EQUAL 
      | Non_static_id of string 
    let make i = i
    let to_string =
      function
      | EQUALS -> "EQUALS"
      | STARTS_WITH -> "STARTS_WITH"
      | ENDS_WITH -> "ENDS_WITH"
      | CONTAINS -> "CONTAINS"
      | GREATER_THAN_OR_EQUAL -> "GREATER_THAN_OR_EQUAL"
      | Non_static_id s -> s
    let of_string =
      function
      | "EQUALS" -> EQUALS
      | "STARTS_WITH" -> STARTS_WITH
      | "ENDS_WITH" -> ENDS_WITH
      | "CONTAINS" -> CONTAINS
      | "GREATER_THAN_OR_EQUAL" -> GREATER_THAN_OR_EQUAL
      | x -> Non_static_id x
    let to_value x = `Enum (to_string x)
    let to_query v = to_query to_value v
    let to_header x = to_string x
    let of_xml xml_arg0 =
      of_string (string_of_xml ~kind:"enumeration MatchOption" xml_arg0)
    let of_json j = of_string (string_of_json ~kind:"MatchOption" j)
    let to_json = simple_to_json to_value
  end
module MatchOptions =
  struct
    type nonrec t = MatchOption.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:MatchOption.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:MatchOption.of_xml)
    let of_json j =
      list_of_json ~kind:"MatchOptions" ~of_json:MatchOption.of_json j
    let to_json v = composed_to_json to_value v
  end
module DimensionValues =
  struct
    type nonrec t =
      {
      key: Dimension.t
        [@ocaml.doc "The name of the dimension that you want to filter on."];
      values: Values.t
        [@ocaml.doc
          "The metadata values you can specify to filter upon, so that the results all match at least one of the specified values."];
      matchOptions: MatchOptions.t
        [@ocaml.doc
          "The match options that you can use to filter your results. You can specify only one of these values in the array."]}
    let context_ = "DimensionValues"
    let make ~key =
      fun ~values ->
        fun ~matchOptions -> fun () -> { key; values; matchOptions }
    let to_value x =
      structure_to_value
        [("Key", (Some (Dimension.to_value x.key)));
        ("Values", (Some (Values.to_value x.values)));
        ("MatchOptions", (Some (MatchOptions.to_value x.matchOptions)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let matchOptions =
        MatchOptions.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "MatchOptions") in
      let values =
        Values.of_xml (Xml.child_exn ~context:context_ xml_arg0 "Values") in
      let key =
        Dimension.of_xml (Xml.child_exn ~context:context_ xml_arg0 "Key") in
      make ~matchOptions ~values ~key ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let matchOptions =
        field_map_exn json__ "MatchOptions" MatchOptions.of_json in
      let values = field_map_exn json__ "Values" Values.of_json in
      let key = field_map_exn json__ "Key" Dimension.of_json in
      make ~matchOptions ~values ~key ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Contains the specifications for the filters to use for your request."]
module rec
  Expression:sig
               type nonrec t =
                 {
                 or_: Expressions.t option
                   [@ocaml.doc
                     "Return results that match any of the Expressions that you specified. in the array."];
                 and_: Expressions.t option
                   [@ocaml.doc
                     "Return results that match all Expressions that you specified in the array."];
                 not: Expression.t option
                   [@ocaml.doc
                     "Return results that don\226\128\153t match the Expression that you specified."];
                 dimensions: DimensionValues.t option
                   [@ocaml.doc
                     "The specific dimension, values, and match type to filter objects with."]}
               val make :
                 ?or_:Expressions.t ->
                   ?and_:Expressions.t ->
                     ?not:Expression.t ->
                       ?dimensions:DimensionValues.t -> unit -> t
               val to_value : t -> Botodata.value
               val to_query : t -> Client.Query.t
               val of_xml : Xml.t -> t
               val of_json : Yojson.Safe.t -> t
               val to_json : t -> Yojson.Safe.t
             end =
  struct
    type nonrec t =
      {
      or_: Expressions.t option
        [@ocaml.doc
          "Return results that match any of the Expressions that you specified. in the array."];
      and_: Expressions.t option
        [@ocaml.doc
          "Return results that match all Expressions that you specified in the array."];
      not: Expression.t option
        [@ocaml.doc
          "Return results that don\226\128\153t match the Expression that you specified."];
      dimensions: DimensionValues.t option
        [@ocaml.doc
          "The specific dimension, values, and match type to filter objects with."]}
    let make ?or_ =
      fun ?and_ ->
        fun ?not ->
          fun ?dimensions -> fun () -> { or_; and_; not; dimensions }
    let to_value x =
      structure_to_value
        [("Or", (Option.map x.or_ ~f:Expressions.to_value));
        ("And", (Option.map x.and_ ~f:Expressions.to_value));
        ("Not", (Option.map x.not ~f:Expression.to_value));
        ("Dimensions", (Option.map x.dimensions ~f:DimensionValues.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let dimensions =
        (Option.map ~f:DimensionValues.of_xml)
          (Xml.child xml_arg0 "Dimensions") in
      let not = (Option.map ~f:Expression.of_xml) (Xml.child xml_arg0 "Not") in
      let and_ =
        (Option.map ~f:Expressions.of_xml) (Xml.child xml_arg0 "And") in
      let or_ = (Option.map ~f:Expressions.of_xml) (Xml.child xml_arg0 "Or") in
      make ?dimensions ?not ?and_ ?or_ ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let dimensions = field_map json__ "Dimensions" DimensionValues.of_json in
      let not = field_map json__ "Not" Expression.of_json in
      let and_ = field_map json__ "And" Expressions.of_json in
      let or_ = field_map json__ "Or" Expressions.of_json in
      make ?dimensions ?not ?and_ ?or_ ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Use Expression to filter in the GetFreeTierUsage API operation. You can use the following patterns: Simple dimension values (Dimensions root operator) Complex expressions with logical operators (AND, NOT, and OR root operators). For simple dimension values, you can set the dimension name, values, and match type for the filters that you plan to use. Example for simple dimension values You can filter to match exactly for REGION==us-east-1 OR REGION==us-west-1. The corresponding Expression appears like the following: \\{ \"Dimensions\": \\{ \"Key\": \"REGION\", \"Values\": \\[ \"us-east-1\", \"us-west-1\" \\], \"MatchOptions\": \\[\"EQUALS\"\\] \\} \\} As shown in the previous example, lists of dimension values are combined with OR when you apply the filter. For complex expressions with logical operators, you can have nested expressions to use the logical operators and specify advanced filtering. Example for complex expressions with logical operators You can filter by ((REGION == us-east-1 OR REGION == us-west-1) OR (SERVICE CONTAINS AWSLambda)) AND (USAGE_TYPE !CONTAINS DataTransfer). The corresponding Expression appears like the following: \\{ \"And\": \\[ \\{\"Or\": \\[ \\{\"Dimensions\": \\{ \"Key\": \"REGION\", \"Values\": \\[ \"us-east-1\", \"us-west-1\" \\], \"MatchOptions\": \\[\"EQUALS\"\\] \\}\\}, \\{\"Dimensions\": \\{ \"Key\": \"SERVICE\", \"Values\": \\[\"AWSLambda\"\\], \"MatchOptions\": \\[\"CONTAINS\"\\] \\} \\} \\]\\}, \\{\"Not\": \\{\"Dimensions\": \\{ \"Key\": \"USAGE_TYPE\", \"Values\": \\[\"DataTransfer\"\\], \"MatchOptions\": \\[\"CONTAINS\"\\] \\}\\}\\} \\] \\} In the following Contents, you must specify exactly one of the following root operators."]
 and
  Expressions:sig
                type nonrec t = Expression.t list
                val make : Expression.t list -> t
                val to_value : t -> Botodata.value
                val to_query : t -> Client.Query.t
                val of_xml : Xml.t -> Expression.t list
                val of_json : Yojson.Safe.t -> t
                val to_json : t -> Yojson.Safe.t
                val to_header : t -> string
              end =
  struct
    type nonrec t = Expression.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:Expression.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:Expression.of_xml)
    let of_json j =
      list_of_json ~kind:"Expressions" ~of_json:Expression.of_json j
    let to_json v = composed_to_json to_value v
  end
module FilterActivityStatuses =
  struct
    type nonrec t = ActivityStatus.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:ActivityStatus.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:ActivityStatus.of_xml)
    let of_json j =
      list_of_json ~kind:"FilterActivityStatuses"
        ~of_json:ActivityStatus.of_json j
    let to_json v = composed_to_json to_value v
  end
module FreeTierUsage =
  struct
    type nonrec t =
      {
      service: GenericString.t option
        [@ocaml.doc
          "The name of the Amazon Web Services service providing the Free Tier offer. For example, this can be Amazon Elastic Compute Cloud."];
      operation: GenericString.t option
        [@ocaml.doc
          "Describes usageType more granularly with the specific Amazon Web Services service API operation. For example, this can be the RunInstances API operation for Amazon Elastic Compute Cloud."];
      usageType: GenericString.t option
        [@ocaml.doc
          "Describes the usage details of the offer. For example, this might be Global-BoxUsage:freetrial."];
      region: GenericString.t option
        [@ocaml.doc
          "Describes the Amazon Web Services Region for which this offer is applicable"];
      actualUsageAmount: GenericDouble.t option
        [@ocaml.doc
          "Describes the actual usage accrued month-to-day (MTD) that you've used so far."];
      forecastedUsageAmount: GenericDouble.t option
        [@ocaml.doc
          "Describes the forecasted usage by the month that you're expected to use."];
      limit: GenericDouble.t option
        [@ocaml.doc "Describes the maximum usage allowed in Free Tier."];
      unit: GenericString.t option
        [@ocaml.doc "Describes the unit of the usageType, such as Hrs."];
      description: GenericString.t option
        [@ocaml.doc "The description of the Free Tier offer."];
      freeTierType: GenericString.t option
        [@ocaml.doc
          "Describes the type of the Free Tier offer. For example, the offer can be \"12 Months Free\", \"Always Free\", and \"Free Trial\"."]}
    let make ?service =
      fun ?operation ->
        fun ?usageType ->
          fun ?region ->
            fun ?actualUsageAmount ->
              fun ?forecastedUsageAmount ->
                fun ?limit ->
                  fun ?unit ->
                    fun ?description ->
                      fun ?freeTierType ->
                        fun () ->
                          {
                            service;
                            operation;
                            usageType;
                            region;
                            actualUsageAmount;
                            forecastedUsageAmount;
                            limit;
                            unit;
                            description;
                            freeTierType
                          }
    let to_value x =
      structure_to_value
        [("service", (Option.map x.service ~f:GenericString.to_value));
        ("operation", (Option.map x.operation ~f:GenericString.to_value));
        ("usageType", (Option.map x.usageType ~f:GenericString.to_value));
        ("region", (Option.map x.region ~f:GenericString.to_value));
        ("actualUsageAmount",
          (Option.map x.actualUsageAmount ~f:GenericDouble.to_value));
        ("forecastedUsageAmount",
          (Option.map x.forecastedUsageAmount ~f:GenericDouble.to_value));
        ("limit", (Option.map x.limit ~f:GenericDouble.to_value));
        ("unit", (Option.map x.unit ~f:GenericString.to_value));
        ("description", (Option.map x.description ~f:GenericString.to_value));
        ("freeTierType",
          (Option.map x.freeTierType ~f:GenericString.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let freeTierType =
        (Option.map ~f:GenericString.of_xml)
          (Xml.child xml_arg0 "freeTierType") in
      let description =
        (Option.map ~f:GenericString.of_xml)
          (Xml.child xml_arg0 "description") in
      let unit =
        (Option.map ~f:GenericString.of_xml) (Xml.child xml_arg0 "unit") in
      let limit =
        (Option.map ~f:GenericDouble.of_xml) (Xml.child xml_arg0 "limit") in
      let forecastedUsageAmount =
        (Option.map ~f:GenericDouble.of_xml)
          (Xml.child xml_arg0 "forecastedUsageAmount") in
      let actualUsageAmount =
        (Option.map ~f:GenericDouble.of_xml)
          (Xml.child xml_arg0 "actualUsageAmount") in
      let region =
        (Option.map ~f:GenericString.of_xml) (Xml.child xml_arg0 "region") in
      let usageType =
        (Option.map ~f:GenericString.of_xml) (Xml.child xml_arg0 "usageType") in
      let operation =
        (Option.map ~f:GenericString.of_xml) (Xml.child xml_arg0 "operation") in
      let service =
        (Option.map ~f:GenericString.of_xml) (Xml.child xml_arg0 "service") in
      make ?freeTierType ?description ?unit ?limit ?forecastedUsageAmount
        ?actualUsageAmount ?region ?usageType ?operation ?service ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let freeTierType =
        field_map json__ "freeTierType" GenericString.of_json in
      let description = field_map json__ "description" GenericString.of_json in
      let unit = field_map json__ "unit" GenericString.of_json in
      let limit = field_map json__ "limit" GenericDouble.of_json in
      let forecastedUsageAmount =
        field_map json__ "forecastedUsageAmount" GenericDouble.of_json in
      let actualUsageAmount =
        field_map json__ "actualUsageAmount" GenericDouble.of_json in
      let region = field_map json__ "region" GenericString.of_json in
      let usageType = field_map json__ "usageType" GenericString.of_json in
      let operation = field_map json__ "operation" GenericString.of_json in
      let service = field_map json__ "service" GenericString.of_json in
      make ?freeTierType ?description ?unit ?limit ?forecastedUsageAmount
        ?actualUsageAmount ?region ?usageType ?operation ?service ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Consists of a Amazon Web Services Free Tier offer\226\128\153s metadata and your data usage for the offer."]
module FreeTierUsages =
  struct
    type nonrec t = FreeTierUsage.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:FreeTierUsage.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:FreeTierUsage.of_xml)
    let of_json j =
      list_of_json ~kind:"FreeTierUsages" ~of_json:FreeTierUsage.of_json j
    let to_json v = composed_to_json to_value v
  end
module LanguageCode =
  struct
    type nonrec t =
      | En_US 
      | En_GB 
      | Id_ID 
      | De_DE 
      | Es_ES 
      | Fr_FR 
      | Ja_JP 
      | It_IT 
      | Pt_PT 
      | Ko_KR 
      | Zh_CN 
      | Zh_TW 
      | Tr_TR 
      | Non_static_id of string 
    let make i = i
    let to_string =
      function
      | En_US -> "en-US"
      | En_GB -> "en-GB"
      | Id_ID -> "id-ID"
      | De_DE -> "de-DE"
      | Es_ES -> "es-ES"
      | Fr_FR -> "fr-FR"
      | Ja_JP -> "ja-JP"
      | It_IT -> "it-IT"
      | Pt_PT -> "pt-PT"
      | Ko_KR -> "ko-KR"
      | Zh_CN -> "zh-CN"
      | Zh_TW -> "zh-TW"
      | Tr_TR -> "tr-TR"
      | Non_static_id s -> s
    let of_string =
      function
      | "en-US" -> En_US
      | "en-GB" -> En_GB
      | "id-ID" -> Id_ID
      | "de-DE" -> De_DE
      | "es-ES" -> Es_ES
      | "fr-FR" -> Fr_FR
      | "ja-JP" -> Ja_JP
      | "it-IT" -> It_IT
      | "pt-PT" -> Pt_PT
      | "ko-KR" -> Ko_KR
      | "zh-CN" -> Zh_CN
      | "zh-TW" -> Zh_TW
      | "tr-TR" -> Tr_TR
      | x -> Non_static_id x
    let to_value x = `Enum (to_string x)
    let to_query v = to_query to_value v
    let to_header x = to_string x
    let of_xml xml_arg0 =
      of_string (string_of_xml ~kind:"enumeration LanguageCode" xml_arg0)
    let of_json j = of_string (string_of_json ~kind:"LanguageCode" j)
    let to_json = simple_to_json to_value
  end
module GetAccountActivityRequest =
  struct
    type nonrec t =
      {
      activityId: ActivityId.t
        [@ocaml.doc "A unique identifier that identifies the activity."];
      languageCode: LanguageCode.t option
        [@ocaml.doc
          "The language code used to return translated title and description fields."]}
    let context_ = "GetAccountActivityRequest"
    let make ?languageCode =
      fun ~activityId -> fun () -> { languageCode; activityId }
    let to_value x =
      structure_to_value
        [("activityId", (Some (ActivityId.to_value x.activityId)));
        ("languageCode",
          (Option.map x.languageCode ~f:LanguageCode.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let languageCode =
        (Option.map ~f:LanguageCode.of_xml)
          (Xml.child xml_arg0 "languageCode") in
      let activityId =
        ActivityId.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "activityId") in
      make ?languageCode ~activityId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let languageCode = field_map json__ "languageCode" LanguageCode.of_json in
      let activityId = field_map_exn json__ "activityId" ActivityId.of_json in
      make ?languageCode ~activityId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Returns a specific activity record that is available to the customer."]
module ValidationException =
  struct
    type nonrec t = {
      message: GenericString.t option }
    let make ?message = fun () -> { message }
    let to_value x =
      structure_to_value
        [("message", (Option.map x.message ~f:GenericString.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let message =
        (Option.map ~f:GenericString.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" GenericString.of_json in
      make ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The input fails to satisfy the constraints specified by an Amazon Web Services service."]
module ThrottlingException =
  struct
    type nonrec t = {
      message: GenericString.t option }
    let make ?message = fun () -> { message }
    let to_value x =
      structure_to_value
        [("message", (Option.map x.message ~f:GenericString.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let message =
        (Option.map ~f:GenericString.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" GenericString.of_json in
      make ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "The request was denied due to request throttling."]
module SyntheticTimestamp_date_time =
  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 ResourceNotFoundException =
  struct
    type nonrec t = {
      message: GenericString.t option }
    let make ?message = fun () -> { message }
    let to_value x =
      structure_to_value
        [("message", (Option.map x.message ~f:GenericString.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let message =
        (Option.map ~f:GenericString.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" GenericString.of_json in
      make ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "This exception is thrown when the requested resource cannot be found."]
module InternalServerException =
  struct
    type nonrec t = {
      message: GenericString.t option }
    let make ?message = fun () -> { message }
    let to_value x =
      structure_to_value
        [("message", (Option.map x.message ~f:GenericString.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let message =
        (Option.map ~f:GenericString.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" GenericString.of_json in
      make ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "An unexpected error occurred during the processing of your request."]
module Integer =
  struct
    type nonrec t = int
    let make i = i
    let of_string = Int.of_string
    let to_value x = `Integer x
    let to_query v = to_query to_value v
    let to_header x = Int.to_string x
    let of_xml xml_arg0 =
      Int.of_string (string_of_xml ~kind:"an integer for Integer" xml_arg0)
    let of_json j = Int.of_float (float_of_json ~kind:"an integer" j)
    let to_json = simple_to_json to_value
  end
module GetAccountActivityResponse =
  struct
    type nonrec t =
      {
      activityId: ActivityId.t option
        [@ocaml.doc "A unique identifier that identifies the activity."];
      title: GenericString.t option [@ocaml.doc "A short activity title."];
      description: GenericString.t option
        [@ocaml.doc
          "Provides detailed information about the activity and its expected outcomes."];
      status: ActivityStatus.t option
        [@ocaml.doc "The current activity status."];
      instructionsUrl: GenericString.t option
        [@ocaml.doc
          "The URL resource that provides guidance on activity requirements and completion."];
      reward: ActivityReward.t option
        [@ocaml.doc "A reward granted upon activity completion."];
      estimatedTimeToCompleteInMinutes: Integer.t option
        [@ocaml.doc
          "The estimated time to complete the activity. This is the duration in minutes."];
      expiresAt: SyntheticTimestamp_date_time.t option
        [@ocaml.doc
          "The time by which the activity must be completed to receive a reward."];
      startedAt: SyntheticTimestamp_date_time.t option
        [@ocaml.doc
          "The timestamp when the activity started. This field appears only for activities in the IN_PROGRESS or COMPLETED states."];
      completedAt: SyntheticTimestamp_date_time.t option
        [@ocaml.doc
          "The timestamp when the activity is completed. This field appears only for activities in the COMPLETED state."]}
    type nonrec error =
      [ `InternalServerException of InternalServerException.t 
      | `ResourceNotFoundException of ResourceNotFoundException.t 
      | `ThrottlingException of ThrottlingException.t 
      | `ValidationException of ValidationException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?activityId =
      fun ?title ->
        fun ?description ->
          fun ?status ->
            fun ?instructionsUrl ->
              fun ?reward ->
                fun ?estimatedTimeToCompleteInMinutes ->
                  fun ?expiresAt ->
                    fun ?startedAt ->
                      fun ?completedAt ->
                        fun () ->
                          {
                            activityId;
                            title;
                            description;
                            status;
                            instructionsUrl;
                            reward;
                            estimatedTimeToCompleteInMinutes;
                            expiresAt;
                            startedAt;
                            completedAt
                          }
    let error_of_json name json =
      match name with
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_json json)
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_json json)
      | "ThrottlingException" ->
          `ThrottlingException (ThrottlingException.of_json json)
      | "ValidationException" ->
          `ValidationException (ValidationException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_xml xml)
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_xml xml)
      | "ThrottlingException" ->
          `ThrottlingException (ThrottlingException.of_xml xml)
      | "ValidationException" ->
          `ValidationException (ValidationException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `InternalServerException e ->
          `Assoc
            [("error", (`String "InternalServerException"));
            ("details", (InternalServerException.to_json e))]
      | `ResourceNotFoundException e ->
          `Assoc
            [("error", (`String "ResourceNotFoundException"));
            ("details", (ResourceNotFoundException.to_json e))]
      | `ThrottlingException e ->
          `Assoc
            [("error", (`String "ThrottlingException"));
            ("details", (ThrottlingException.to_json e))]
      | `ValidationException e ->
          `Assoc
            [("error", (`String "ValidationException"));
            ("details", (ValidationException.to_json e))]
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let to_value x =
      structure_to_value
        [("activityId", (Option.map x.activityId ~f:ActivityId.to_value));
        ("title", (Option.map x.title ~f:GenericString.to_value));
        ("description", (Option.map x.description ~f:GenericString.to_value));
        ("status", (Option.map x.status ~f:ActivityStatus.to_value));
        ("instructionsUrl",
          (Option.map x.instructionsUrl ~f:GenericString.to_value));
        ("reward", (Option.map x.reward ~f:ActivityReward.to_value));
        ("estimatedTimeToCompleteInMinutes",
          (Option.map x.estimatedTimeToCompleteInMinutes ~f:Integer.to_value));
        ("expiresAt",
          (Option.map x.expiresAt ~f:SyntheticTimestamp_date_time.to_value));
        ("startedAt",
          (Option.map x.startedAt ~f:SyntheticTimestamp_date_time.to_value));
        ("completedAt",
          (Option.map x.completedAt ~f:SyntheticTimestamp_date_time.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let completedAt =
        (Option.map ~f:SyntheticTimestamp_date_time.of_xml)
          (Xml.child xml_arg0 "completedAt") in
      let startedAt =
        (Option.map ~f:SyntheticTimestamp_date_time.of_xml)
          (Xml.child xml_arg0 "startedAt") in
      let expiresAt =
        (Option.map ~f:SyntheticTimestamp_date_time.of_xml)
          (Xml.child xml_arg0 "expiresAt") in
      let estimatedTimeToCompleteInMinutes =
        (Option.map ~f:Integer.of_xml)
          (Xml.child xml_arg0 "estimatedTimeToCompleteInMinutes") in
      let reward =
        (Option.map ~f:ActivityReward.of_xml) (Xml.child xml_arg0 "reward") in
      let instructionsUrl =
        (Option.map ~f:GenericString.of_xml)
          (Xml.child xml_arg0 "instructionsUrl") in
      let status =
        (Option.map ~f:ActivityStatus.of_xml) (Xml.child xml_arg0 "status") in
      let description =
        (Option.map ~f:GenericString.of_xml)
          (Xml.child xml_arg0 "description") in
      let title =
        (Option.map ~f:GenericString.of_xml) (Xml.child xml_arg0 "title") in
      let activityId =
        (Option.map ~f:ActivityId.of_xml) (Xml.child xml_arg0 "activityId") in
      make ?completedAt ?startedAt ?expiresAt
        ?estimatedTimeToCompleteInMinutes ?reward ?instructionsUrl ?status
        ?description ?title ?activityId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let completedAt =
        field_map json__ "completedAt" SyntheticTimestamp_date_time.of_json in
      let startedAt =
        field_map json__ "startedAt" SyntheticTimestamp_date_time.of_json in
      let expiresAt =
        field_map json__ "expiresAt" SyntheticTimestamp_date_time.of_json in
      let estimatedTimeToCompleteInMinutes =
        field_map json__ "estimatedTimeToCompleteInMinutes" Integer.of_json in
      let reward = field_map json__ "reward" ActivityReward.of_json in
      let instructionsUrl =
        field_map json__ "instructionsUrl" GenericString.of_json in
      let status = field_map json__ "status" ActivityStatus.of_json in
      let description = field_map json__ "description" GenericString.of_json in
      let title = field_map json__ "title" GenericString.of_json in
      let activityId = field_map json__ "activityId" ActivityId.of_json in
      make ?completedAt ?startedAt ?expiresAt
        ?estimatedTimeToCompleteInMinutes ?reward ?instructionsUrl ?status
        ?description ?title ?activityId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Returns a specific activity record that is available to the customer."]
module GetAccountPlanStateRequest =
  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
       "This returns all of the information related to the state of the account plan related to Free Tier."]
module GetAccountPlanStateResponse =
  struct
    type nonrec t =
      {
      accountId: AccountId.t option
        [@ocaml.doc "A unique identifier that identifies the account."];
      accountPlanType: AccountPlanType.t option
        [@ocaml.doc "The plan type for the account."];
      accountPlanStatus: AccountPlanStatus.t option
        [@ocaml.doc "The current status for the account plan."];
      accountPlanRemainingCredits: MonetaryAmount.t option
        [@ocaml.doc "The amount of credits remaining for the account."];
      accountPlanExpirationDate: SyntheticTimestamp_date_time.t option
        [@ocaml.doc
          "The timestamp for when the current account plan expires."]}
    type nonrec error =
      [ `AccessDeniedException of AccessDeniedException.t 
      | `InternalServerException of InternalServerException.t 
      | `ResourceNotFoundException of ResourceNotFoundException.t 
      | `ThrottlingException of ThrottlingException.t 
      | `ValidationException of ValidationException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?accountId =
      fun ?accountPlanType ->
        fun ?accountPlanStatus ->
          fun ?accountPlanRemainingCredits ->
            fun ?accountPlanExpirationDate ->
              fun () ->
                {
                  accountId;
                  accountPlanType;
                  accountPlanStatus;
                  accountPlanRemainingCredits;
                  accountPlanExpirationDate
                }
    let error_of_json name json =
      match name with
      | "AccessDeniedException" ->
          `AccessDeniedException (AccessDeniedException.of_json json)
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_json json)
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_json json)
      | "ThrottlingException" ->
          `ThrottlingException (ThrottlingException.of_json json)
      | "ValidationException" ->
          `ValidationException (ValidationException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "AccessDeniedException" ->
          `AccessDeniedException (AccessDeniedException.of_xml xml)
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_xml xml)
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_xml xml)
      | "ThrottlingException" ->
          `ThrottlingException (ThrottlingException.of_xml xml)
      | "ValidationException" ->
          `ValidationException (ValidationException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `AccessDeniedException e ->
          `Assoc
            [("error", (`String "AccessDeniedException"));
            ("details", (AccessDeniedException.to_json e))]
      | `InternalServerException e ->
          `Assoc
            [("error", (`String "InternalServerException"));
            ("details", (InternalServerException.to_json e))]
      | `ResourceNotFoundException e ->
          `Assoc
            [("error", (`String "ResourceNotFoundException"));
            ("details", (ResourceNotFoundException.to_json e))]
      | `ThrottlingException e ->
          `Assoc
            [("error", (`String "ThrottlingException"));
            ("details", (ThrottlingException.to_json e))]
      | `ValidationException e ->
          `Assoc
            [("error", (`String "ValidationException"));
            ("details", (ValidationException.to_json e))]
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let to_value x =
      structure_to_value
        [("accountId", (Option.map x.accountId ~f:AccountId.to_value));
        ("accountPlanType",
          (Option.map x.accountPlanType ~f:AccountPlanType.to_value));
        ("accountPlanStatus",
          (Option.map x.accountPlanStatus ~f:AccountPlanStatus.to_value));
        ("accountPlanRemainingCredits",
          (Option.map x.accountPlanRemainingCredits
             ~f:MonetaryAmount.to_value));
        ("accountPlanExpirationDate",
          (Option.map x.accountPlanExpirationDate
             ~f:SyntheticTimestamp_date_time.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let accountPlanExpirationDate =
        (Option.map ~f:SyntheticTimestamp_date_time.of_xml)
          (Xml.child xml_arg0 "accountPlanExpirationDate") in
      let accountPlanRemainingCredits =
        (Option.map ~f:MonetaryAmount.of_xml)
          (Xml.child xml_arg0 "accountPlanRemainingCredits") in
      let accountPlanStatus =
        (Option.map ~f:AccountPlanStatus.of_xml)
          (Xml.child xml_arg0 "accountPlanStatus") in
      let accountPlanType =
        (Option.map ~f:AccountPlanType.of_xml)
          (Xml.child xml_arg0 "accountPlanType") in
      let accountId =
        (Option.map ~f:AccountId.of_xml) (Xml.child xml_arg0 "accountId") in
      make ?accountPlanExpirationDate ?accountPlanRemainingCredits
        ?accountPlanStatus ?accountPlanType ?accountId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let accountPlanExpirationDate =
        field_map json__ "accountPlanExpirationDate"
          SyntheticTimestamp_date_time.of_json in
      let accountPlanRemainingCredits =
        field_map json__ "accountPlanRemainingCredits" MonetaryAmount.of_json in
      let accountPlanStatus =
        field_map json__ "accountPlanStatus" AccountPlanStatus.of_json in
      let accountPlanType =
        field_map json__ "accountPlanType" AccountPlanType.of_json in
      let accountId = field_map json__ "accountId" AccountId.of_json in
      make ?accountPlanExpirationDate ?accountPlanRemainingCredits
        ?accountPlanStatus ?accountPlanType ?accountId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "This returns all of the information related to the state of the account plan related to Free Tier."]
module NextPageToken =
  struct
    type nonrec t = string
    let context_ = "NextPageToken"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:1) >>=
             (fun () ->
                (check_string_max i ~max:8192) >>=
                  (fun () -> check_pattern i ~pattern:"[\\S\\s]*")));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"NextPageToken" j
    let to_json = simple_to_json to_value
  end
module MaxResults =
  struct
    type nonrec t = int
    let make i =
      let open Result in
        ok_or_failwith
          ((check_int_max i ~max:1000) >>= (fun () -> check_int_min i ~min:1));
        i
    let of_string = Int.of_string
    let to_value x = `Integer x
    let to_query v = to_query to_value v
    let to_header x = Int.to_string x
    let of_xml xml_arg0 =
      Int.of_string
        (string_of_xml ~kind:"an integer for MaxResults" xml_arg0)
    let of_json j = Int.of_float (float_of_json ~kind:"an integer" j)
    let to_json = simple_to_json to_value
  end
module GetFreeTierUsageRequest =
  struct
    type nonrec t =
      {
      filter: Expression.t option
        [@ocaml.doc
          "An expression that specifies the conditions that you want each FreeTierUsage object to meet."];
      maxResults: MaxResults.t option
        [@ocaml.doc
          "The maximum number of results to return in the response. MaxResults means that there can be up to the specified number of values, but there might be fewer results based on your filters."];
      nextToken: NextPageToken.t option
        [@ocaml.doc
          "The pagination token that indicates the next set of results to retrieve."]}
    let make ?filter =
      fun ?maxResults ->
        fun ?nextToken -> fun () -> { filter; maxResults; nextToken }
    let to_value x =
      structure_to_value
        [("filter", (Option.map x.filter ~f:Expression.to_value));
        ("maxResults", (Option.map x.maxResults ~f:MaxResults.to_value));
        ("nextToken", (Option.map x.nextToken ~f:NextPageToken.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let nextToken =
        (Option.map ~f:NextPageToken.of_xml) (Xml.child xml_arg0 "nextToken") in
      let maxResults =
        (Option.map ~f:MaxResults.of_xml) (Xml.child xml_arg0 "maxResults") in
      let filter =
        (Option.map ~f:Expression.of_xml) (Xml.child xml_arg0 "filter") in
      make ?nextToken ?maxResults ?filter ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let nextToken = field_map json__ "nextToken" NextPageToken.of_json in
      let maxResults = field_map json__ "maxResults" MaxResults.of_json in
      let filter = field_map json__ "filter" Expression.of_json in
      make ?nextToken ?maxResults ?filter ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Returns a list of all Free Tier usage objects that match your filters."]
module GetFreeTierUsageResponse =
  struct
    type nonrec t =
      {
      freeTierUsages: FreeTierUsages.t option
        [@ocaml.doc
          "The list of Free Tier usage objects that meet your filter expression."];
      nextToken: NextPageToken.t option
        [@ocaml.doc
          "The pagination token that indicates the next set of results to retrieve."]}
    type nonrec error =
      [ `InternalServerException of InternalServerException.t 
      | `ThrottlingException of ThrottlingException.t 
      | `ValidationException of ValidationException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?freeTierUsages =
      fun ?nextToken -> fun () -> { freeTierUsages; nextToken }
    let error_of_json name json =
      match name with
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_json json)
      | "ThrottlingException" ->
          `ThrottlingException (ThrottlingException.of_json json)
      | "ValidationException" ->
          `ValidationException (ValidationException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_xml xml)
      | "ThrottlingException" ->
          `ThrottlingException (ThrottlingException.of_xml xml)
      | "ValidationException" ->
          `ValidationException (ValidationException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `InternalServerException e ->
          `Assoc
            [("error", (`String "InternalServerException"));
            ("details", (InternalServerException.to_json e))]
      | `ThrottlingException e ->
          `Assoc
            [("error", (`String "ThrottlingException"));
            ("details", (ThrottlingException.to_json e))]
      | `ValidationException e ->
          `Assoc
            [("error", (`String "ValidationException"));
            ("details", (ValidationException.to_json e))]
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let to_value x =
      structure_to_value
        [("freeTierUsages",
           (Option.map x.freeTierUsages ~f:FreeTierUsages.to_value));
        ("nextToken", (Option.map x.nextToken ~f:NextPageToken.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let nextToken =
        (Option.map ~f:NextPageToken.of_xml) (Xml.child xml_arg0 "nextToken") in
      let freeTierUsages =
        (Option.map ~f:FreeTierUsages.of_xml)
          (Xml.child xml_arg0 "freeTierUsages") in
      make ?nextToken ?freeTierUsages ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let nextToken = field_map json__ "nextToken" NextPageToken.of_json in
      let freeTierUsages =
        field_map json__ "freeTierUsages" FreeTierUsages.of_json in
      make ?nextToken ?freeTierUsages ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Returns a list of all Free Tier usage objects that match your filters."]
module ListAccountActivitiesRequest =
  struct
    type nonrec t =
      {
      filterActivityStatuses: FilterActivityStatuses.t option
        [@ocaml.doc
          "The activity status filter. This field can be used to filter the response by activities status."];
      nextToken: NextPageToken.t option
        [@ocaml.doc
          "A token from a previous paginated response. If this is specified, the response includes records beginning from this token (inclusive), up to the number specified by maxResults."];
      maxResults: MaxResults.t option
        [@ocaml.doc
          "The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output."];
      languageCode: LanguageCode.t option
        [@ocaml.doc "The language code used to return translated titles."]}
    let make ?filterActivityStatuses =
      fun ?nextToken ->
        fun ?maxResults ->
          fun ?languageCode ->
            fun () ->
              { filterActivityStatuses; nextToken; maxResults; languageCode }
    let to_value x =
      structure_to_value
        [("filterActivityStatuses",
           (Option.map x.filterActivityStatuses
              ~f:FilterActivityStatuses.to_value));
        ("nextToken", (Option.map x.nextToken ~f:NextPageToken.to_value));
        ("maxResults", (Option.map x.maxResults ~f:MaxResults.to_value));
        ("languageCode",
          (Option.map x.languageCode ~f:LanguageCode.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let languageCode =
        (Option.map ~f:LanguageCode.of_xml)
          (Xml.child xml_arg0 "languageCode") in
      let maxResults =
        (Option.map ~f:MaxResults.of_xml) (Xml.child xml_arg0 "maxResults") in
      let nextToken =
        (Option.map ~f:NextPageToken.of_xml) (Xml.child xml_arg0 "nextToken") in
      let filterActivityStatuses =
        (Option.map ~f:FilterActivityStatuses.of_xml)
          (Xml.child xml_arg0 "filterActivityStatuses") in
      make ?languageCode ?maxResults ?nextToken ?filterActivityStatuses ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let languageCode = field_map json__ "languageCode" LanguageCode.of_json in
      let maxResults = field_map json__ "maxResults" MaxResults.of_json in
      let nextToken = field_map json__ "nextToken" NextPageToken.of_json in
      let filterActivityStatuses =
        field_map json__ "filterActivityStatuses"
          FilterActivityStatuses.of_json in
      make ?languageCode ?maxResults ?nextToken ?filterActivityStatuses ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Returns a list of activities that are available. This operation supports pagination and filtering by status."]
module ListAccountActivitiesResponse =
  struct
    type nonrec t =
      {
      activities: Activities.t option
        [@ocaml.doc "A brief information about the activities."];
      nextToken: NextPageToken.t option
        [@ocaml.doc
          "The token to include in another request to get the next page of items. This value is null when there are no more items to return."]}
    type nonrec error =
      [ `InternalServerException of InternalServerException.t 
      | `ThrottlingException of ThrottlingException.t 
      | `ValidationException of ValidationException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?activities =
      fun ?nextToken -> fun () -> { activities; nextToken }
    let error_of_json name json =
      match name with
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_json json)
      | "ThrottlingException" ->
          `ThrottlingException (ThrottlingException.of_json json)
      | "ValidationException" ->
          `ValidationException (ValidationException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_xml xml)
      | "ThrottlingException" ->
          `ThrottlingException (ThrottlingException.of_xml xml)
      | "ValidationException" ->
          `ValidationException (ValidationException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `InternalServerException e ->
          `Assoc
            [("error", (`String "InternalServerException"));
            ("details", (InternalServerException.to_json e))]
      | `ThrottlingException e ->
          `Assoc
            [("error", (`String "ThrottlingException"));
            ("details", (ThrottlingException.to_json e))]
      | `ValidationException e ->
          `Assoc
            [("error", (`String "ValidationException"));
            ("details", (ValidationException.to_json e))]
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let to_value x =
      structure_to_value
        [("activities", (Option.map x.activities ~f:Activities.to_value));
        ("nextToken", (Option.map x.nextToken ~f:NextPageToken.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let nextToken =
        (Option.map ~f:NextPageToken.of_xml) (Xml.child xml_arg0 "nextToken") in
      let activities =
        (Option.map ~f:Activities.of_xml) (Xml.child xml_arg0 "activities") in
      make ?nextToken ?activities ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let nextToken = field_map json__ "nextToken" NextPageToken.of_json in
      let activities = field_map json__ "activities" Activities.of_json in
      make ?nextToken ?activities ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Returns a list of activities that are available. This operation supports pagination and filtering by status."]
module UpgradeAccountPlanRequest =
  struct
    type nonrec t =
      {
      accountPlanType: AccountPlanType.t
        [@ocaml.doc
          "The target account plan type. This makes it explicit about the change and latest value of the accountPlanType."]}
    let context_ = "UpgradeAccountPlanRequest"
    let make ~accountPlanType = fun () -> { accountPlanType }
    let to_value x =
      structure_to_value
        [("accountPlanType",
           (Some (AccountPlanType.to_value x.accountPlanType)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let accountPlanType =
        AccountPlanType.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "accountPlanType") in
      make ~accountPlanType ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let accountPlanType =
        field_map_exn json__ "accountPlanType" AccountPlanType.of_json in
      make ~accountPlanType ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The account plan type for the Amazon Web Services account."]
module UpgradeAccountPlanResponse =
  struct
    type nonrec t =
      {
      accountId: AccountId.t option
        [@ocaml.doc "A unique identifier that identifies the account."];
      accountPlanType: AccountPlanType.t option
        [@ocaml.doc "The type of plan for the account."];
      accountPlanStatus: AccountPlanStatus.t option
        [@ocaml.doc
          "This indicates the latest state of the account plan within its lifecycle."]}
    type nonrec error =
      [ `AccessDeniedException of AccessDeniedException.t 
      | `InternalServerException of InternalServerException.t 
      | `ResourceNotFoundException of ResourceNotFoundException.t 
      | `ThrottlingException of ThrottlingException.t 
      | `ValidationException of ValidationException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?accountId =
      fun ?accountPlanType ->
        fun ?accountPlanStatus ->
          fun () -> { accountId; accountPlanType; accountPlanStatus }
    let error_of_json name json =
      match name with
      | "AccessDeniedException" ->
          `AccessDeniedException (AccessDeniedException.of_json json)
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_json json)
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_json json)
      | "ThrottlingException" ->
          `ThrottlingException (ThrottlingException.of_json json)
      | "ValidationException" ->
          `ValidationException (ValidationException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "AccessDeniedException" ->
          `AccessDeniedException (AccessDeniedException.of_xml xml)
      | "InternalServerException" ->
          `InternalServerException (InternalServerException.of_xml xml)
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_xml xml)
      | "ThrottlingException" ->
          `ThrottlingException (ThrottlingException.of_xml xml)
      | "ValidationException" ->
          `ValidationException (ValidationException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `AccessDeniedException e ->
          `Assoc
            [("error", (`String "AccessDeniedException"));
            ("details", (AccessDeniedException.to_json e))]
      | `InternalServerException e ->
          `Assoc
            [("error", (`String "InternalServerException"));
            ("details", (InternalServerException.to_json e))]
      | `ResourceNotFoundException e ->
          `Assoc
            [("error", (`String "ResourceNotFoundException"));
            ("details", (ResourceNotFoundException.to_json e))]
      | `ThrottlingException e ->
          `Assoc
            [("error", (`String "ThrottlingException"));
            ("details", (ThrottlingException.to_json e))]
      | `ValidationException e ->
          `Assoc
            [("error", (`String "ValidationException"));
            ("details", (ValidationException.to_json e))]
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let to_value x =
      structure_to_value
        [("accountId", (Option.map x.accountId ~f:AccountId.to_value));
        ("accountPlanType",
          (Option.map x.accountPlanType ~f:AccountPlanType.to_value));
        ("accountPlanStatus",
          (Option.map x.accountPlanStatus ~f:AccountPlanStatus.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let accountPlanStatus =
        (Option.map ~f:AccountPlanStatus.of_xml)
          (Xml.child xml_arg0 "accountPlanStatus") in
      let accountPlanType =
        (Option.map ~f:AccountPlanType.of_xml)
          (Xml.child xml_arg0 "accountPlanType") in
      let accountId =
        (Option.map ~f:AccountId.of_xml) (Xml.child xml_arg0 "accountId") in
      make ?accountPlanStatus ?accountPlanType ?accountId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let accountPlanStatus =
        field_map json__ "accountPlanStatus" AccountPlanStatus.of_json in
      let accountPlanType =
        field_map json__ "accountPlanType" AccountPlanType.of_json in
      let accountId = field_map json__ "accountId" AccountId.of_json in
      make ?accountPlanStatus ?accountPlanType ?accountId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The account plan type for the Amazon Web Services account."]