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
(* 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.sagemaker_runtime
let apiVersion = "2017-05-13"
let endpointPrefix = "runtime.sagemaker"
let serviceFullName = "Amazon SageMaker Runtime"
let signatureVersion = "v4"
let protocol = "rest_json"
let globalEndpoint = endpointPrefix ^ ".amazonaws.com"
let simple_to_json to_value x =
  Botodata.Json.value_to_json_scalar (to_value x)
let composed_to_json to_value x = Botodata.Json.value_to_json (to_value x)
let to_query to_value x = Client.Query.of_value (to_value x)
let structure_to_value_aux st ~f =
  let filter = function | (k, Some v) -> Some (k, v) | _ -> None in
  let pair k v = (k, v) in
  let defer_value (k, dv) = pair k dv in
  ((List.filter_map st ~f:filter) |> (List.map ~f:defer_value)) |>
    (fun x -> `Structure (f x))
let structure_to_value = structure_to_value_aux ~f:Fn.id
let structure_to_wrapped_value ~wrapper ~response =
  structure_to_value_aux
    ~f:(fun x -> [(wrapper, (`Structure x)); (response, (`Structure []))])
module Message =
  struct
    type nonrec t = string
    let context_ = "Message"
    let make i =
      let open Result in ok_or_failwith (check_string_max i ~max:2048); 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:"Message" j
    let to_json = simple_to_json to_value
  end
module ErrorCode =
  struct
    type nonrec t = string
    let context_ = "ErrorCode"
    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:"ErrorCode" j
    let to_json = simple_to_json to_value
  end
module PartBlob =
  struct
    type nonrec t = string
    let make i = i
    let of_string x = x
    let to_value x = `Blob x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml xml_arg0 = string_of_xml ~kind:"a blob" xml_arg0
    let of_json j = string_of_json ~kind:"a blob" j
    let to_json = simple_to_json to_value
  end
module LogStreamArn =
  struct
    type nonrec t = string
    let context_ = "LogStreamArn"
    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:"LogStreamArn" j
    let to_json = simple_to_json to_value
  end
module StatusCode =
  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 StatusCode" 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 InternalStreamFailure =
  struct
    type nonrec t = {
      message: Message.t option }
    let make ?message = fun () -> { message }
    let to_value x =
      structure_to_value
        [("Message", (Option.map x.message ~f:Message.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let message =
        (Option.map ~f:Message.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" Message.of_json in
      make ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "The stream processing failed because of an unknown error, exception or failure. Try your request again."]
module ModelStreamError =
  struct
    type nonrec t =
      {
      message: Message.t option ;
      errorCode: ErrorCode.t option
        [@ocaml.doc
          "This error can have the following error codes: ModelInvocationTimeExceeded The model failed to finish sending the response within the timeout period allowed by Amazon SageMaker AI. StreamBroken The Transmission Control Protocol (TCP) connection between the client and the model was reset or closed."]}
    let make ?message = fun ?errorCode -> fun () -> { message; errorCode }
    let to_value x =
      structure_to_value
        [("Message", (Option.map x.message ~f:Message.to_value));
        ("ErrorCode", (Option.map x.errorCode ~f:ErrorCode.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let errorCode =
        (Option.map ~f:ErrorCode.of_xml) (Xml.child xml_arg0 "ErrorCode") in
      let message =
        (Option.map ~f:Message.of_xml) (Xml.child xml_arg0 "Message") in
      make ?errorCode ?message ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let errorCode = field_map json__ "ErrorCode" ErrorCode.of_json in
      let message = field_map json__ "Message" Message.of_json in
      make ?errorCode ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "An error occurred while streaming the response body. This error can have the following error codes: ModelInvocationTimeExceeded The model failed to finish sending the response within the timeout period allowed by Amazon SageMaker AI. StreamBroken The Transmission Control Protocol (TCP) connection between the client and the model was reset or closed."]
module PayloadPart =
  struct
    type nonrec t =
      {
      bytes: PartBlob.t option
        [@ocaml.doc
          "A blob that contains part of the response for your streaming inference request."]}
    let make ?bytes = fun () -> { bytes }
    let of_header_and_body = ((fun (xs, pipe) -> make ?bytes:(Some pipe) ())
      [@warning "-27"])
    let to_value x =
      structure_to_value
        [("Bytes", (Option.map x.bytes ~f:PartBlob.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let bytes =
        (Option.map ~f:PartBlob.of_xml) (Xml.child xml_arg0 "Bytes") in
      make ?bytes ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let bytes = field_map json__ "Bytes" PartBlob.of_json in make ?bytes ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "A wrapper for pieces of the payload that's returned in response to a streaming inference request. A streaming inference response consists of one or more payload parts."]
module CustomAttributesHeader =
  struct
    type nonrec t = string
    let context_ = "CustomAttributesHeader"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_max i ~max:1024) >>=
             (fun () -> check_pattern i ~pattern:"\\p{ASCII}*"));
        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:"CustomAttributesHeader" j
    let to_json = simple_to_json to_value
  end
module Header =
  struct
    type nonrec t = string
    let context_ = "Header"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_max i ~max:1024) >>=
             (fun () -> check_pattern i ~pattern:"\\p{ASCII}*"));
        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:"Header" j
    let to_json = simple_to_json to_value
  end
module InternalFailure =
  struct
    type nonrec t = {
      message: Message.t option }
    let make ?message = fun () -> { message }
    let to_value x =
      structure_to_value
        [("Message", (Option.map x.message ~f:Message.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let message =
        (Option.map ~f:Message.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" Message.of_json in
      make ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "An internal failure occurred."]
module ModelError =
  struct
    type nonrec t =
      {
      message: Message.t option ;
      originalStatusCode: StatusCode.t option
        [@ocaml.doc "Original status code."];
      originalMessage: Message.t option [@ocaml.doc "Original message."];
      logStreamArn: LogStreamArn.t option
        [@ocaml.doc "The Amazon Resource Name (ARN) of the log stream."]}
    let make ?message =
      fun ?originalStatusCode ->
        fun ?originalMessage ->
          fun ?logStreamArn ->
            fun () ->
              { message; originalStatusCode; originalMessage; logStreamArn }
    let to_value x =
      structure_to_value
        [("Message", (Option.map x.message ~f:Message.to_value));
        ("OriginalStatusCode",
          (Option.map x.originalStatusCode ~f:StatusCode.to_value));
        ("OriginalMessage",
          (Option.map x.originalMessage ~f:Message.to_value));
        ("LogStreamArn",
          (Option.map x.logStreamArn ~f:LogStreamArn.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let logStreamArn =
        (Option.map ~f:LogStreamArn.of_xml)
          (Xml.child xml_arg0 "LogStreamArn") in
      let originalMessage =
        (Option.map ~f:Message.of_xml) (Xml.child xml_arg0 "OriginalMessage") in
      let originalStatusCode =
        (Option.map ~f:StatusCode.of_xml)
          (Xml.child xml_arg0 "OriginalStatusCode") in
      let message =
        (Option.map ~f:Message.of_xml) (Xml.child xml_arg0 "Message") in
      make ?logStreamArn ?originalMessage ?originalStatusCode ?message ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let logStreamArn = field_map json__ "LogStreamArn" LogStreamArn.of_json in
      let originalMessage =
        field_map json__ "OriginalMessage" Message.of_json in
      let originalStatusCode =
        field_map json__ "OriginalStatusCode" StatusCode.of_json in
      let message = field_map json__ "Message" Message.of_json in
      make ?logStreamArn ?originalMessage ?originalStatusCode ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Model (owned by the customer in the container) returned 4xx or 5xx error code."]
module ResponseStream =
  struct
    type nonrec t =
      {
      payloadPart: PayloadPart.t option
        [@ocaml.doc
          "A wrapper for pieces of the payload that's returned in response to a streaming inference request. A streaming inference response consists of one or more payload parts."];
      modelStreamError: ModelStreamError.t option
        [@ocaml.doc
          "An error occurred while streaming the response body. This error can have the following error codes: ModelInvocationTimeExceeded The model failed to finish sending the response within the timeout period allowed by Amazon SageMaker AI. StreamBroken The Transmission Control Protocol (TCP) connection between the client and the model was reset or closed."];
      internalStreamFailure: InternalStreamFailure.t option
        [@ocaml.doc
          "The stream processing failed because of an unknown error, exception or failure. Try your request again."]}
    let make ?payloadPart =
      fun ?modelStreamError ->
        fun ?internalStreamFailure ->
          fun () -> { payloadPart; modelStreamError; internalStreamFailure }
    let to_value x =
      structure_to_value
        [("PayloadPart", (Option.map x.payloadPart ~f:PayloadPart.to_value));
        ("ModelStreamError",
          (Option.map x.modelStreamError ~f:ModelStreamError.to_value));
        ("InternalStreamFailure",
          (Option.map x.internalStreamFailure
             ~f:InternalStreamFailure.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let internalStreamFailure =
        (Option.map ~f:InternalStreamFailure.of_xml)
          (Xml.child xml_arg0 "InternalStreamFailure") in
      let modelStreamError =
        (Option.map ~f:ModelStreamError.of_xml)
          (Xml.child xml_arg0 "ModelStreamError") in
      let payloadPart =
        (Option.map ~f:PayloadPart.of_xml) (Xml.child xml_arg0 "PayloadPart") in
      make ?internalStreamFailure ?modelStreamError ?payloadPart ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let internalStreamFailure =
        field_map json__ "InternalStreamFailure"
          InternalStreamFailure.of_json in
      let modelStreamError =
        field_map json__ "ModelStreamError" ModelStreamError.of_json in
      let payloadPart = field_map json__ "PayloadPart" PayloadPart.of_json in
      make ?internalStreamFailure ?modelStreamError ?payloadPart ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "A stream of payload parts. Each part contains a portion of the response for a streaming inference request."]
module ServiceUnavailable =
  struct
    type nonrec t = {
      message: Message.t option }
    let make ?message = fun () -> { message }
    let to_value x =
      structure_to_value
        [("Message", (Option.map x.message ~f:Message.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let message =
        (Option.map ~f:Message.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" Message.of_json in
      make ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "The service is unavailable. Try your call again."]
module ValidationError =
  struct
    type nonrec t = {
      message: Message.t option }
    let make ?message = fun () -> { message }
    let to_value x =
      structure_to_value
        [("Message", (Option.map x.message ~f:Message.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let message =
        (Option.map ~f:Message.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" Message.of_json in
      make ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "Inspect your request and try again."]
module BodyBlob =
  struct
    type nonrec t = string
    let make i = i
    let of_string x = x
    let to_value x = `Blob x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml xml_arg0 = string_of_xml ~kind:"a blob" xml_arg0
    let of_json j = string_of_json ~kind:"a blob" j
    let to_json = simple_to_json to_value
  end
module EndpointName =
  struct
    type nonrec t = string
    let context_ = "EndpointName"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_max i ~max:63) >>=
             (fun () ->
                check_pattern i ~pattern:"^[a-zA-Z0-9](-*[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:"EndpointName" j
    let to_json = simple_to_json to_value
  end
module InferenceComponentHeader =
  struct
    type nonrec t = string
    let context_ = "InferenceComponentHeader"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_max i ~max:63) >>=
             (fun () ->
                check_pattern i
                  ~pattern:"^[a-zA-Z0-9]([\\-a-zA-Z0-9]*[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:"InferenceComponentHeader" j
    let to_json = simple_to_json to_value
  end
module InferenceId =
  struct
    type nonrec t = string
    let context_ = "InferenceId"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:1) >>=
             (fun () ->
                (check_string_max i ~max:64) >>=
                  (fun () ->
                     check_pattern i ~pattern:"\\A\\S[\\p{Print}]*\\z")));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"InferenceId" j
    let to_json = simple_to_json to_value
  end
module SessionIdHeader =
  struct
    type nonrec t = string
    let context_ = "SessionIdHeader"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_max i ~max:256) >>=
             (fun () ->
                check_pattern i ~pattern:"^[a-zA-Z0-9](-*[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:"SessionIdHeader" j
    let to_json = simple_to_json to_value
  end
module TargetContainerHostnameHeader =
  struct
    type nonrec t = string
    let context_ = "TargetContainerHostnameHeader"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_max i ~max:63) >>=
             (fun () ->
                check_pattern i ~pattern:"^[a-zA-Z0-9](-*[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:"TargetContainerHostnameHeader" j
    let to_json = simple_to_json to_value
  end
module TargetVariantHeader =
  struct
    type nonrec t = string
    let context_ = "TargetVariantHeader"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_max i ~max:63) >>=
             (fun () ->
                check_pattern i ~pattern:"^[a-zA-Z0-9](-*[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:"TargetVariantHeader" j
    let to_json = simple_to_json to_value
  end
module InternalDependencyException =
  struct
    type nonrec t = {
      message: Message.t option }
    let make ?message = fun () -> { message }
    let to_value x =
      structure_to_value
        [("Message", (Option.map x.message ~f:Message.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let message =
        (Option.map ~f:Message.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" Message.of_json in
      make ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Your request caused an exception with an internal dependency. Contact customer support."]
module ModelNotReadyException =
  struct
    type nonrec t = {
      message: Message.t option }
    let make ?message = fun () -> { message }
    let to_value x =
      structure_to_value
        [("Message", (Option.map x.message ~f:Message.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let message =
        (Option.map ~f:Message.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" Message.of_json in
      make ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Either a serverless endpoint variant's resources are still being provisioned, or a multi-model endpoint is still downloading or loading the target model. Wait and try your request again."]
module NewSessionResponseHeader =
  struct
    type nonrec t = string
    let context_ = "NewSessionResponseHeader"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_max i ~max:256) >>=
             (fun () ->
                check_pattern i
                  ~pattern:"^[a-zA-Z0-9](-*[a-zA-Z0-9])*;\\sExpires=[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$"));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"NewSessionResponseHeader" j
    let to_json = simple_to_json to_value
  end
module EnableExplanationsHeader =
  struct
    type nonrec t = string
    let context_ = "EnableExplanationsHeader"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:1) >>=
             (fun () ->
                (check_string_max i ~max:64) >>=
                  (fun () -> check_pattern i ~pattern:".*")));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"EnableExplanationsHeader" j
    let to_json = simple_to_json to_value
  end
module SessionIdOrNewSessionConstantHeader =
  struct
    type nonrec t = string
    let context_ = "SessionIdOrNewSessionConstantHeader"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_max i ~max:256) >>=
             (fun () ->
                check_pattern i
                  ~pattern:"^(NEW_SESSION)$|^[a-zA-Z0-9](-*[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:"SessionIdOrNewSessionConstantHeader" j
    let to_json = simple_to_json to_value
  end
module TargetModelHeader =
  struct
    type nonrec t = string
    let context_ = "TargetModelHeader"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:1) >>=
             (fun () ->
                (check_string_max i ~max:1024) >>=
                  (fun () ->
                     check_pattern i ~pattern:"\\A\\S[\\p{Print}]*\\z")));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"TargetModelHeader" j
    let to_json = simple_to_json to_value
  end
module FilenameHeader =
  struct
    type nonrec t = string
    let context_ = "FilenameHeader"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:1) >>=
             (fun () ->
                (check_string_max i ~max:32) >>=
                  (fun () ->
                     check_pattern i
                       ~pattern:"^(?!.*\\..*\\.)[a-zA-Z0-9][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:"FilenameHeader" j
    let to_json = simple_to_json to_value
  end
module InputLocationHeader =
  struct
    type nonrec t = string
    let context_ = "InputLocationHeader"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:1) >>=
             (fun () ->
                (check_string_max i ~max:1024) >>=
                  (fun () ->
                     check_pattern i ~pattern:"^(https|s3)://([^/]+)/?(.*)$")));
        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:"InputLocationHeader" j
    let to_json = simple_to_json to_value
  end
module InvocationTimeoutSecondsHeader =
  struct
    type nonrec t = int
    let make i =
      let open Result in
        ok_or_failwith
          ((check_int_max i ~max:3600) >>= (fun () -> check_int_min i ~min: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 InvocationTimeoutSecondsHeader"
           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 RequestTTLSecondsHeader =
  struct
    type nonrec t = int
    let make i =
      let open Result in
        ok_or_failwith
          ((check_int_max i ~max:21600) >>=
             (fun () -> check_int_min i ~min:60));
        i
    let of_string = Int.of_string
    let to_value x = `Integer x
    let to_query v = to_query to_value v
    let to_header x = Int.to_string x
    let of_xml xml_arg0 =
      Int.of_string
        (string_of_xml ~kind:"an integer for RequestTTLSecondsHeader"
           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 S3OutputPathExtensionHeader =
  struct
    type nonrec t = string
    let context_ = "S3OutputPathExtensionHeader"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:1) >>=
             (fun () ->
                (check_string_max i ~max:512) >>=
                  (fun () ->
                     check_pattern i
                       ~pattern:"^(?!s3:|https:)[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:"S3OutputPathExtensionHeader" j
    let to_json = simple_to_json to_value
  end
module InvokeEndpointWithResponseStreamOutput =
  struct
    type nonrec t =
      {
      body: ResponseStream.t option ;
      contentType: Header.t option
        [@ocaml.doc
          "The MIME type of the inference returned from the model container."];
      invokedProductionVariant: Header.t option
        [@ocaml.doc "Identifies the production variant that was invoked."];
      customAttributes: CustomAttributesHeader.t option
        [@ocaml.doc
          "Provides additional information in the response about the inference returned by a model hosted at an Amazon SageMaker AI endpoint. The information is an opaque value that is forwarded verbatim. You could use this value, for example, to return an ID received in the CustomAttributes header of a request or other metadata that a service endpoint was programmed to produce. The value must consist of no more than 1024 visible US-ASCII characters as specified in Section 3.3.6. Field Value Components of the Hypertext Transfer Protocol (HTTP/1.1). If the customer wants the custom attribute returned, the model must set the custom attribute to be included on the way back. The code in your model is responsible for setting or updating any custom attributes in the response. If your code does not set this value in the response, an empty value is returned. For example, if a custom attribute represents the trace ID, your model can prepend the custom attribute with Trace ID: in your post-processing function. This feature is currently supported in the Amazon Web Services SDKs but not in the Amazon SageMaker AI Python SDK."]}
    type nonrec error =
      [ `InternalFailure of InternalFailure.t 
      | `InternalStreamFailure of InternalStreamFailure.t 
      | `ModelError of ModelError.t 
      | `ModelStreamError of ModelStreamError.t 
      | `ServiceUnavailable of ServiceUnavailable.t 
      | `ValidationError of ValidationError.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?body =
      fun ?contentType ->
        fun ?invokedProductionVariant ->
          fun ?customAttributes ->
            fun () ->
              { body; contentType; invokedProductionVariant; customAttributes
              }
    let error_of_json name json =
      match name with
      | "InternalFailure" -> `InternalFailure (InternalFailure.of_json json)
      | "InternalStreamFailure" ->
          `InternalStreamFailure (InternalStreamFailure.of_json json)
      | "ModelError" -> `ModelError (ModelError.of_json json)
      | "ModelStreamError" ->
          `ModelStreamError (ModelStreamError.of_json json)
      | "ServiceUnavailable" ->
          `ServiceUnavailable (ServiceUnavailable.of_json json)
      | "ValidationError" -> `ValidationError (ValidationError.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "InternalFailure" -> `InternalFailure (InternalFailure.of_xml xml)
      | "InternalStreamFailure" ->
          `InternalStreamFailure (InternalStreamFailure.of_xml xml)
      | "ModelError" -> `ModelError (ModelError.of_xml xml)
      | "ModelStreamError" -> `ModelStreamError (ModelStreamError.of_xml xml)
      | "ServiceUnavailable" ->
          `ServiceUnavailable (ServiceUnavailable.of_xml xml)
      | "ValidationError" -> `ValidationError (ValidationError.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `InternalFailure e ->
          `Assoc
            [("error", (`String "InternalFailure"));
            ("details", (InternalFailure.to_json e))]
      | `InternalStreamFailure e ->
          `Assoc
            [("error", (`String "InternalStreamFailure"));
            ("details", (InternalStreamFailure.to_json e))]
      | `ModelError e ->
          `Assoc
            [("error", (`String "ModelError"));
            ("details", (ModelError.to_json e))]
      | `ModelStreamError e ->
          `Assoc
            [("error", (`String "ModelStreamError"));
            ("details", (ModelStreamError.to_json e))]
      | `ServiceUnavailable e ->
          `Assoc
            [("error", (`String "ServiceUnavailable"));
            ("details", (ServiceUnavailable.to_json e))]
      | `ValidationError e ->
          `Assoc
            [("error", (`String "ValidationError"));
            ("details", (ValidationError.to_json e))]
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let of_header_and_body =
      ((fun (xs, pipe) ->
          make ?body:(Some pipe)
            ?contentType:(Option.map
                            ((List.Assoc.find ~equal:String.Caseless.equal)
                               xs "X-Amzn-SageMaker-Content-Type")
                            ~f:Header.of_string)
            ?invokedProductionVariant:(Option.map
                                         ((List.Assoc.find
                                             ~equal:String.Caseless.equal) xs
                                            "x-Amzn-Invoked-Production-Variant")
                                         ~f:Header.of_string)
            ?customAttributes:(Option.map
                                 ((List.Assoc.find
                                     ~equal:String.Caseless.equal) xs
                                    "X-Amzn-SageMaker-Custom-Attributes")
                                 ~f:CustomAttributesHeader.of_string) ())
      [@warning "-27"])
    let to_value x =
      structure_to_value
        [("Body", (Option.map x.body ~f:ResponseStream.to_value));
        ("X-Amzn-SageMaker-Content-Type",
          (Option.map x.contentType ~f:Header.to_value));
        ("x-Amzn-Invoked-Production-Variant",
          (Option.map x.invokedProductionVariant ~f:Header.to_value));
        ("X-Amzn-SageMaker-Custom-Attributes",
          (Option.map x.customAttributes ~f:CustomAttributesHeader.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let customAttributes =
        (Option.map ~f:CustomAttributesHeader.of_xml)
          (Xml.child xml_arg0 "X-Amzn-SageMaker-Custom-Attributes") in
      let invokedProductionVariant =
        (Option.map ~f:Header.of_xml)
          (Xml.child xml_arg0 "x-Amzn-Invoked-Production-Variant") in
      let contentType =
        (Option.map ~f:Header.of_xml)
          (Xml.child xml_arg0 "X-Amzn-SageMaker-Content-Type") in
      let body =
        (Option.map ~f:ResponseStream.of_xml) (Xml.child xml_arg0 "Body") in
      make ?customAttributes ?invokedProductionVariant ?contentType ?body ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let customAttributes =
        field_map json__ "CustomAttributes" CustomAttributesHeader.of_json in
      let invokedProductionVariant =
        field_map json__ "InvokedProductionVariant" Header.of_json in
      let contentType = field_map json__ "ContentType" Header.of_json in
      let body = field_map json__ "Body" ResponseStream.of_json in
      make ?customAttributes ?invokedProductionVariant ?contentType ?body ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Invokes a model at the specified endpoint to return the inference response as a stream. The inference stream provides the response payload incrementally as a series of parts. Before you can get an inference stream, you must have access to a model that's deployed using Amazon SageMaker AI hosting services, and the container for that model must support inference streaming. For more information that can help you use this API, see the following sections in the Amazon SageMaker AI Developer Guide: For information about how to add streaming support to a model, see How Containers Serve Requests. For information about how to process the streaming response, see Invoke real-time endpoints. Before you can use this operation, your IAM permissions must allow the sagemaker:InvokeEndpoint action. For more information about Amazon SageMaker AI actions for IAM policies, see Actions, resources, and condition keys for Amazon SageMaker AI in the IAM Service Authorization Reference. Amazon SageMaker AI strips all POST headers except those supported by the API. Amazon SageMaker AI might add additional headers. You should not rely on the behavior of headers outside those enumerated in the request syntax. Calls to InvokeEndpointWithResponseStream are authenticated by using Amazon Web Services Signature Version 4. For information, see Authenticating Requests (Amazon Web Services Signature Version 4) in the Amazon S3 API Reference."]
module InvokeEndpointWithResponseStreamInput =
  struct
    type nonrec t =
      {
      endpointName: EndpointName.t
        [@ocaml.doc
          "The name of the endpoint that you specified when you created the endpoint using the CreateEndpoint API."];
      body: BodyBlob.t
        [@ocaml.doc
          "Provides input data, in the format specified in the ContentType request header. Amazon SageMaker AI passes all of the data in the body to the model. For information about the format of the request body, see Common Data Formats-Inference."];
      contentType: Header.t option
        [@ocaml.doc "The MIME type of the input data in the request body."];
      accept: Header.t option
        [@ocaml.doc
          "The desired MIME type of the inference response from the model container."];
      customAttributes: CustomAttributesHeader.t option
        [@ocaml.doc
          "Provides additional information about a request for an inference submitted to a model hosted at an Amazon SageMaker AI endpoint. The information is an opaque value that is forwarded verbatim. You could use this value, for example, to provide an ID that you can use to track a request or to provide other metadata that a service endpoint was programmed to process. The value must consist of no more than 1024 visible US-ASCII characters as specified in Section 3.3.6. Field Value Components of the Hypertext Transfer Protocol (HTTP/1.1). The code in your model is responsible for setting or updating any custom attributes in the response. If your code does not set this value in the response, an empty value is returned. For example, if a custom attribute represents the trace ID, your model can prepend the custom attribute with Trace ID: in your post-processing function. This feature is currently supported in the Amazon Web Services SDKs but not in the Amazon SageMaker AI Python SDK."];
      targetVariant: TargetVariantHeader.t option
        [@ocaml.doc
          "Specify the production variant to send the inference request to when invoking an endpoint that is running two or more variants. Note that this parameter overrides the default behavior for the endpoint, which is to distribute the invocation traffic based on the variant weights. For information about how to use variant targeting to perform a/b testing, see Test models in production"];
      targetContainerHostname: TargetContainerHostnameHeader.t option
        [@ocaml.doc
          "If the endpoint hosts multiple containers and is configured to use direct invocation, this parameter specifies the host name of the container to invoke."];
      inferenceId: InferenceId.t option
        [@ocaml.doc "An identifier that you assign to your request."];
      inferenceComponentName: InferenceComponentHeader.t option
        [@ocaml.doc
          "If the endpoint hosts one or more inference components, this parameter specifies the name of inference component to invoke for a streaming response."];
      sessionId: SessionIdHeader.t option
        [@ocaml.doc
          "The ID of a stateful session to handle your request. You can't create a stateful session by using the InvokeEndpointWithResponseStream action. Instead, you can create one by using the InvokeEndpoint action. In your request, you specify NEW_SESSION for the SessionId request parameter. The response to that request provides the session ID for the NewSessionId response parameter."]}
    let context_ = "InvokeEndpointWithResponseStreamInput"
    let make ?contentType =
      fun ?accept ->
        fun ?customAttributes ->
          fun ?targetVariant ->
            fun ?targetContainerHostname ->
              fun ?inferenceId ->
                fun ?inferenceComponentName ->
                  fun ?sessionId ->
                    fun ~endpointName ->
                      fun ~body ->
                        fun () ->
                          {
                            contentType;
                            accept;
                            customAttributes;
                            targetVariant;
                            targetContainerHostname;
                            inferenceId;
                            inferenceComponentName;
                            sessionId;
                            endpointName;
                            body
                          }
    let of_header_and_body =
      ((fun (xs, pipe) ->
          make
            ~endpointName:(EndpointName.of_string
                             ((List.Assoc.find_exn
                                 ~equal:String.Caseless.equal) xs
                                "EndpointName")) ~body:pipe
            ?contentType:(Option.map
                            ((List.Assoc.find ~equal:String.Caseless.equal)
                               xs "Content-Type") ~f:Header.of_string)
            ?accept:(Option.map
                       ((List.Assoc.find ~equal:String.Caseless.equal) xs
                          "X-Amzn-SageMaker-Accept") ~f:Header.of_string)
            ?customAttributes:(Option.map
                                 ((List.Assoc.find
                                     ~equal:String.Caseless.equal) xs
                                    "X-Amzn-SageMaker-Custom-Attributes")
                                 ~f:CustomAttributesHeader.of_string)
            ?targetVariant:(Option.map
                              ((List.Assoc.find ~equal:String.Caseless.equal)
                                 xs "X-Amzn-SageMaker-Target-Variant")
                              ~f:TargetVariantHeader.of_string)
            ?targetContainerHostname:(Option.map
                                        ((List.Assoc.find
                                            ~equal:String.Caseless.equal) xs
                                           "X-Amzn-SageMaker-Target-Container-Hostname")
                                        ~f:TargetContainerHostnameHeader.of_string)
            ?inferenceId:(Option.map
                            ((List.Assoc.find ~equal:String.Caseless.equal)
                               xs "X-Amzn-SageMaker-Inference-Id")
                            ~f:InferenceId.of_string)
            ?inferenceComponentName:(Option.map
                                       ((List.Assoc.find
                                           ~equal:String.Caseless.equal) xs
                                          "X-Amzn-SageMaker-Inference-Component")
                                       ~f:InferenceComponentHeader.of_string)
            ?sessionId:(Option.map
                          ((List.Assoc.find ~equal:String.Caseless.equal) xs
                             "X-Amzn-SageMaker-Session-Id")
                          ~f:SessionIdHeader.of_string) ())
      [@warning "-27"])
    let to_value x =
      structure_to_value
        [("EndpointName", (Some (EndpointName.to_value x.endpointName)));
        ("Body", (Some (BodyBlob.to_value x.body)));
        ("Content-Type", (Option.map x.contentType ~f:Header.to_value));
        ("X-Amzn-SageMaker-Accept", (Option.map x.accept ~f:Header.to_value));
        ("X-Amzn-SageMaker-Custom-Attributes",
          (Option.map x.customAttributes ~f:CustomAttributesHeader.to_value));
        ("X-Amzn-SageMaker-Target-Variant",
          (Option.map x.targetVariant ~f:TargetVariantHeader.to_value));
        ("X-Amzn-SageMaker-Target-Container-Hostname",
          (Option.map x.targetContainerHostname
             ~f:TargetContainerHostnameHeader.to_value));
        ("X-Amzn-SageMaker-Inference-Id",
          (Option.map x.inferenceId ~f:InferenceId.to_value));
        ("X-Amzn-SageMaker-Inference-Component",
          (Option.map x.inferenceComponentName
             ~f:InferenceComponentHeader.to_value));
        ("X-Amzn-SageMaker-Session-Id",
          (Option.map x.sessionId ~f:SessionIdHeader.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let sessionId =
        (Option.map ~f:SessionIdHeader.of_xml)
          (Xml.child xml_arg0 "X-Amzn-SageMaker-Session-Id") in
      let inferenceComponentName =
        (Option.map ~f:InferenceComponentHeader.of_xml)
          (Xml.child xml_arg0 "X-Amzn-SageMaker-Inference-Component") in
      let inferenceId =
        (Option.map ~f:InferenceId.of_xml)
          (Xml.child xml_arg0 "X-Amzn-SageMaker-Inference-Id") in
      let targetContainerHostname =
        (Option.map ~f:TargetContainerHostnameHeader.of_xml)
          (Xml.child xml_arg0 "X-Amzn-SageMaker-Target-Container-Hostname") in
      let targetVariant =
        (Option.map ~f:TargetVariantHeader.of_xml)
          (Xml.child xml_arg0 "X-Amzn-SageMaker-Target-Variant") in
      let customAttributes =
        (Option.map ~f:CustomAttributesHeader.of_xml)
          (Xml.child xml_arg0 "X-Amzn-SageMaker-Custom-Attributes") in
      let accept =
        (Option.map ~f:Header.of_xml)
          (Xml.child xml_arg0 "X-Amzn-SageMaker-Accept") in
      let contentType =
        (Option.map ~f:Header.of_xml) (Xml.child xml_arg0 "Content-Type") in
      let body =
        BodyBlob.of_xml (Xml.child_exn ~context:context_ xml_arg0 "Body") in
      let endpointName =
        EndpointName.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "EndpointName") in
      make ?sessionId ?inferenceComponentName ?inferenceId
        ?targetContainerHostname ?targetVariant ?customAttributes ?accept
        ?contentType ~body ~endpointName ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let sessionId = field_map json__ "SessionId" SessionIdHeader.of_json in
      let inferenceComponentName =
        field_map json__ "InferenceComponentName"
          InferenceComponentHeader.of_json in
      let inferenceId = field_map json__ "InferenceId" InferenceId.of_json in
      let targetContainerHostname =
        field_map json__ "TargetContainerHostname"
          TargetContainerHostnameHeader.of_json in
      let targetVariant =
        field_map json__ "TargetVariant" TargetVariantHeader.of_json in
      let customAttributes =
        field_map json__ "CustomAttributes" CustomAttributesHeader.of_json in
      let accept = field_map json__ "Accept" Header.of_json in
      let contentType = field_map json__ "ContentType" Header.of_json in
      let body = field_map_exn json__ "Body" BodyBlob.of_json in
      let endpointName =
        field_map_exn json__ "EndpointName" EndpointName.of_json in
      make ?sessionId ?inferenceComponentName ?inferenceId
        ?targetContainerHostname ?targetVariant ?customAttributes ?accept
        ?contentType ~body ~endpointName ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Invokes a model at the specified endpoint to return the inference response as a stream. The inference stream provides the response payload incrementally as a series of parts. Before you can get an inference stream, you must have access to a model that's deployed using Amazon SageMaker AI hosting services, and the container for that model must support inference streaming. For more information that can help you use this API, see the following sections in the Amazon SageMaker AI Developer Guide: For information about how to add streaming support to a model, see How Containers Serve Requests. For information about how to process the streaming response, see Invoke real-time endpoints. Before you can use this operation, your IAM permissions must allow the sagemaker:InvokeEndpoint action. For more information about Amazon SageMaker AI actions for IAM policies, see Actions, resources, and condition keys for Amazon SageMaker AI in the IAM Service Authorization Reference. Amazon SageMaker AI strips all POST headers except those supported by the API. Amazon SageMaker AI might add additional headers. You should not rely on the behavior of headers outside those enumerated in the request syntax. Calls to InvokeEndpointWithResponseStream are authenticated by using Amazon Web Services Signature Version 4. For information, see Authenticating Requests (Amazon Web Services Signature Version 4) in the Amazon S3 API Reference."]
module InvokeEndpointOutput =
  struct
    type nonrec t =
      {
      body: BodyBlob.t option
        [@ocaml.doc
          "Includes the inference provided by the model. For information about the format of the response body, see Common Data Formats-Inference. If the explainer is activated, the body includes the explanations provided by the model. For more information, see the Response section under Invoke the Endpoint in the Developer Guide."];
      contentType: Header.t option
        [@ocaml.doc
          "The MIME type of the inference returned from the model container."];
      invokedProductionVariant: Header.t option
        [@ocaml.doc "Identifies the production variant that was invoked."];
      customAttributes: CustomAttributesHeader.t option
        [@ocaml.doc
          "Provides additional information in the response about the inference returned by a model hosted at an Amazon SageMaker AI endpoint. The information is an opaque value that is forwarded verbatim. You could use this value, for example, to return an ID received in the CustomAttributes header of a request or other metadata that a service endpoint was programmed to produce. The value must consist of no more than 1024 visible US-ASCII characters as specified in Section 3.3.6. Field Value Components of the Hypertext Transfer Protocol (HTTP/1.1). If the customer wants the custom attribute returned, the model must set the custom attribute to be included on the way back. The code in your model is responsible for setting or updating any custom attributes in the response. If your code does not set this value in the response, an empty value is returned. For example, if a custom attribute represents the trace ID, your model can prepend the custom attribute with Trace ID: in your post-processing function. This feature is currently supported in the Amazon Web Services SDKs but not in the Amazon SageMaker AI Python SDK."];
      newSessionId: NewSessionResponseHeader.t option
        [@ocaml.doc
          "If you created a stateful session with your request, the ID and expiration time that the model assigns to that session."];
      closedSessionId: SessionIdHeader.t option
        [@ocaml.doc
          "If you closed a stateful session with your request, the ID of that session."]}
    type nonrec error =
      [ `InternalDependencyException of InternalDependencyException.t 
      | `InternalFailure of InternalFailure.t  | `ModelError of ModelError.t 
      | `ModelNotReadyException of ModelNotReadyException.t 
      | `ServiceUnavailable of ServiceUnavailable.t 
      | `ValidationError of ValidationError.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?body =
      fun ?contentType ->
        fun ?invokedProductionVariant ->
          fun ?customAttributes ->
            fun ?newSessionId ->
              fun ?closedSessionId ->
                fun () ->
                  {
                    body;
                    contentType;
                    invokedProductionVariant;
                    customAttributes;
                    newSessionId;
                    closedSessionId
                  }
    let error_of_json name json =
      match name with
      | "InternalDependencyException" ->
          `InternalDependencyException
            (InternalDependencyException.of_json json)
      | "InternalFailure" -> `InternalFailure (InternalFailure.of_json json)
      | "ModelError" -> `ModelError (ModelError.of_json json)
      | "ModelNotReadyException" ->
          `ModelNotReadyException (ModelNotReadyException.of_json json)
      | "ServiceUnavailable" ->
          `ServiceUnavailable (ServiceUnavailable.of_json json)
      | "ValidationError" -> `ValidationError (ValidationError.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "InternalDependencyException" ->
          `InternalDependencyException
            (InternalDependencyException.of_xml xml)
      | "InternalFailure" -> `InternalFailure (InternalFailure.of_xml xml)
      | "ModelError" -> `ModelError (ModelError.of_xml xml)
      | "ModelNotReadyException" ->
          `ModelNotReadyException (ModelNotReadyException.of_xml xml)
      | "ServiceUnavailable" ->
          `ServiceUnavailable (ServiceUnavailable.of_xml xml)
      | "ValidationError" -> `ValidationError (ValidationError.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `InternalDependencyException e ->
          `Assoc
            [("error", (`String "InternalDependencyException"));
            ("details", (InternalDependencyException.to_json e))]
      | `InternalFailure e ->
          `Assoc
            [("error", (`String "InternalFailure"));
            ("details", (InternalFailure.to_json e))]
      | `ModelError e ->
          `Assoc
            [("error", (`String "ModelError"));
            ("details", (ModelError.to_json e))]
      | `ModelNotReadyException e ->
          `Assoc
            [("error", (`String "ModelNotReadyException"));
            ("details", (ModelNotReadyException.to_json e))]
      | `ServiceUnavailable e ->
          `Assoc
            [("error", (`String "ServiceUnavailable"));
            ("details", (ServiceUnavailable.to_json e))]
      | `ValidationError e ->
          `Assoc
            [("error", (`String "ValidationError"));
            ("details", (ValidationError.to_json e))]
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let of_header_and_body =
      ((fun (xs, pipe) ->
          make ?body:(Some pipe)
            ?contentType:(Option.map
                            ((List.Assoc.find ~equal:String.Caseless.equal)
                               xs "Content-Type") ~f:Header.of_string)
            ?invokedProductionVariant:(Option.map
                                         ((List.Assoc.find
                                             ~equal:String.Caseless.equal) xs
                                            "x-Amzn-Invoked-Production-Variant")
                                         ~f:Header.of_string)
            ?customAttributes:(Option.map
                                 ((List.Assoc.find
                                     ~equal:String.Caseless.equal) xs
                                    "X-Amzn-SageMaker-Custom-Attributes")
                                 ~f:CustomAttributesHeader.of_string)
            ?newSessionId:(Option.map
                             ((List.Assoc.find ~equal:String.Caseless.equal)
                                xs "X-Amzn-SageMaker-New-Session-Id")
                             ~f:NewSessionResponseHeader.of_string)
            ?closedSessionId:(Option.map
                                ((List.Assoc.find
                                    ~equal:String.Caseless.equal) xs
                                   "X-Amzn-SageMaker-Closed-Session-Id")
                                ~f:SessionIdHeader.of_string) ())
      [@warning "-27"])
    let to_value x =
      structure_to_value
        [("Body", (Option.map x.body ~f:BodyBlob.to_value));
        ("Content-Type", (Option.map x.contentType ~f:Header.to_value));
        ("x-Amzn-Invoked-Production-Variant",
          (Option.map x.invokedProductionVariant ~f:Header.to_value));
        ("X-Amzn-SageMaker-Custom-Attributes",
          (Option.map x.customAttributes ~f:CustomAttributesHeader.to_value));
        ("X-Amzn-SageMaker-New-Session-Id",
          (Option.map x.newSessionId ~f:NewSessionResponseHeader.to_value));
        ("X-Amzn-SageMaker-Closed-Session-Id",
          (Option.map x.closedSessionId ~f:SessionIdHeader.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let closedSessionId =
        (Option.map ~f:SessionIdHeader.of_xml)
          (Xml.child xml_arg0 "X-Amzn-SageMaker-Closed-Session-Id") in
      let newSessionId =
        (Option.map ~f:NewSessionResponseHeader.of_xml)
          (Xml.child xml_arg0 "X-Amzn-SageMaker-New-Session-Id") in
      let customAttributes =
        (Option.map ~f:CustomAttributesHeader.of_xml)
          (Xml.child xml_arg0 "X-Amzn-SageMaker-Custom-Attributes") in
      let invokedProductionVariant =
        (Option.map ~f:Header.of_xml)
          (Xml.child xml_arg0 "x-Amzn-Invoked-Production-Variant") in
      let contentType =
        (Option.map ~f:Header.of_xml) (Xml.child xml_arg0 "Content-Type") in
      let body = (Option.map ~f:BodyBlob.of_xml) (Xml.child xml_arg0 "Body") in
      make ?closedSessionId ?newSessionId ?customAttributes
        ?invokedProductionVariant ?contentType ?body ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let closedSessionId =
        field_map json__ "ClosedSessionId" SessionIdHeader.of_json in
      let newSessionId =
        field_map json__ "NewSessionId" NewSessionResponseHeader.of_json in
      let customAttributes =
        field_map json__ "CustomAttributes" CustomAttributesHeader.of_json in
      let invokedProductionVariant =
        field_map json__ "InvokedProductionVariant" Header.of_json in
      let contentType = field_map json__ "ContentType" Header.of_json in
      let body = field_map json__ "Body" BodyBlob.of_json in
      make ?closedSessionId ?newSessionId ?customAttributes
        ?invokedProductionVariant ?contentType ?body ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "After you deploy a model into production using Amazon SageMaker AI hosting services, your client applications use this API to get inferences from the model hosted at the specified endpoint. For an overview of Amazon SageMaker AI, see How It Works. Amazon SageMaker AI strips all POST headers except those supported by the API. Amazon SageMaker AI might add additional headers. You should not rely on the behavior of headers outside those enumerated in the request syntax. Calls to InvokeEndpoint are authenticated by using Amazon Web Services Signature Version 4. For information, see Authenticating Requests (Amazon Web Services Signature Version 4) in the Amazon S3 API Reference. A customer's model containers must respond to requests within 60 seconds. The model itself can have a maximum processing time of 60 seconds before responding to invocations. If your model is going to take 50-60 seconds of processing time, the SDK socket timeout should be set to be 70 seconds. Endpoints are scoped to an individual account, and are not public. The URL does not contain the account ID, but Amazon SageMaker AI determines the account ID from the authentication token that is supplied by the caller."]
module InvokeEndpointInput =
  struct
    type nonrec t =
      {
      endpointName: EndpointName.t
        [@ocaml.doc
          "The name of the endpoint that you specified when you created the endpoint using the CreateEndpoint API."];
      body: BodyBlob.t
        [@ocaml.doc
          "Provides input data, in the format specified in the ContentType request header. Amazon SageMaker AI passes all of the data in the body to the model. For information about the format of the request body, see Common Data Formats-Inference."];
      contentType: Header.t option
        [@ocaml.doc "The MIME type of the input data in the request body."];
      accept: Header.t option
        [@ocaml.doc
          "The desired MIME type of the inference response from the model container."];
      customAttributes: CustomAttributesHeader.t option
        [@ocaml.doc
          "Provides additional information about a request for an inference submitted to a model hosted at an Amazon SageMaker AI endpoint. The information is an opaque value that is forwarded verbatim. You could use this value, for example, to provide an ID that you can use to track a request or to provide other metadata that a service endpoint was programmed to process. The value must consist of no more than 1024 visible US-ASCII characters as specified in Section 3.3.6. Field Value Components of the Hypertext Transfer Protocol (HTTP/1.1). The code in your model is responsible for setting or updating any custom attributes in the response. If your code does not set this value in the response, an empty value is returned. For example, if a custom attribute represents the trace ID, your model can prepend the custom attribute with Trace ID: in your post-processing function. This feature is currently supported in the Amazon Web Services SDKs but not in the Amazon SageMaker AI Python SDK."];
      targetModel: TargetModelHeader.t option
        [@ocaml.doc
          "The model to request for inference when invoking a multi-model endpoint."];
      targetVariant: TargetVariantHeader.t option
        [@ocaml.doc
          "Specify the production variant to send the inference request to when invoking an endpoint that is running two or more variants. Note that this parameter overrides the default behavior for the endpoint, which is to distribute the invocation traffic based on the variant weights. For information about how to use variant targeting to perform a/b testing, see Test models in production"];
      targetContainerHostname: TargetContainerHostnameHeader.t option
        [@ocaml.doc
          "If the endpoint hosts multiple containers and is configured to use direct invocation, this parameter specifies the host name of the container to invoke."];
      inferenceId: InferenceId.t option
        [@ocaml.doc
          "If you provide a value, it is added to the captured data when you enable data capture on the endpoint. For information about data capture, see Capture Data."];
      enableExplanations: EnableExplanationsHeader.t option
        [@ocaml.doc
          "An optional JMESPath expression used to override the EnableExplanations parameter of the ClarifyExplainerConfig API. See the EnableExplanations section in the developer guide for more information."];
      inferenceComponentName: InferenceComponentHeader.t option
        [@ocaml.doc
          "If the endpoint hosts one or more inference components, this parameter specifies the name of inference component to invoke."];
      sessionId: SessionIdOrNewSessionConstantHeader.t option
        [@ocaml.doc
          "Creates a stateful session or identifies an existing one. You can do one of the following: Create a stateful session by specifying the value NEW_SESSION. Send your request to an existing stateful session by specifying the ID of that session. With a stateful session, you can send multiple requests to a stateful model. When you create a session with a stateful model, the model must create the session ID and set the expiration time. The model must also provide that information in the response to your request. You can get the ID and timestamp from the NewSessionId response parameter. For any subsequent request where you specify that session ID, SageMaker AI routes the request to the same instance that supports the session."]}
    let context_ = "InvokeEndpointInput"
    let make ?contentType =
      fun ?accept ->
        fun ?customAttributes ->
          fun ?targetModel ->
            fun ?targetVariant ->
              fun ?targetContainerHostname ->
                fun ?inferenceId ->
                  fun ?enableExplanations ->
                    fun ?inferenceComponentName ->
                      fun ?sessionId ->
                        fun ~endpointName ->
                          fun ~body ->
                            fun () ->
                              {
                                contentType;
                                accept;
                                customAttributes;
                                targetModel;
                                targetVariant;
                                targetContainerHostname;
                                inferenceId;
                                enableExplanations;
                                inferenceComponentName;
                                sessionId;
                                endpointName;
                                body
                              }
    let of_header_and_body =
      ((fun (xs, pipe) ->
          make
            ~endpointName:(EndpointName.of_string
                             ((List.Assoc.find_exn
                                 ~equal:String.Caseless.equal) xs
                                "EndpointName")) ~body:pipe
            ?contentType:(Option.map
                            ((List.Assoc.find ~equal:String.Caseless.equal)
                               xs "Content-Type") ~f:Header.of_string)
            ?accept:(Option.map
                       ((List.Assoc.find ~equal:String.Caseless.equal) xs
                          "Accept") ~f:Header.of_string)
            ?customAttributes:(Option.map
                                 ((List.Assoc.find
                                     ~equal:String.Caseless.equal) xs
                                    "X-Amzn-SageMaker-Custom-Attributes")
                                 ~f:CustomAttributesHeader.of_string)
            ?targetModel:(Option.map
                            ((List.Assoc.find ~equal:String.Caseless.equal)
                               xs "X-Amzn-SageMaker-Target-Model")
                            ~f:TargetModelHeader.of_string)
            ?targetVariant:(Option.map
                              ((List.Assoc.find ~equal:String.Caseless.equal)
                                 xs "X-Amzn-SageMaker-Target-Variant")
                              ~f:TargetVariantHeader.of_string)
            ?targetContainerHostname:(Option.map
                                        ((List.Assoc.find
                                            ~equal:String.Caseless.equal) xs
                                           "X-Amzn-SageMaker-Target-Container-Hostname")
                                        ~f:TargetContainerHostnameHeader.of_string)
            ?inferenceId:(Option.map
                            ((List.Assoc.find ~equal:String.Caseless.equal)
                               xs "X-Amzn-SageMaker-Inference-Id")
                            ~f:InferenceId.of_string)
            ?enableExplanations:(Option.map
                                   ((List.Assoc.find
                                       ~equal:String.Caseless.equal) xs
                                      "X-Amzn-SageMaker-Enable-Explanations")
                                   ~f:EnableExplanationsHeader.of_string)
            ?inferenceComponentName:(Option.map
                                       ((List.Assoc.find
                                           ~equal:String.Caseless.equal) xs
                                          "X-Amzn-SageMaker-Inference-Component")
                                       ~f:InferenceComponentHeader.of_string)
            ?sessionId:(Option.map
                          ((List.Assoc.find ~equal:String.Caseless.equal) xs
                             "X-Amzn-SageMaker-Session-Id")
                          ~f:SessionIdOrNewSessionConstantHeader.of_string)
            ())
      [@warning "-27"])
    let to_value x =
      structure_to_value
        [("EndpointName", (Some (EndpointName.to_value x.endpointName)));
        ("Body", (Some (BodyBlob.to_value x.body)));
        ("Content-Type", (Option.map x.contentType ~f:Header.to_value));
        ("Accept", (Option.map x.accept ~f:Header.to_value));
        ("X-Amzn-SageMaker-Custom-Attributes",
          (Option.map x.customAttributes ~f:CustomAttributesHeader.to_value));
        ("X-Amzn-SageMaker-Target-Model",
          (Option.map x.targetModel ~f:TargetModelHeader.to_value));
        ("X-Amzn-SageMaker-Target-Variant",
          (Option.map x.targetVariant ~f:TargetVariantHeader.to_value));
        ("X-Amzn-SageMaker-Target-Container-Hostname",
          (Option.map x.targetContainerHostname
             ~f:TargetContainerHostnameHeader.to_value));
        ("X-Amzn-SageMaker-Inference-Id",
          (Option.map x.inferenceId ~f:InferenceId.to_value));
        ("X-Amzn-SageMaker-Enable-Explanations",
          (Option.map x.enableExplanations
             ~f:EnableExplanationsHeader.to_value));
        ("X-Amzn-SageMaker-Inference-Component",
          (Option.map x.inferenceComponentName
             ~f:InferenceComponentHeader.to_value));
        ("X-Amzn-SageMaker-Session-Id",
          (Option.map x.sessionId
             ~f:SessionIdOrNewSessionConstantHeader.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let sessionId =
        (Option.map ~f:SessionIdOrNewSessionConstantHeader.of_xml)
          (Xml.child xml_arg0 "X-Amzn-SageMaker-Session-Id") in
      let inferenceComponentName =
        (Option.map ~f:InferenceComponentHeader.of_xml)
          (Xml.child xml_arg0 "X-Amzn-SageMaker-Inference-Component") in
      let enableExplanations =
        (Option.map ~f:EnableExplanationsHeader.of_xml)
          (Xml.child xml_arg0 "X-Amzn-SageMaker-Enable-Explanations") in
      let inferenceId =
        (Option.map ~f:InferenceId.of_xml)
          (Xml.child xml_arg0 "X-Amzn-SageMaker-Inference-Id") in
      let targetContainerHostname =
        (Option.map ~f:TargetContainerHostnameHeader.of_xml)
          (Xml.child xml_arg0 "X-Amzn-SageMaker-Target-Container-Hostname") in
      let targetVariant =
        (Option.map ~f:TargetVariantHeader.of_xml)
          (Xml.child xml_arg0 "X-Amzn-SageMaker-Target-Variant") in
      let targetModel =
        (Option.map ~f:TargetModelHeader.of_xml)
          (Xml.child xml_arg0 "X-Amzn-SageMaker-Target-Model") in
      let customAttributes =
        (Option.map ~f:CustomAttributesHeader.of_xml)
          (Xml.child xml_arg0 "X-Amzn-SageMaker-Custom-Attributes") in
      let accept =
        (Option.map ~f:Header.of_xml) (Xml.child xml_arg0 "Accept") in
      let contentType =
        (Option.map ~f:Header.of_xml) (Xml.child xml_arg0 "Content-Type") in
      let body =
        BodyBlob.of_xml (Xml.child_exn ~context:context_ xml_arg0 "Body") in
      let endpointName =
        EndpointName.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "EndpointName") in
      make ?sessionId ?inferenceComponentName ?enableExplanations
        ?inferenceId ?targetContainerHostname ?targetVariant ?targetModel
        ?customAttributes ?accept ?contentType ~body ~endpointName ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let sessionId =
        field_map json__ "SessionId"
          SessionIdOrNewSessionConstantHeader.of_json in
      let inferenceComponentName =
        field_map json__ "InferenceComponentName"
          InferenceComponentHeader.of_json in
      let enableExplanations =
        field_map json__ "EnableExplanations"
          EnableExplanationsHeader.of_json in
      let inferenceId = field_map json__ "InferenceId" InferenceId.of_json in
      let targetContainerHostname =
        field_map json__ "TargetContainerHostname"
          TargetContainerHostnameHeader.of_json in
      let targetVariant =
        field_map json__ "TargetVariant" TargetVariantHeader.of_json in
      let targetModel =
        field_map json__ "TargetModel" TargetModelHeader.of_json in
      let customAttributes =
        field_map json__ "CustomAttributes" CustomAttributesHeader.of_json in
      let accept = field_map json__ "Accept" Header.of_json in
      let contentType = field_map json__ "ContentType" Header.of_json in
      let body = field_map_exn json__ "Body" BodyBlob.of_json in
      let endpointName =
        field_map_exn json__ "EndpointName" EndpointName.of_json in
      make ?sessionId ?inferenceComponentName ?enableExplanations
        ?inferenceId ?targetContainerHostname ?targetVariant ?targetModel
        ?customAttributes ?accept ?contentType ~body ~endpointName ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "After you deploy a model into production using Amazon SageMaker AI hosting services, your client applications use this API to get inferences from the model hosted at the specified endpoint. For an overview of Amazon SageMaker AI, see How It Works. Amazon SageMaker AI strips all POST headers except those supported by the API. Amazon SageMaker AI might add additional headers. You should not rely on the behavior of headers outside those enumerated in the request syntax. Calls to InvokeEndpoint are authenticated by using Amazon Web Services Signature Version 4. For information, see Authenticating Requests (Amazon Web Services Signature Version 4) in the Amazon S3 API Reference. A customer's model containers must respond to requests within 60 seconds. The model itself can have a maximum processing time of 60 seconds before responding to invocations. If your model is going to take 50-60 seconds of processing time, the SDK socket timeout should be set to be 70 seconds. Endpoints are scoped to an individual account, and are not public. The URL does not contain the account ID, but Amazon SageMaker AI determines the account ID from the authentication token that is supplied by the caller."]
module InvokeEndpointAsyncOutput =
  struct
    type nonrec t =
      {
      inferenceId: Header.t option
        [@ocaml.doc
          "Identifier for an inference request. This will be the same as the InferenceId specified in the input. Amazon SageMaker AI will generate an identifier for you if you do not specify one."];
      outputLocation: Header.t option
        [@ocaml.doc
          "The Amazon S3 URI where the inference response payload is stored."];
      failureLocation: Header.t option
        [@ocaml.doc
          "The Amazon S3 URI where the inference failure response payload is stored."]}
    type nonrec error =
      [ `InternalFailure of InternalFailure.t 
      | `ServiceUnavailable of ServiceUnavailable.t 
      | `ValidationError of ValidationError.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?inferenceId =
      fun ?outputLocation ->
        fun ?failureLocation ->
          fun () -> { inferenceId; outputLocation; failureLocation }
    let error_of_json name json =
      match name with
      | "InternalFailure" -> `InternalFailure (InternalFailure.of_json json)
      | "ServiceUnavailable" ->
          `ServiceUnavailable (ServiceUnavailable.of_json json)
      | "ValidationError" -> `ValidationError (ValidationError.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "InternalFailure" -> `InternalFailure (InternalFailure.of_xml xml)
      | "ServiceUnavailable" ->
          `ServiceUnavailable (ServiceUnavailable.of_xml xml)
      | "ValidationError" -> `ValidationError (ValidationError.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `InternalFailure e ->
          `Assoc
            [("error", (`String "InternalFailure"));
            ("details", (InternalFailure.to_json e))]
      | `ServiceUnavailable e ->
          `Assoc
            [("error", (`String "ServiceUnavailable"));
            ("details", (ServiceUnavailable.to_json e))]
      | `ValidationError e ->
          `Assoc
            [("error", (`String "ValidationError"));
            ("details", (ValidationError.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
        [("InferenceId", (Option.map x.inferenceId ~f:Header.to_value));
        ("X-Amzn-SageMaker-OutputLocation",
          (Option.map x.outputLocation ~f:Header.to_value));
        ("X-Amzn-SageMaker-FailureLocation",
          (Option.map x.failureLocation ~f:Header.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let failureLocation =
        (Option.map ~f:Header.of_xml)
          (Xml.child xml_arg0 "X-Amzn-SageMaker-FailureLocation") in
      let outputLocation =
        (Option.map ~f:Header.of_xml)
          (Xml.child xml_arg0 "X-Amzn-SageMaker-OutputLocation") in
      let inferenceId =
        (Option.map ~f:Header.of_xml) (Xml.child xml_arg0 "InferenceId") in
      make ?failureLocation ?outputLocation ?inferenceId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let failureLocation = field_map json__ "FailureLocation" Header.of_json in
      let outputLocation = field_map json__ "OutputLocation" Header.of_json in
      let inferenceId = field_map json__ "InferenceId" Header.of_json in
      make ?failureLocation ?outputLocation ?inferenceId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "After you deploy a model into production using Amazon SageMaker AI hosting services, your client applications use this API to get inferences from the model hosted at the specified endpoint in an asynchronous manner. Inference requests sent to this API are enqueued for asynchronous processing. The processing of the inference request may or may not complete before you receive a response from this API. The response from this API will not contain the result of the inference request but contain information about where you can locate it. Amazon SageMaker AI strips all POST headers except those supported by the API. Amazon SageMaker AI might add additional headers. You should not rely on the behavior of headers outside those enumerated in the request syntax. Calls to InvokeEndpointAsync are authenticated by using Amazon Web Services Signature Version 4. For information, see Authenticating Requests (Amazon Web Services Signature Version 4) in the Amazon S3 API Reference."]
module InvokeEndpointAsyncInput =
  struct
    type nonrec t =
      {
      endpointName: EndpointName.t
        [@ocaml.doc
          "The name of the endpoint that you specified when you created the endpoint using the CreateEndpoint API."];
      contentType: Header.t option
        [@ocaml.doc "The MIME type of the input data in the request body."];
      accept: Header.t option
        [@ocaml.doc
          "The desired MIME type of the inference response from the model container."];
      customAttributes: CustomAttributesHeader.t option
        [@ocaml.doc
          "Provides additional information about a request for an inference submitted to a model hosted at an Amazon SageMaker AI endpoint. The information is an opaque value that is forwarded verbatim. You could use this value, for example, to provide an ID that you can use to track a request or to provide other metadata that a service endpoint was programmed to process. The value must consist of no more than 1024 visible US-ASCII characters as specified in Section 3.3.6. Field Value Components of the Hypertext Transfer Protocol (HTTP/1.1). The code in your model is responsible for setting or updating any custom attributes in the response. If your code does not set this value in the response, an empty value is returned. For example, if a custom attribute represents the trace ID, your model can prepend the custom attribute with Trace ID: in your post-processing function. This feature is currently supported in the Amazon Web Services SDKs but not in the Amazon SageMaker AI Python SDK."];
      inferenceId: InferenceId.t option
        [@ocaml.doc
          "The identifier for the inference request. Amazon SageMaker AI will generate an identifier for you if none is specified."];
      inputLocation: InputLocationHeader.t
        [@ocaml.doc
          "The Amazon S3 URI where the inference request payload is stored."];
      s3OutputPathExtension: S3OutputPathExtensionHeader.t option
        [@ocaml.doc
          "The path extension that is appended to the Amazon S3 output path where the inference response payload is stored."];
      filename: FilenameHeader.t option
        [@ocaml.doc
          "The filename for the inference response payload stored in Amazon S3. If not specified, Amazon SageMaker AI generates a filename based on the inference ID."];
      requestTTLSeconds: RequestTTLSecondsHeader.t option
        [@ocaml.doc
          "Maximum age in seconds a request can be in the queue before it is marked as expired. The default is 6 hours, or 21,600 seconds."];
      invocationTimeoutSeconds: InvocationTimeoutSecondsHeader.t option
        [@ocaml.doc
          "Maximum amount of time in seconds a request can be processed before it is marked as expired. The default is 15 minutes, or 900 seconds."]}
    let context_ = "InvokeEndpointAsyncInput"
    let make ?contentType =
      fun ?accept ->
        fun ?customAttributes ->
          fun ?inferenceId ->
            fun ?s3OutputPathExtension ->
              fun ?filename ->
                fun ?requestTTLSeconds ->
                  fun ?invocationTimeoutSeconds ->
                    fun ~endpointName ->
                      fun ~inputLocation ->
                        fun () ->
                          {
                            contentType;
                            accept;
                            customAttributes;
                            inferenceId;
                            s3OutputPathExtension;
                            filename;
                            requestTTLSeconds;
                            invocationTimeoutSeconds;
                            endpointName;
                            inputLocation
                          }
    let to_value x =
      structure_to_value
        [("EndpointName", (Some (EndpointName.to_value x.endpointName)));
        ("X-Amzn-SageMaker-Content-Type",
          (Option.map x.contentType ~f:Header.to_value));
        ("X-Amzn-SageMaker-Accept", (Option.map x.accept ~f:Header.to_value));
        ("X-Amzn-SageMaker-Custom-Attributes",
          (Option.map x.customAttributes ~f:CustomAttributesHeader.to_value));
        ("X-Amzn-SageMaker-Inference-Id",
          (Option.map x.inferenceId ~f:InferenceId.to_value));
        ("X-Amzn-SageMaker-InputLocation",
          (Some (InputLocationHeader.to_value x.inputLocation)));
        ("X-Amzn-SageMaker-S3OutputPathExtension",
          (Option.map x.s3OutputPathExtension
             ~f:S3OutputPathExtensionHeader.to_value));
        ("X-Amzn-SageMaker-Filename",
          (Option.map x.filename ~f:FilenameHeader.to_value));
        ("X-Amzn-SageMaker-RequestTTLSeconds",
          (Option.map x.requestTTLSeconds ~f:RequestTTLSecondsHeader.to_value));
        ("X-Amzn-SageMaker-InvocationTimeoutSeconds",
          (Option.map x.invocationTimeoutSeconds
             ~f:InvocationTimeoutSecondsHeader.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let invocationTimeoutSeconds =
        (Option.map ~f:InvocationTimeoutSecondsHeader.of_xml)
          (Xml.child xml_arg0 "X-Amzn-SageMaker-InvocationTimeoutSeconds") in
      let requestTTLSeconds =
        (Option.map ~f:RequestTTLSecondsHeader.of_xml)
          (Xml.child xml_arg0 "X-Amzn-SageMaker-RequestTTLSeconds") in
      let filename =
        (Option.map ~f:FilenameHeader.of_xml)
          (Xml.child xml_arg0 "X-Amzn-SageMaker-Filename") in
      let s3OutputPathExtension =
        (Option.map ~f:S3OutputPathExtensionHeader.of_xml)
          (Xml.child xml_arg0 "X-Amzn-SageMaker-S3OutputPathExtension") in
      let inputLocation =
        InputLocationHeader.of_xml
          (Xml.child_exn ~context:context_ xml_arg0
             "X-Amzn-SageMaker-InputLocation") in
      let inferenceId =
        (Option.map ~f:InferenceId.of_xml)
          (Xml.child xml_arg0 "X-Amzn-SageMaker-Inference-Id") in
      let customAttributes =
        (Option.map ~f:CustomAttributesHeader.of_xml)
          (Xml.child xml_arg0 "X-Amzn-SageMaker-Custom-Attributes") in
      let accept =
        (Option.map ~f:Header.of_xml)
          (Xml.child xml_arg0 "X-Amzn-SageMaker-Accept") in
      let contentType =
        (Option.map ~f:Header.of_xml)
          (Xml.child xml_arg0 "X-Amzn-SageMaker-Content-Type") in
      let endpointName =
        EndpointName.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "EndpointName") in
      make ?invocationTimeoutSeconds ?requestTTLSeconds ?filename
        ?s3OutputPathExtension ~inputLocation ?inferenceId ?customAttributes
        ?accept ?contentType ~endpointName ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let invocationTimeoutSeconds =
        field_map json__ "InvocationTimeoutSeconds"
          InvocationTimeoutSecondsHeader.of_json in
      let requestTTLSeconds =
        field_map json__ "RequestTTLSeconds" RequestTTLSecondsHeader.of_json in
      let filename = field_map json__ "Filename" FilenameHeader.of_json in
      let s3OutputPathExtension =
        field_map json__ "S3OutputPathExtension"
          S3OutputPathExtensionHeader.of_json in
      let inputLocation =
        field_map_exn json__ "InputLocation" InputLocationHeader.of_json in
      let inferenceId = field_map json__ "InferenceId" InferenceId.of_json in
      let customAttributes =
        field_map json__ "CustomAttributes" CustomAttributesHeader.of_json in
      let accept = field_map json__ "Accept" Header.of_json in
      let contentType = field_map json__ "ContentType" Header.of_json in
      let endpointName =
        field_map_exn json__ "EndpointName" EndpointName.of_json in
      make ?invocationTimeoutSeconds ?requestTTLSeconds ?filename
        ?s3OutputPathExtension ~inputLocation ?inferenceId ?customAttributes
        ?accept ?contentType ~endpointName ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "After you deploy a model into production using Amazon SageMaker AI hosting services, your client applications use this API to get inferences from the model hosted at the specified endpoint in an asynchronous manner. Inference requests sent to this API are enqueued for asynchronous processing. The processing of the inference request may or may not complete before you receive a response from this API. The response from this API will not contain the result of the inference request but contain information about where you can locate it. Amazon SageMaker AI strips all POST headers except those supported by the API. Amazon SageMaker AI might add additional headers. You should not rely on the behavior of headers outside those enumerated in the request syntax. Calls to InvokeEndpointAsync are authenticated by using Amazon Web Services Signature Version 4. For information, see Authenticating Requests (Amazon Web Services Signature Version 4) in the Amazon S3 API Reference."]