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
(* 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.sdb
let apiVersion = "2009-04-15"
let endpointPrefix = "sdb"
let serviceFullName = "Amazon SimpleDB"
let signatureVersion = "v2"
let protocol = "query"
let globalEndpoint = endpointPrefix ^ ".amazonaws.com"
let xmlNamespace = "http://sdb.amazonaws.com/doc/2009-04-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 String_ =
  struct
    type nonrec t = string
    let context_ = "String"
    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:"String" j
    let to_json = simple_to_json to_value
  end
module Boolean =
  struct
    type nonrec t = bool
    let make i = i
    let of_string = Bool.of_string
    let to_value x = `Boolean x
    let to_query v = to_query to_value v
    let to_header x = Bool.to_string x
    let of_xml xml_arg0 =
      Bool.of_string (string_of_xml ~kind:"a boolean" xml_arg0)
    let of_json = bool_of_json
    let to_json = simple_to_json to_value
  end
module Attribute =
  struct
    type nonrec t =
      {
      name: String_.t [@ocaml.doc "The name of the attribute."];
      alternateNameEncoding: String_.t option ;
      value: String_.t [@ocaml.doc "The value of the attribute."];
      alternateValueEncoding: String_.t option }
    let context_ = "Attribute"
    let make ?alternateNameEncoding =
      fun ?alternateValueEncoding ->
        fun ~name ->
          fun ~value ->
            fun () ->
              { alternateNameEncoding; alternateValueEncoding; name; value }
    let to_value x =
      structure_to_value
        [("Name", (Some (String_.to_value x.name)));
        ("AlternateNameEncoding",
          (Option.map x.alternateNameEncoding ~f:String_.to_value));
        ("Value", (Some (String_.to_value x.value)));
        ("AlternateValueEncoding",
          (Option.map x.alternateValueEncoding ~f:String_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let alternateValueEncoding =
        (Option.map ~f:String_.of_xml)
          (Xml.child xml_arg0 "AlternateValueEncoding") in
      let value =
        String_.of_xml (Xml.child_exn ~context:context_ xml_arg0 "Value") in
      let alternateNameEncoding =
        (Option.map ~f:String_.of_xml)
          (Xml.child xml_arg0 "AlternateNameEncoding") in
      let name =
        String_.of_xml (Xml.child_exn ~context:context_ xml_arg0 "Name") in
      make ?alternateValueEncoding ~value ?alternateNameEncoding ~name ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let alternateValueEncoding =
        field_map json__ "AlternateValueEncoding" String_.of_json in
      let value = field_map_exn json__ "Value" String_.of_json in
      let alternateNameEncoding =
        field_map json__ "AlternateNameEncoding" String_.of_json in
      let name = field_map_exn json__ "Name" String_.of_json in
      make ?alternateValueEncoding ~value ?alternateNameEncoding ~name ()
    let to_json v = composed_to_json to_value v
  end
module ReplaceableAttribute =
  struct
    type nonrec t =
      {
      name: String_.t [@ocaml.doc "The name of the replaceable attribute."];
      value: String_.t [@ocaml.doc "The value of the replaceable attribute."];
      replace: Boolean.t option
        [@ocaml.doc
          "A flag specifying whether or not to replace the attribute/value pair or to add a new attribute/value pair. The default setting is false."]}
    let context_ = "ReplaceableAttribute"
    let make ?replace =
      fun ~name -> fun ~value -> fun () -> { replace; name; value }
    let to_value x =
      structure_to_value
        [("Name", (Some (String_.to_value x.name)));
        ("Value", (Some (String_.to_value x.value)));
        ("Replace", (Option.map x.replace ~f:Boolean.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let replace =
        (Option.map ~f:Boolean.of_xml) (Xml.child xml_arg0 "Replace") in
      let value =
        String_.of_xml (Xml.child_exn ~context:context_ xml_arg0 "Value") in
      let name =
        String_.of_xml (Xml.child_exn ~context:context_ xml_arg0 "Name") in
      make ?replace ~value ~name ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let replace = field_map json__ "Replace" Boolean.of_json in
      let value = field_map_exn json__ "Value" String_.of_json in
      let name = field_map_exn json__ "Name" String_.of_json in
      make ?replace ~value ~name ()
    let to_json v = composed_to_json to_value v
  end
module AttributeList =
  struct
    type nonrec t = Attribute.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:Attribute.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 x ~f:Attribute.of_xml)
    let of_json j =
      list_of_json ~kind:"AttributeList" ~of_json:Attribute.of_json j
    let to_json v = composed_to_json to_value v
  end
module ReplaceableAttributeList =
  struct
    type nonrec t = ReplaceableAttribute.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:ReplaceableAttribute.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 x ~f:ReplaceableAttribute.of_xml)
    let of_json j =
      list_of_json ~kind:"ReplaceableAttributeList"
        ~of_json:ReplaceableAttribute.of_json j
    let to_json v = composed_to_json to_value v
  end
module Float_ =
  struct
    type nonrec t = float
    let make i = i
    let of_string = Float.of_string
    let to_value x = `Float 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 float" xml_arg0)
    let of_json j = float_of_json ~kind:"a float" j
    let to_json = simple_to_json to_value
  end
module Item =
  struct
    type nonrec t =
      {
      name: String_.t option [@ocaml.doc "The name of the item."];
      alternateNameEncoding: String_.t option ;
      attributes: AttributeList.t option [@ocaml.doc "A list of attributes."]}
    let make ?name =
      fun ?alternateNameEncoding ->
        fun ?attributes ->
          fun () -> { name; alternateNameEncoding; attributes }
    let to_value x =
      structure_to_value
        [("Name", (Option.map x.name ~f:String_.to_value));
        ("AlternateNameEncoding",
          (Option.map x.alternateNameEncoding ~f:String_.to_value));
        ("Attributes", (Option.map x.attributes ~f:AttributeList.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let attributes =
        (Option.map ~f:AttributeList.of_xml)
          (Some (Xml.children xml_arg0 "Attribute")) in
      let alternateNameEncoding =
        (Option.map ~f:String_.of_xml)
          (Xml.child xml_arg0 "AlternateNameEncoding") in
      let name = (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Name") in
      make ?attributes ?alternateNameEncoding ?name ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let attributes = field_map json__ "Attributes" AttributeList.of_json in
      let alternateNameEncoding =
        field_map json__ "AlternateNameEncoding" String_.of_json in
      let name = field_map json__ "Name" String_.of_json in
      make ?attributes ?alternateNameEncoding ?name ()
    let to_json v = composed_to_json to_value v
  end
module ReplaceableItem =
  struct
    type nonrec t =
      {
      name: String_.t [@ocaml.doc "The name of the replaceable item."];
      attributes: ReplaceableAttributeList.t
        [@ocaml.doc "The list of attributes for a replaceable item."]}
    let context_ = "ReplaceableItem"
    let make ~name = fun ~attributes -> fun () -> { name; attributes }
    let to_value x =
      structure_to_value
        [("ItemName", (Some (String_.to_value x.name)));
        ("Attributes",
          (Some (ReplaceableAttributeList.to_value x.attributes)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let attributes =
        ReplaceableAttributeList.of_xml (Xml.children xml_arg0 "Attribute") in
      let name =
        String_.of_xml (Xml.child_exn ~context:context_ xml_arg0 "ItemName") in
      make ~attributes ~name ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let attributes =
        field_map_exn json__ "Attributes" ReplaceableAttributeList.of_json in
      let name = field_map_exn json__ "Name" String_.of_json in
      make ~attributes ~name ()
    let to_json v = composed_to_json to_value v
  end
module DeletableItem =
  struct
    type nonrec t = {
      name: String_.t ;
      attributes: AttributeList.t option }
    let context_ = "DeletableItem"
    let make ?attributes = fun ~name -> fun () -> { attributes; name }
    let to_value x =
      structure_to_value
        [("ItemName", (Some (String_.to_value x.name)));
        ("Attributes", (Option.map x.attributes ~f:AttributeList.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let attributes =
        (Option.map ~f:AttributeList.of_xml)
          (Some (Xml.children xml_arg0 "Attribute")) in
      let name =
        String_.of_xml (Xml.child_exn ~context:context_ xml_arg0 "ItemName") in
      make ?attributes ~name ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let attributes = field_map json__ "Attributes" AttributeList.of_json in
      let name = field_map_exn json__ "Name" String_.of_json in
      make ?attributes ~name ()
    let to_json v = composed_to_json to_value v
  end
module InvalidNextToken =
  struct
    type nonrec t = {
      boxUsage: Float_.t option }
    let make ?boxUsage = fun () -> { boxUsage }
    let to_value x =
      structure_to_value
        [("BoxUsage", (Option.map x.boxUsage ~f:Float_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let boxUsage =
        (Option.map ~f:Float_.of_xml) (Xml.child xml_arg0 "BoxUsage") in
      make ?boxUsage ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let boxUsage = field_map json__ "BoxUsage" Float_.of_json in
      make ?boxUsage ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "The specified NextToken is not valid."]
module InvalidNumberPredicates =
  struct
    type nonrec t = {
      boxUsage: Float_.t option }
    let make ?boxUsage = fun () -> { boxUsage }
    let to_value x =
      structure_to_value
        [("BoxUsage", (Option.map x.boxUsage ~f:Float_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let boxUsage =
        (Option.map ~f:Float_.of_xml) (Xml.child xml_arg0 "BoxUsage") in
      make ?boxUsage ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let boxUsage = field_map json__ "BoxUsage" Float_.of_json in
      make ?boxUsage ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "Too many predicates exist in the query expression."]
module InvalidNumberValueTests =
  struct
    type nonrec t = {
      boxUsage: Float_.t option }
    let make ?boxUsage = fun () -> { boxUsage }
    let to_value x =
      structure_to_value
        [("BoxUsage", (Option.map x.boxUsage ~f:Float_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let boxUsage =
        (Option.map ~f:Float_.of_xml) (Xml.child xml_arg0 "BoxUsage") in
      make ?boxUsage ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let boxUsage = field_map json__ "BoxUsage" Float_.of_json in
      make ?boxUsage ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "Too many predicates exist in the query expression."]
module InvalidParameterValue =
  struct
    type nonrec t = {
      boxUsage: Float_.t option }
    let make ?boxUsage = fun () -> { boxUsage }
    let to_value x =
      structure_to_value
        [("BoxUsage", (Option.map x.boxUsage ~f:Float_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let boxUsage =
        (Option.map ~f:Float_.of_xml) (Xml.child xml_arg0 "BoxUsage") in
      make ?boxUsage ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let boxUsage = field_map json__ "BoxUsage" Float_.of_json in
      make ?boxUsage ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "The value for a parameter is invalid."]
module InvalidQueryExpression =
  struct
    type nonrec t = {
      boxUsage: Float_.t option }
    let make ?boxUsage = fun () -> { boxUsage }
    let to_value x =
      structure_to_value
        [("BoxUsage", (Option.map x.boxUsage ~f:Float_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let boxUsage =
        (Option.map ~f:Float_.of_xml) (Xml.child xml_arg0 "BoxUsage") in
      make ?boxUsage ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let boxUsage = field_map json__ "BoxUsage" Float_.of_json in
      make ?boxUsage ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "The specified query expression syntax is not valid."]
module ItemList =
  struct
    type nonrec t = Item.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:Item.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 x ~f:Item.of_xml)
    let of_json j = list_of_json ~kind:"ItemList" ~of_json:Item.of_json j
    let to_json v = composed_to_json to_value v
  end
module MissingParameter =
  struct
    type nonrec t = {
      boxUsage: Float_.t option }
    let make ?boxUsage = fun () -> { boxUsage }
    let to_value x =
      structure_to_value
        [("BoxUsage", (Option.map x.boxUsage ~f:Float_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let boxUsage =
        (Option.map ~f:Float_.of_xml) (Xml.child xml_arg0 "BoxUsage") in
      make ?boxUsage ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let boxUsage = field_map json__ "BoxUsage" Float_.of_json in
      make ?boxUsage ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The request must contain the specified missing parameter."]
module NoSuchDomain =
  struct
    type nonrec t = {
      boxUsage: Float_.t option }
    let make ?boxUsage = fun () -> { boxUsage }
    let to_value x =
      structure_to_value
        [("BoxUsage", (Option.map x.boxUsage ~f:Float_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let boxUsage =
        (Option.map ~f:Float_.of_xml) (Xml.child xml_arg0 "BoxUsage") in
      make ?boxUsage ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let boxUsage = field_map json__ "BoxUsage" Float_.of_json in
      make ?boxUsage ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "The specified domain does not exist."]
module RequestTimeout =
  struct
    type nonrec t = {
      boxUsage: Float_.t option }
    let make ?boxUsage = fun () -> { boxUsage }
    let to_value x =
      structure_to_value
        [("BoxUsage", (Option.map x.boxUsage ~f:Float_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let boxUsage =
        (Option.map ~f:Float_.of_xml) (Xml.child xml_arg0 "BoxUsage") in
      make ?boxUsage ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let boxUsage = field_map json__ "BoxUsage" Float_.of_json in
      make ?boxUsage ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "A timeout occurred when attempting to query the specified domain with specified query expression."]
module TooManyRequestedAttributes =
  struct
    type nonrec t = {
      boxUsage: Float_.t option }
    let make ?boxUsage = fun () -> { boxUsage }
    let to_value x =
      structure_to_value
        [("BoxUsage", (Option.map x.boxUsage ~f:Float_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let boxUsage =
        (Option.map ~f:Float_.of_xml) (Xml.child xml_arg0 "BoxUsage") in
      make ?boxUsage ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let boxUsage = field_map json__ "BoxUsage" Float_.of_json in
      make ?boxUsage ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "Too many attributes requested."]
module UpdateCondition =
  struct
    type nonrec t =
      {
      name: String_.t option
        [@ocaml.doc "The name of the attribute involved in the condition."];
      value: String_.t option
        [@ocaml.doc
          "The value of an attribute. This value can only be specified when the Exists parameter is equal to true."];
      exists: Boolean.t option
        [@ocaml.doc
          "A value specifying whether or not the specified attribute must exist with the specified value in order for the update condition to be satisfied. Specify true if the attribute must exist for the update condition to be satisfied. Specify false if the attribute should not exist in order for the update condition to be satisfied."]}
    let make ?name =
      fun ?value -> fun ?exists -> fun () -> { name; value; exists }
    let to_value x =
      structure_to_value
        [("Name", (Option.map x.name ~f:String_.to_value));
        ("Value", (Option.map x.value ~f:String_.to_value));
        ("Exists", (Option.map x.exists ~f:Boolean.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let exists =
        (Option.map ~f:Boolean.of_xml) (Xml.child xml_arg0 "Exists") in
      let value = (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Value") in
      let name = (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "Name") in
      make ?exists ?value ?name ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let exists = field_map json__ "Exists" Boolean.of_json in
      let value = field_map json__ "Value" String_.of_json in
      let name = field_map json__ "Name" String_.of_json in
      make ?exists ?value ?name ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Specifies the conditions under which data should be updated. If an update condition is specified for a request, the data will only be updated if the condition is satisfied. For example, if an attribute with a specific name and value exists, or if a specific attribute doesn't exist."]
module DomainNameList =
  struct
    type nonrec t = String_.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:String_.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 x ~f:String_.of_xml)
    let of_json j =
      list_of_json ~kind:"DomainNameList" ~of_json:String_.of_json j
    let to_json v = composed_to_json to_value v
  end
module Integer =
  struct
    type nonrec t = int
    let make i = i
    let of_string = Int.of_string
    let to_value x = `Integer x
    let to_query v = to_query to_value v
    let to_header x = Int.to_string x
    let of_xml xml_arg0 =
      Int.of_string (string_of_xml ~kind:"an integer for Integer" xml_arg0)
    let of_json j = Int.of_float (float_of_json ~kind:"an integer" j)
    let to_json = simple_to_json to_value
  end
module AttributeNameList =
  struct
    type nonrec t = String_.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:String_.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 x ~f:String_.of_xml)
    let of_json j =
      list_of_json ~kind:"AttributeNameList" ~of_json:String_.of_json j
    let to_json v = composed_to_json to_value v
  end
module Long =
  struct
    type nonrec t = Int64.t
    let make i = i
    let of_string = Int64.of_string
    let to_value x = `Long x
    let to_query v = to_query to_value v
    let to_header x = Int64.to_string x
    let of_xml xml_arg0 =
      Int64.of_string (string_of_xml ~kind:"a long" xml_arg0)
    let of_json j = Int64.of_float (float_of_json ~kind:"a long" j)
    let to_json = simple_to_json to_value
  end
module ReplaceableItemList =
  struct
    type nonrec t = ReplaceableItem.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:ReplaceableItem.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 x ~f:ReplaceableItem.of_xml)
    let of_json j =
      list_of_json ~kind:"ReplaceableItemList"
        ~of_json:ReplaceableItem.of_json j
    let to_json v = composed_to_json to_value v
  end
module DeletableItemList =
  struct
    type nonrec t = DeletableItem.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:DeletableItem.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 x ~f:DeletableItem.of_xml)
    let of_json j =
      list_of_json ~kind:"DeletableItemList" ~of_json:DeletableItem.of_json j
    let to_json v = composed_to_json to_value v
  end
module SelectResult =
  struct
    type selectResult =
      {
      items: ItemList.t option
        [@ocaml.doc "A list of items that match the select expression."];
      nextToken: String_.t option
        [@ocaml.doc
          "An opaque token indicating that more items than MaxNumberOfItems were matched, the response size exceeded 1 megabyte, or the execution time exceeded 5 seconds."]}
    and responseMetaData = unit
    and t = {
      selectResult: selectResult ;
      responseMetaData: responseMetaData }
    type error =
      [ `InvalidNextToken of InvalidNextToken.t 
      | `InvalidNumberPredicates of InvalidNumberPredicates.t 
      | `InvalidNumberValueTests of InvalidNumberValueTests.t 
      | `InvalidParameterValue of InvalidParameterValue.t 
      | `InvalidQueryExpression of InvalidQueryExpression.t 
      | `MissingParameter of MissingParameter.t 
      | `NoSuchDomain of NoSuchDomain.t 
      | `RequestTimeout of RequestTimeout.t 
      | `TooManyRequestedAttributes of TooManyRequestedAttributes.t 
      | `Unknown_operation_error of (string * string option) ]
    let context_ = "SelectResult"
    let make ?items =
      fun ?nextToken ->
        fun () ->
          { selectResult = { items; nextToken }; responseMetaData = () }
    let error_of_json name json =
      match name with
      | "InvalidNextToken" ->
          `InvalidNextToken (InvalidNextToken.of_json json)
      | "InvalidNumberPredicates" ->
          `InvalidNumberPredicates (InvalidNumberPredicates.of_json json)
      | "InvalidNumberValueTests" ->
          `InvalidNumberValueTests (InvalidNumberValueTests.of_json json)
      | "InvalidParameterValue" ->
          `InvalidParameterValue (InvalidParameterValue.of_json json)
      | "InvalidQueryExpression" ->
          `InvalidQueryExpression (InvalidQueryExpression.of_json json)
      | "MissingParameter" ->
          `MissingParameter (MissingParameter.of_json json)
      | "NoSuchDomain" -> `NoSuchDomain (NoSuchDomain.of_json json)
      | "RequestTimeout" -> `RequestTimeout (RequestTimeout.of_json json)
      | "TooManyRequestedAttributes" ->
          `TooManyRequestedAttributes
            (TooManyRequestedAttributes.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "InvalidNextToken" -> `InvalidNextToken (InvalidNextToken.of_xml xml)
      | "InvalidNumberPredicates" ->
          `InvalidNumberPredicates (InvalidNumberPredicates.of_xml xml)
      | "InvalidNumberValueTests" ->
          `InvalidNumberValueTests (InvalidNumberValueTests.of_xml xml)
      | "InvalidParameterValue" ->
          `InvalidParameterValue (InvalidParameterValue.of_xml xml)
      | "InvalidQueryExpression" ->
          `InvalidQueryExpression (InvalidQueryExpression.of_xml xml)
      | "MissingParameter" -> `MissingParameter (MissingParameter.of_xml xml)
      | "NoSuchDomain" -> `NoSuchDomain (NoSuchDomain.of_xml xml)
      | "RequestTimeout" -> `RequestTimeout (RequestTimeout.of_xml xml)
      | "TooManyRequestedAttributes" ->
          `TooManyRequestedAttributes (TooManyRequestedAttributes.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `InvalidNextToken e ->
          `Assoc
            [("error", (`String "InvalidNextToken"));
            ("details", (InvalidNextToken.to_json e))]
      | `InvalidNumberPredicates e ->
          `Assoc
            [("error", (`String "InvalidNumberPredicates"));
            ("details", (InvalidNumberPredicates.to_json e))]
      | `InvalidNumberValueTests e ->
          `Assoc
            [("error", (`String "InvalidNumberValueTests"));
            ("details", (InvalidNumberValueTests.to_json e))]
      | `InvalidParameterValue e ->
          `Assoc
            [("error", (`String "InvalidParameterValue"));
            ("details", (InvalidParameterValue.to_json e))]
      | `InvalidQueryExpression e ->
          `Assoc
            [("error", (`String "InvalidQueryExpression"));
            ("details", (InvalidQueryExpression.to_json e))]
      | `MissingParameter e ->
          `Assoc
            [("error", (`String "MissingParameter"));
            ("details", (MissingParameter.to_json e))]
      | `NoSuchDomain e ->
          `Assoc
            [("error", (`String "NoSuchDomain"));
            ("details", (NoSuchDomain.to_json e))]
      | `RequestTimeout e ->
          `Assoc
            [("error", (`String "RequestTimeout"));
            ("details", (RequestTimeout.to_json e))]
      | `TooManyRequestedAttributes e ->
          `Assoc
            [("error", (`String "TooManyRequestedAttributes"));
            ("details", (TooManyRequestedAttributes.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.selectResult in
      structure_to_wrapped_value
        [("Items", (Option.map x.items ~f:ItemList.to_value));
        ("NextToken", (Option.map x.nextToken ~f:String_.to_value))]
        ~wrapper:"SelectResult" ~response:"ResponseMetaData"
    let to_query v = to_query to_value v
    let of_xml t =
      let xml_arg0 = Xml.child_exn ~context:context_ t "SelectResult" in
      let nextToken =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "NextToken") in
      let items =
        (Option.map ~f:ItemList.of_xml) (Some (Xml.children xml_arg0 "Item")) in
      make ?nextToken ?items ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let nextToken = field_map json__ "NextToken" String_.of_json in
      let items = field_map json__ "Items" ItemList.of_json in
      make ?nextToken ?items ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The Select operation returns a set of attributes for ItemNames that match the select expression. Select is similar to the standard SQL SELECT statement. The total size of the response cannot exceed 1 MB in total size. Amazon SimpleDB automatically adjusts the number of items returned per page to enforce this limit. For example, if the client asks to retrieve 2500 items, but each individual item is 10 kB in size, the system returns 100 items and an appropriate NextToken so the client can access the next page of results. For information on how to construct select expressions, see Using Select to Create Amazon SimpleDB Queries in the Developer Guide."]
module SelectRequest =
  struct
    type nonrec t =
      {
      selectExpression: String_.t
        [@ocaml.doc "The expression used to query the domain."];
      nextToken: String_.t option
        [@ocaml.doc
          "A string informing Amazon SimpleDB where to start the next list of ItemNames."];
      consistentRead: Boolean.t option
        [@ocaml.doc
          "Determines whether or not strong consistency should be enforced when data is read from SimpleDB. If true, any data previously written to SimpleDB will be returned. Otherwise, results will be consistent eventually, and the client may not see data that was written immediately before your read."]}
    let context_ = "SelectRequest"
    let make ?nextToken =
      fun ?consistentRead ->
        fun ~selectExpression ->
          fun () -> { nextToken; consistentRead; selectExpression }
    let to_value x =
      structure_to_value
        [("SelectExpression", (Some (String_.to_value x.selectExpression)));
        ("NextToken", (Option.map x.nextToken ~f:String_.to_value));
        ("ConsistentRead", (Option.map x.consistentRead ~f:Boolean.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let consistentRead =
        (Option.map ~f:Boolean.of_xml) (Xml.child xml_arg0 "ConsistentRead") in
      let nextToken =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "NextToken") in
      let selectExpression =
        String_.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "SelectExpression") in
      make ?consistentRead ?nextToken ~selectExpression ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let consistentRead = field_map json__ "ConsistentRead" Boolean.of_json in
      let nextToken = field_map json__ "NextToken" String_.of_json in
      let selectExpression =
        field_map_exn json__ "SelectExpression" String_.of_json in
      make ?consistentRead ?nextToken ~selectExpression ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The Select operation returns a set of attributes for ItemNames that match the select expression. Select is similar to the standard SQL SELECT statement. The total size of the response cannot exceed 1 MB in total size. Amazon SimpleDB automatically adjusts the number of items returned per page to enforce this limit. For example, if the client asks to retrieve 2500 items, but each individual item is 10 kB in size, the system returns 100 items and an appropriate NextToken so the client can access the next page of results. For information on how to construct select expressions, see Using Select to Create Amazon SimpleDB Queries in the Developer Guide."]
module PutAttributesRequest =
  struct
    type nonrec t =
      {
      domainName: String_.t
        [@ocaml.doc
          "The name of the domain in which to perform the operation."];
      itemName: String_.t [@ocaml.doc "The name of the item."];
      attributes: ReplaceableAttributeList.t
        [@ocaml.doc "The list of attributes."];
      expected: UpdateCondition.t option
        [@ocaml.doc
          "The update condition which, if specified, determines whether the specified attributes will be updated or not. The update condition must be satisfied in order for this request to be processed and the attributes to be updated."]}
    let context_ = "PutAttributesRequest"
    let make ?expected =
      fun ~domainName ->
        fun ~itemName ->
          fun ~attributes ->
            fun () -> { expected; domainName; itemName; attributes }
    let to_value x =
      structure_to_value
        [("DomainName", (Some (String_.to_value x.domainName)));
        ("ItemName", (Some (String_.to_value x.itemName)));
        ("Attributes",
          (Some (ReplaceableAttributeList.to_value x.attributes)));
        ("Expected", (Option.map x.expected ~f:UpdateCondition.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let expected =
        (Option.map ~f:UpdateCondition.of_xml)
          (Xml.child xml_arg0 "Expected") in
      let attributes =
        ReplaceableAttributeList.of_xml (Xml.children xml_arg0 "Attribute") in
      let itemName =
        String_.of_xml (Xml.child_exn ~context:context_ xml_arg0 "ItemName") in
      let domainName =
        String_.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "DomainName") in
      make ?expected ~attributes ~itemName ~domainName ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let expected = field_map json__ "Expected" UpdateCondition.of_json in
      let attributes =
        field_map_exn json__ "Attributes" ReplaceableAttributeList.of_json in
      let itemName = field_map_exn json__ "ItemName" String_.of_json in
      let domainName = field_map_exn json__ "DomainName" String_.of_json in
      make ?expected ~attributes ~itemName ~domainName ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The PutAttributes operation creates or replaces attributes in an item. The client may specify new attributes using a combination of the Attribute.X.Name and Attribute.X.Value parameters. The client specifies the first attribute by the parameters Attribute.0.Name and Attribute.0.Value, the second attribute by the parameters Attribute.1.Name and Attribute.1.Value, and so on. Attributes are uniquely identified in an item by their name/value combination. For example, a single item can have the attributes \\{ \"first_name\", \"first_value\" \\} and \\{ \"first_name\", second_value\" \\}. However, it cannot have two attribute instances where both the Attribute.X.Name and Attribute.X.Value are the same. Optionally, the requestor can supply the Replace parameter for each individual attribute. Setting this value to true causes the new attribute value to replace the existing attribute value(s). For example, if an item has the attributes \\{ 'a', '1' \\}, \\{ 'b', '2'\\} and \\{ 'b', '3' \\} and the requestor calls PutAttributes using the attributes \\{ 'b', '4' \\} with the Replace parameter set to true, the final attributes of the item are changed to \\{ 'a', '1' \\} and \\{ 'b', '4' \\}, which replaces the previous values of the 'b' attribute with the new value. You cannot specify an empty string as an attribute name. Because Amazon SimpleDB makes multiple copies of client data and uses an eventual consistency update model, an immediate GetAttributes or Select operation (read) immediately after a PutAttributes or DeleteAttributes operation (write) might not return the updated data. The following limitations are enforced for this operation: 256 total attribute name-value pairs per item One billion attributes per domain 10 GB of total user data storage per domain"]
module NumberSubmittedItemsExceeded =
  struct
    type nonrec t = {
      boxUsage: Float_.t option }
    let make ?boxUsage = fun () -> { boxUsage }
    let to_value x =
      structure_to_value
        [("BoxUsage", (Option.map x.boxUsage ~f:Float_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let boxUsage =
        (Option.map ~f:Float_.of_xml) (Xml.child xml_arg0 "BoxUsage") in
      make ?boxUsage ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let boxUsage = field_map json__ "BoxUsage" Float_.of_json in
      make ?boxUsage ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "Too many items exist in a single call."]
module NumberSubmittedAttributesExceeded =
  struct
    type nonrec t = {
      boxUsage: Float_.t option }
    let make ?boxUsage = fun () -> { boxUsage }
    let to_value x =
      structure_to_value
        [("BoxUsage", (Option.map x.boxUsage ~f:Float_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let boxUsage =
        (Option.map ~f:Float_.of_xml) (Xml.child xml_arg0 "BoxUsage") in
      make ?boxUsage ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let boxUsage = field_map json__ "BoxUsage" Float_.of_json in
      make ?boxUsage ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "Too many attributes exist in a single call."]
module NumberItemAttributesExceeded =
  struct
    type nonrec t = {
      boxUsage: Float_.t option }
    let make ?boxUsage = fun () -> { boxUsage }
    let to_value x =
      structure_to_value
        [("BoxUsage", (Option.map x.boxUsage ~f:Float_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let boxUsage =
        (Option.map ~f:Float_.of_xml) (Xml.child xml_arg0 "BoxUsage") in
      make ?boxUsage ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let boxUsage = field_map json__ "BoxUsage" Float_.of_json in
      make ?boxUsage ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "Too many attributes in this item."]
module NumberDomainsExceeded =
  struct
    type nonrec t = {
      boxUsage: Float_.t option }
    let make ?boxUsage = fun () -> { boxUsage }
    let to_value x =
      structure_to_value
        [("BoxUsage", (Option.map x.boxUsage ~f:Float_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let boxUsage =
        (Option.map ~f:Float_.of_xml) (Xml.child xml_arg0 "BoxUsage") in
      make ?boxUsage ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let boxUsage = field_map json__ "BoxUsage" Float_.of_json in
      make ?boxUsage ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "Too many domains exist per this account."]
module NumberDomainBytesExceeded =
  struct
    type nonrec t = {
      boxUsage: Float_.t option }
    let make ?boxUsage = fun () -> { boxUsage }
    let to_value x =
      structure_to_value
        [("BoxUsage", (Option.map x.boxUsage ~f:Float_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let boxUsage =
        (Option.map ~f:Float_.of_xml) (Xml.child xml_arg0 "BoxUsage") in
      make ?boxUsage ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let boxUsage = field_map json__ "BoxUsage" Float_.of_json in
      make ?boxUsage ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "Too many bytes in this domain."]
module NumberDomainAttributesExceeded =
  struct
    type nonrec t = {
      boxUsage: Float_.t option }
    let make ?boxUsage = fun () -> { boxUsage }
    let to_value x =
      structure_to_value
        [("BoxUsage", (Option.map x.boxUsage ~f:Float_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let boxUsage =
        (Option.map ~f:Float_.of_xml) (Xml.child xml_arg0 "BoxUsage") in
      make ?boxUsage ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let boxUsage = field_map json__ "BoxUsage" Float_.of_json in
      make ?boxUsage ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "Too many attributes in this domain."]
module ListDomainsResult =
  struct
    type listDomainsResult =
      {
      domainNames: DomainNameList.t option
        [@ocaml.doc "A list of domain names that match the expression."];
      nextToken: String_.t option
        [@ocaml.doc
          "An opaque token indicating that there are more domains than the specified MaxNumberOfDomains still available."]}
    and responseMetaData = unit
    and t =
      {
      listDomainsResult: listDomainsResult ;
      responseMetaData: responseMetaData }
    type error =
      [ `InvalidNextToken of InvalidNextToken.t 
      | `InvalidParameterValue of InvalidParameterValue.t 
      | `Unknown_operation_error of (string * string option) ]
    let context_ = "ListDomainsResult"
    let make ?domainNames =
      fun ?nextToken ->
        fun () ->
          {
            listDomainsResult = { domainNames; nextToken };
            responseMetaData = ()
          }
    let error_of_json name json =
      match name with
      | "InvalidNextToken" ->
          `InvalidNextToken (InvalidNextToken.of_json json)
      | "InvalidParameterValue" ->
          `InvalidParameterValue (InvalidParameterValue.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "InvalidNextToken" -> `InvalidNextToken (InvalidNextToken.of_xml xml)
      | "InvalidParameterValue" ->
          `InvalidParameterValue (InvalidParameterValue.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `InvalidNextToken e ->
          `Assoc
            [("error", (`String "InvalidNextToken"));
            ("details", (InvalidNextToken.to_json e))]
      | `InvalidParameterValue e ->
          `Assoc
            [("error", (`String "InvalidParameterValue"));
            ("details", (InvalidParameterValue.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.listDomainsResult in
      structure_to_wrapped_value
        [("DomainNames",
           (Option.map x.domainNames ~f:DomainNameList.to_value));
        ("NextToken", (Option.map x.nextToken ~f:String_.to_value))]
        ~wrapper:"ListDomainsResult" ~response:"ResponseMetaData"
    let to_query v = to_query to_value v
    let of_xml t =
      let xml_arg0 = Xml.child_exn ~context:context_ t "ListDomainsResult" in
      let nextToken =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "NextToken") in
      let domainNames =
        (Option.map ~f:DomainNameList.of_xml)
          (Some (Xml.children xml_arg0 "DomainName")) in
      make ?nextToken ?domainNames ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let nextToken = field_map json__ "NextToken" String_.of_json in
      let domainNames = field_map json__ "DomainNames" DomainNameList.of_json in
      make ?nextToken ?domainNames ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The ListDomains operation lists all domains associated with the Access Key ID. It returns domain names up to the limit set by MaxNumberOfDomains. A NextToken is returned if there are more than MaxNumberOfDomains domains. Calling ListDomains successive times with the NextToken provided by the operation returns up to MaxNumberOfDomains more domain names with each successive operation call."]
module ListDomainsRequest =
  struct
    type nonrec t =
      {
      maxNumberOfDomains: Integer.t option
        [@ocaml.doc
          "The maximum number of domain names you want returned. The range is 1 to 100. The default setting is 100."];
      nextToken: String_.t option
        [@ocaml.doc
          "A string informing Amazon SimpleDB where to start the next list of domain names."]}
    let make ?maxNumberOfDomains =
      fun ?nextToken -> fun () -> { maxNumberOfDomains; nextToken }
    let to_value x =
      structure_to_value
        [("MaxNumberOfDomains",
           (Option.map x.maxNumberOfDomains ~f:Integer.to_value));
        ("NextToken", (Option.map x.nextToken ~f:String_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let nextToken =
        (Option.map ~f:String_.of_xml) (Xml.child xml_arg0 "NextToken") in
      let maxNumberOfDomains =
        (Option.map ~f:Integer.of_xml)
          (Xml.child xml_arg0 "MaxNumberOfDomains") in
      make ?nextToken ?maxNumberOfDomains ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let nextToken = field_map json__ "NextToken" String_.of_json in
      let maxNumberOfDomains =
        field_map json__ "MaxNumberOfDomains" Integer.of_json in
      make ?nextToken ?maxNumberOfDomains ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The ListDomains operation lists all domains associated with the Access Key ID. It returns domain names up to the limit set by MaxNumberOfDomains. A NextToken is returned if there are more than MaxNumberOfDomains domains. Calling ListDomains successive times with the NextToken provided by the operation returns up to MaxNumberOfDomains more domain names with each successive operation call."]
module GetAttributesResult =
  struct
    type getAttributesResult =
      {
      attributes: AttributeList.t option
        [@ocaml.doc "The list of attributes returned by the operation."]}
    and responseMetaData = unit
    and t =
      {
      getAttributesResult: getAttributesResult ;
      responseMetaData: responseMetaData }
    type error =
      [ `InvalidParameterValue of InvalidParameterValue.t 
      | `MissingParameter of MissingParameter.t 
      | `NoSuchDomain of NoSuchDomain.t 
      | `Unknown_operation_error of (string * string option) ]
    let context_ = "GetAttributesResult"
    let make ?attributes =
      fun () ->
        { getAttributesResult = { attributes }; responseMetaData = () }
    let error_of_json name json =
      match name with
      | "InvalidParameterValue" ->
          `InvalidParameterValue (InvalidParameterValue.of_json json)
      | "MissingParameter" ->
          `MissingParameter (MissingParameter.of_json json)
      | "NoSuchDomain" -> `NoSuchDomain (NoSuchDomain.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "InvalidParameterValue" ->
          `InvalidParameterValue (InvalidParameterValue.of_xml xml)
      | "MissingParameter" -> `MissingParameter (MissingParameter.of_xml xml)
      | "NoSuchDomain" -> `NoSuchDomain (NoSuchDomain.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `InvalidParameterValue e ->
          `Assoc
            [("error", (`String "InvalidParameterValue"));
            ("details", (InvalidParameterValue.to_json e))]
      | `MissingParameter e ->
          `Assoc
            [("error", (`String "MissingParameter"));
            ("details", (MissingParameter.to_json e))]
      | `NoSuchDomain e ->
          `Assoc
            [("error", (`String "NoSuchDomain"));
            ("details", (NoSuchDomain.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.getAttributesResult in
      structure_to_wrapped_value
        [("Attributes", (Option.map x.attributes ~f:AttributeList.to_value))]
        ~wrapper:"GetAttributesResult" ~response:"ResponseMetaData"
    let to_query v = to_query to_value v
    let of_xml t =
      let xml_arg0 = Xml.child_exn ~context:context_ t "GetAttributesResult" in
      let attributes =
        (Option.map ~f:AttributeList.of_xml)
          (Some (Xml.children xml_arg0 "Attribute")) in
      make ?attributes ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let attributes = field_map json__ "Attributes" AttributeList.of_json in
      make ?attributes ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Returns all of the attributes associated with the specified item. Optionally, the attributes returned can be limited to one or more attributes by specifying an attribute name parameter. If the item does not exist on the replica that was accessed for this operation, an empty set is returned. The system does not return an error as it cannot guarantee the item does not exist on other replicas."]
module GetAttributesRequest =
  struct
    type nonrec t =
      {
      domainName: String_.t
        [@ocaml.doc
          "The name of the domain in which to perform the operation."];
      itemName: String_.t [@ocaml.doc "The name of the item."];
      attributeNames: AttributeNameList.t option
        [@ocaml.doc "The names of the attributes."];
      consistentRead: Boolean.t option
        [@ocaml.doc
          "Determines whether or not strong consistency should be enforced when data is read from SimpleDB. If true, any data previously written to SimpleDB will be returned. Otherwise, results will be consistent eventually, and the client may not see data that was written immediately before your read."]}
    let context_ = "GetAttributesRequest"
    let make ?attributeNames =
      fun ?consistentRead ->
        fun ~domainName ->
          fun ~itemName ->
            fun () ->
              { attributeNames; consistentRead; domainName; itemName }
    let to_value x =
      structure_to_value
        [("DomainName", (Some (String_.to_value x.domainName)));
        ("ItemName", (Some (String_.to_value x.itemName)));
        ("AttributeNames",
          (Option.map x.attributeNames ~f:AttributeNameList.to_value));
        ("ConsistentRead", (Option.map x.consistentRead ~f:Boolean.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let consistentRead =
        (Option.map ~f:Boolean.of_xml) (Xml.child xml_arg0 "ConsistentRead") in
      let attributeNames =
        (Option.map ~f:AttributeNameList.of_xml)
          (Some (Xml.children xml_arg0 "AttributeName")) in
      let itemName =
        String_.of_xml (Xml.child_exn ~context:context_ xml_arg0 "ItemName") in
      let domainName =
        String_.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "DomainName") in
      make ?consistentRead ?attributeNames ~itemName ~domainName ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let consistentRead = field_map json__ "ConsistentRead" Boolean.of_json in
      let attributeNames =
        field_map json__ "AttributeNames" AttributeNameList.of_json in
      let itemName = field_map_exn json__ "ItemName" String_.of_json in
      let domainName = field_map_exn json__ "DomainName" String_.of_json in
      make ?consistentRead ?attributeNames ~itemName ~domainName ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Returns all of the attributes associated with the specified item. Optionally, the attributes returned can be limited to one or more attributes by specifying an attribute name parameter. If the item does not exist on the replica that was accessed for this operation, an empty set is returned. The system does not return an error as it cannot guarantee the item does not exist on other replicas."]
module DuplicateItemName =
  struct
    type nonrec t = {
      boxUsage: Float_.t option }
    let make ?boxUsage = fun () -> { boxUsage }
    let to_value x =
      structure_to_value
        [("BoxUsage", (Option.map x.boxUsage ~f:Float_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let boxUsage =
        (Option.map ~f:Float_.of_xml) (Xml.child xml_arg0 "BoxUsage") in
      make ?boxUsage ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let boxUsage = field_map json__ "BoxUsage" Float_.of_json in
      make ?boxUsage ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "The item name was specified more than once."]
module DomainMetadataResult =
  struct
    type domainMetadataResult =
      {
      itemCount: Integer.t option
        [@ocaml.doc "The number of all items in the domain."];
      itemNamesSizeBytes: Long.t option
        [@ocaml.doc
          "The total size of all item names in the domain, in bytes."];
      attributeNameCount: Integer.t option
        [@ocaml.doc "The number of unique attribute names in the domain."];
      attributeNamesSizeBytes: Long.t option
        [@ocaml.doc
          "The total size of all unique attribute names in the domain, in bytes."];
      attributeValueCount: Integer.t option
        [@ocaml.doc
          "The number of all attribute name/value pairs in the domain."];
      attributeValuesSizeBytes: Long.t option
        [@ocaml.doc
          "The total size of all attribute values in the domain, in bytes."];
      timestamp: Integer.t option
        [@ocaml.doc
          "The data and time when metadata was calculated, in Epoch (UNIX) seconds."]}
    and responseMetaData = unit
    and t =
      {
      domainMetadataResult: domainMetadataResult ;
      responseMetaData: responseMetaData }
    type error =
      [ `MissingParameter of MissingParameter.t 
      | `NoSuchDomain of NoSuchDomain.t 
      | `Unknown_operation_error of (string * string option) ]
    let context_ = "DomainMetadataResult"
    let make ?itemCount =
      fun ?itemNamesSizeBytes ->
        fun ?attributeNameCount ->
          fun ?attributeNamesSizeBytes ->
            fun ?attributeValueCount ->
              fun ?attributeValuesSizeBytes ->
                fun ?timestamp ->
                  fun () ->
                    {
                      domainMetadataResult =
                        {
                          itemCount;
                          itemNamesSizeBytes;
                          attributeNameCount;
                          attributeNamesSizeBytes;
                          attributeValueCount;
                          attributeValuesSizeBytes;
                          timestamp
                        };
                      responseMetaData = ()
                    }
    let error_of_json name json =
      match name with
      | "MissingParameter" ->
          `MissingParameter (MissingParameter.of_json json)
      | "NoSuchDomain" -> `NoSuchDomain (NoSuchDomain.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "MissingParameter" -> `MissingParameter (MissingParameter.of_xml xml)
      | "NoSuchDomain" -> `NoSuchDomain (NoSuchDomain.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `MissingParameter e ->
          `Assoc
            [("error", (`String "MissingParameter"));
            ("details", (MissingParameter.to_json e))]
      | `NoSuchDomain e ->
          `Assoc
            [("error", (`String "NoSuchDomain"));
            ("details", (NoSuchDomain.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.domainMetadataResult in
      structure_to_wrapped_value
        [("ItemCount", (Option.map x.itemCount ~f:Integer.to_value));
        ("ItemNamesSizeBytes",
          (Option.map x.itemNamesSizeBytes ~f:Long.to_value));
        ("AttributeNameCount",
          (Option.map x.attributeNameCount ~f:Integer.to_value));
        ("AttributeNamesSizeBytes",
          (Option.map x.attributeNamesSizeBytes ~f:Long.to_value));
        ("AttributeValueCount",
          (Option.map x.attributeValueCount ~f:Integer.to_value));
        ("AttributeValuesSizeBytes",
          (Option.map x.attributeValuesSizeBytes ~f:Long.to_value));
        ("Timestamp", (Option.map x.timestamp ~f:Integer.to_value))]
        ~wrapper:"DomainMetadataResult" ~response:"ResponseMetaData"
    let to_query v = to_query to_value v
    let of_xml t =
      let xml_arg0 = Xml.child_exn ~context:context_ t "DomainMetadataResult" in
      let timestamp =
        (Option.map ~f:Integer.of_xml) (Xml.child xml_arg0 "Timestamp") in
      let attributeValuesSizeBytes =
        (Option.map ~f:Long.of_xml)
          (Xml.child xml_arg0 "AttributeValuesSizeBytes") in
      let attributeValueCount =
        (Option.map ~f:Integer.of_xml)
          (Xml.child xml_arg0 "AttributeValueCount") in
      let attributeNamesSizeBytes =
        (Option.map ~f:Long.of_xml)
          (Xml.child xml_arg0 "AttributeNamesSizeBytes") in
      let attributeNameCount =
        (Option.map ~f:Integer.of_xml)
          (Xml.child xml_arg0 "AttributeNameCount") in
      let itemNamesSizeBytes =
        (Option.map ~f:Long.of_xml) (Xml.child xml_arg0 "ItemNamesSizeBytes") in
      let itemCount =
        (Option.map ~f:Integer.of_xml) (Xml.child xml_arg0 "ItemCount") in
      make ?timestamp ?attributeValuesSizeBytes ?attributeValueCount
        ?attributeNamesSizeBytes ?attributeNameCount ?itemNamesSizeBytes
        ?itemCount ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let timestamp = field_map json__ "Timestamp" Integer.of_json in
      let attributeValuesSizeBytes =
        field_map json__ "AttributeValuesSizeBytes" Long.of_json in
      let attributeValueCount =
        field_map json__ "AttributeValueCount" Integer.of_json in
      let attributeNamesSizeBytes =
        field_map json__ "AttributeNamesSizeBytes" Long.of_json in
      let attributeNameCount =
        field_map json__ "AttributeNameCount" Integer.of_json in
      let itemNamesSizeBytes =
        field_map json__ "ItemNamesSizeBytes" Long.of_json in
      let itemCount = field_map json__ "ItemCount" Integer.of_json in
      make ?timestamp ?attributeValuesSizeBytes ?attributeValueCount
        ?attributeNamesSizeBytes ?attributeNameCount ?itemNamesSizeBytes
        ?itemCount ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Returns information about the domain, including when the domain was created, the number of items and attributes in the domain, and the size of the attribute names and values."]
module DomainMetadataRequest =
  struct
    type nonrec t =
      {
      domainName: String_.t
        [@ocaml.doc
          "The name of the domain for which to display the metadata of."]}
    let context_ = "DomainMetadataRequest"
    let make ~domainName = fun () -> { domainName }
    let to_value x =
      structure_to_value
        [("DomainName", (Some (String_.to_value x.domainName)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let domainName =
        String_.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "DomainName") in
      make ~domainName ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let domainName = field_map_exn json__ "DomainName" String_.of_json in
      make ~domainName ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Returns information about the domain, including when the domain was created, the number of items and attributes in the domain, and the size of the attribute names and values."]
module DeleteDomainRequest =
  struct
    type nonrec t =
      {
      domainName: String_.t [@ocaml.doc "The name of the domain to delete."]}
    let context_ = "DeleteDomainRequest"
    let make ~domainName = fun () -> { domainName }
    let to_value x =
      structure_to_value
        [("DomainName", (Some (String_.to_value x.domainName)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let domainName =
        String_.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "DomainName") in
      make ~domainName ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let domainName = field_map_exn json__ "DomainName" String_.of_json in
      make ~domainName ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The DeleteDomain operation deletes a domain. Any items (and their attributes) in the domain are deleted as well. The DeleteDomain operation might take 10 or more seconds to complete."]
module DeleteAttributesRequest =
  struct
    type nonrec t =
      {
      domainName: String_.t
        [@ocaml.doc
          "The name of the domain in which to perform the operation."];
      itemName: String_.t
        [@ocaml.doc
          "The name of the item. Similar to rows on a spreadsheet, items represent individual objects that contain one or more value-attribute pairs."];
      attributes: AttributeList.t option
        [@ocaml.doc
          "A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that can be assigned to items."];
      expected: UpdateCondition.t option
        [@ocaml.doc
          "The update condition which, if specified, determines whether the specified attributes will be deleted or not. The update condition must be satisfied in order for this request to be processed and the attributes to be deleted."]}
    let context_ = "DeleteAttributesRequest"
    let make ?attributes =
      fun ?expected ->
        fun ~domainName ->
          fun ~itemName ->
            fun () -> { attributes; expected; domainName; itemName }
    let to_value x =
      structure_to_value
        [("DomainName", (Some (String_.to_value x.domainName)));
        ("ItemName", (Some (String_.to_value x.itemName)));
        ("Attributes", (Option.map x.attributes ~f:AttributeList.to_value));
        ("Expected", (Option.map x.expected ~f:UpdateCondition.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let expected =
        (Option.map ~f:UpdateCondition.of_xml)
          (Xml.child xml_arg0 "Expected") in
      let attributes =
        (Option.map ~f:AttributeList.of_xml)
          (Some (Xml.children xml_arg0 "Attribute")) in
      let itemName =
        String_.of_xml (Xml.child_exn ~context:context_ xml_arg0 "ItemName") in
      let domainName =
        String_.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "DomainName") in
      make ?expected ?attributes ~itemName ~domainName ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let expected = field_map json__ "Expected" UpdateCondition.of_json in
      let attributes = field_map json__ "Attributes" AttributeList.of_json in
      let itemName = field_map_exn json__ "ItemName" String_.of_json in
      let domainName = field_map_exn json__ "DomainName" String_.of_json in
      make ?expected ?attributes ~itemName ~domainName ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Deletes one or more attributes associated with an item. If all attributes of the item are deleted, the item is deleted. DeleteAttributes is an idempotent operation; running it multiple times on the same item or attribute does not result in an error response. Because Amazon SimpleDB makes multiple copies of item data and uses an eventual consistency update model, performing a GetAttributes or Select operation (read) immediately after a DeleteAttributes or PutAttributes operation (write) might not return updated item data."]
module CreateDomainRequest =
  struct
    type nonrec t =
      {
      domainName: String_.t
        [@ocaml.doc
          "The name of the domain to create. The name can range between 3 and 255 characters and can contain the following characters: a-z, A-Z, 0-9, '_', '-', and '.'."]}
    let context_ = "CreateDomainRequest"
    let make ~domainName = fun () -> { domainName }
    let to_value x =
      structure_to_value
        [("DomainName", (Some (String_.to_value x.domainName)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let domainName =
        String_.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "DomainName") in
      make ~domainName ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let domainName = field_map_exn json__ "DomainName" String_.of_json in
      make ~domainName ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The CreateDomain operation creates a new domain. The domain name should be unique among the domains associated with the Access Key ID provided in the request. The CreateDomain operation may take 10 or more seconds to complete. The client can create up to 100 domains per account. If the client requires additional domains, go to http://aws.amazon.com/contact-us/simpledb-limit-request/."]
module BatchPutAttributesRequest =
  struct
    type nonrec t =
      {
      domainName: String_.t
        [@ocaml.doc
          "The name of the domain in which the attributes are being stored."];
      items: ReplaceableItemList.t
        [@ocaml.doc "A list of items on which to perform the operation."]}
    let context_ = "BatchPutAttributesRequest"
    let make ~domainName = fun ~items -> fun () -> { domainName; items }
    let to_value x =
      structure_to_value
        [("DomainName", (Some (String_.to_value x.domainName)));
        ("Items", (Some (ReplaceableItemList.to_value x.items)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let items = ReplaceableItemList.of_xml (Xml.children xml_arg0 "Item") in
      let domainName =
        String_.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "DomainName") in
      make ~items ~domainName ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let items = field_map_exn json__ "Items" ReplaceableItemList.of_json in
      let domainName = field_map_exn json__ "DomainName" String_.of_json in
      make ~items ~domainName ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The BatchPutAttributes operation creates or replaces attributes within one or more items. By using this operation, the client can perform multiple PutAttribute operation with a single call. This helps yield savings in round trips and latencies, enabling Amazon SimpleDB to optimize requests and generally produce better throughput. The client may specify the item name with the Item.X.ItemName parameter. The client may specify new attributes using a combination of the Item.X.Attribute.Y.Name and Item.X.Attribute.Y.Value parameters. The client may specify the first attribute for the first item using the parameters Item.0.Attribute.0.Name and Item.0.Attribute.0.Value, and for the second attribute for the first item by the parameters Item.0.Attribute.1.Name and Item.0.Attribute.1.Value, and so on. Attributes are uniquely identified within an item by their name/value combination. For example, a single item can have the attributes \\{ \"first_name\", \"first_value\" \\} and \\{ \"first_name\", \"second_value\" \\}. However, it cannot have two attribute instances where both the Item.X.Attribute.Y.Name and Item.X.Attribute.Y.Value are the same. Optionally, the requester can supply the Replace parameter for each individual value. Setting this value to true will cause the new attribute values to replace the existing attribute values. For example, if an item I has the attributes \\{ 'a', '1' \\}, \\{ 'b', '2'\\} and \\{ 'b', '3' \\} and the requester does a BatchPutAttributes of \\{'I', 'b', '4' \\} with the Replace parameter set to true, the final attributes of the item will be \\{ 'a', '1' \\} and \\{ 'b', '4' \\}, replacing the previous values of the 'b' attribute with the new value. This operation is vulnerable to exceeding the maximum URL size when making a REST request using the HTTP GET method. This operation does not support conditions using Expected.X.Name, Expected.X.Value, or Expected.X.Exists. You can execute multiple BatchPutAttributes operations and other operations in parallel. However, large numbers of concurrent BatchPutAttributes calls can result in Service Unavailable (503) responses. The following limitations are enforced for this operation: 256 attribute name-value pairs per item 1 MB request size 1 billion attributes per domain 10 GB of total user data storage per domain 25 item limit per BatchPutAttributes operation"]
module BatchDeleteAttributesRequest =
  struct
    type nonrec t =
      {
      domainName: String_.t
        [@ocaml.doc
          "The name of the domain in which the attributes are being deleted."];
      items: DeletableItemList.t
        [@ocaml.doc "A list of items on which to perform the operation."]}
    let context_ = "BatchDeleteAttributesRequest"
    let make ~domainName = fun ~items -> fun () -> { domainName; items }
    let to_value x =
      structure_to_value
        [("DomainName", (Some (String_.to_value x.domainName)));
        ("Items", (Some (DeletableItemList.to_value x.items)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let items = DeletableItemList.of_xml (Xml.children xml_arg0 "Item") in
      let domainName =
        String_.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "DomainName") in
      make ~items ~domainName ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let items = field_map_exn json__ "Items" DeletableItemList.of_json in
      let domainName = field_map_exn json__ "DomainName" String_.of_json in
      make ~items ~domainName ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Performs multiple DeleteAttributes operations in a single call, which reduces round trips and latencies. This enables Amazon SimpleDB to optimize requests, which generally yields better throughput. The following limitations are enforced for this operation: 1 MB request size 25 item limit per BatchDeleteAttributes operation"]
module AttributeDoesNotExist =
  struct
    type nonrec t = {
      boxUsage: Float_.t option }
    let make ?boxUsage = fun () -> { boxUsage }
    let to_value x =
      structure_to_value
        [("BoxUsage", (Option.map x.boxUsage ~f:Float_.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let boxUsage =
        (Option.map ~f:Float_.of_xml) (Xml.child xml_arg0 "BoxUsage") in
      make ?boxUsage ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let boxUsage = field_map json__ "BoxUsage" Float_.of_json in
      make ?boxUsage ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "The specified attribute does not exist."]