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
(* 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.iotsecuretunneling
let apiVersion = "2018-10-05"
let endpointPrefix = "api.tunneling.iot"
let serviceFullName = "AWS IoT Secure Tunneling"
let signatureVersion = "v4"
let protocol = "json"
let globalEndpoint = endpointPrefix ^ ".amazonaws.com"
let targetPrefix = "IoTSecuredTunneling"
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 Service =
  struct
    type nonrec t = string
    let context_ = "Service"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:1) >>=
             (fun () ->
                (check_string_max i ~max:128) >>=
                  (fun () -> check_pattern i ~pattern:"[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:"Service" j
    let to_json = simple_to_json to_value
  end
module TagKey =
  struct
    type nonrec t = string
    let context_ = "TagKey"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:1) >>=
             (fun () ->
                (check_string_max i ~max:128) >>=
                  (fun () ->
                     check_pattern i
                       ~pattern:"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$")));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"TagKey" j
    let to_json = simple_to_json to_value
  end
module TagValue =
  struct
    type nonrec t = string
    let context_ = "TagValue"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:0) >>=
             (fun () ->
                (check_string_max i ~max:256) >>=
                  (fun () ->
                     check_pattern i
                       ~pattern:"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$")));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"TagValue" j
    let to_json = simple_to_json to_value
  end
module DateType =
  struct
    type nonrec t = string
    let make i = i
    let of_string x = x
    let to_value x = `Timestamp x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = string_of_xml ~kind:"a timestamp"
    let of_json = timestamp_of_json
    let to_json = simple_to_json to_value
  end
module Description =
  struct
    type nonrec t = string
    let context_ = "Description"
    let make i =
      let open Result in
        ok_or_failwith (check_pattern i ~pattern:"[^\\p{C}]{1,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:"Description" j
    let to_json = simple_to_json to_value
  end
module TunnelArn =
  struct
    type nonrec t = string
    let context_ = "TunnelArn"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_max i ~max:1600) >>=
             (fun () -> check_string_min i ~min:1));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"TunnelArn" j
    let to_json = simple_to_json to_value
  end
module TunnelId =
  struct
    type nonrec t = string
    let context_ = "TunnelId"
    let make i =
      let open Result in
        ok_or_failwith (check_pattern i ~pattern:"[a-zA-Z0-9_\\-+=:]{1,128}");
        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:"TunnelId" j
    let to_json = simple_to_json to_value
  end
module TunnelStatus =
  struct
    type nonrec t =
      | OPEN 
      | CLOSED 
      | Non_static_id of string 
    let make i = i
    let to_string =
      function | OPEN -> "OPEN" | CLOSED -> "CLOSED" | Non_static_id s -> s
    let of_string =
      function | "OPEN" -> OPEN | "CLOSED" -> CLOSED | x -> Non_static_id x
    let to_value x = `Enum (to_string x)
    let to_query v = to_query to_value v
    let to_header x = to_string x
    let of_xml xml_arg0 =
      of_string (string_of_xml ~kind:"enumeration TunnelStatus" xml_arg0)
    let of_json j = of_string (string_of_json ~kind:"TunnelStatus" j)
    let to_json = simple_to_json to_value
  end
module ConnectionStatus =
  struct
    type nonrec t =
      | CONNECTED 
      | DISCONNECTED 
      | Non_static_id of string 
    let make i = i
    let to_string =
      function
      | CONNECTED -> "CONNECTED"
      | DISCONNECTED -> "DISCONNECTED"
      | Non_static_id s -> s
    let of_string =
      function
      | "CONNECTED" -> CONNECTED
      | "DISCONNECTED" -> DISCONNECTED
      | x -> Non_static_id x
    let to_value x = `Enum (to_string x)
    let to_query v = to_query to_value v
    let to_header x = to_string x
    let of_xml xml_arg0 =
      of_string (string_of_xml ~kind:"enumeration ConnectionStatus" xml_arg0)
    let of_json j = of_string (string_of_json ~kind:"ConnectionStatus" j)
    let to_json = simple_to_json to_value
  end
module ServiceList =
  struct
    type nonrec t = Service.t list
    let make i =
      let open Result in ok_or_failwith (check_list_min i ~min:1); i
    let of_string _ =
      failwithf "of_string is not implemented for List_shape objects" ()
      [@@warning "-32"]
    let to_value xs =
      (xs |> (List.map ~f:Service.to_value)) |> (fun x -> `List x)
    let to_query v = to_query to_value v
    let to_header _ =
      failwithf "to_header is not implemented for List_shape objects" ()
    let of_xml x =
      make
        (List.map
           ((Xml.all_children x) |>
              (List.filter
                 ~f:(function
                     | `Data s ->
                         (match Stdlib.String.trim s with
                          | "" -> false
                          | _ -> true)
                     | _ -> true))) ~f:Service.of_xml)
    let of_json j =
      list_of_json ~kind:"ServiceList" ~of_json:Service.of_json j
    let to_json v = composed_to_json to_value v
  end
module ThingName =
  struct
    type nonrec t = string
    let context_ = "ThingName"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_min i ~min:1) >>=
             (fun () ->
                (check_string_max i ~max:128) >>=
                  (fun () -> check_pattern i ~pattern:"[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:"ThingName" j
    let to_json = simple_to_json to_value
  end
module Tag =
  struct
    type nonrec t =
      {
      key: TagKey.t [@ocaml.doc "The key of the tag."];
      value: TagValue.t [@ocaml.doc "The value of the tag."]}
    let context_ = "Tag"
    let make ~key = fun ~value -> fun () -> { key; value }
    let to_value x =
      structure_to_value
        [("key", (Some (TagKey.to_value x.key)));
        ("value", (Some (TagValue.to_value x.value)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let value =
        TagValue.of_xml (Xml.child_exn ~context:context_ xml_arg0 "value") in
      let key =
        TagKey.of_xml (Xml.child_exn ~context:context_ xml_arg0 "key") in
      make ~value ~key ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let value = field_map_exn json__ "value" TagValue.of_json in
      let key = field_map_exn json__ "key" TagKey.of_json in
      make ~value ~key ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "An arbitary key/value pair used to add searchable metadata to secure tunnel resources."]
module TimeoutInMin =
  struct
    type nonrec t = int
    let make i =
      let open Result in
        ok_or_failwith
          ((check_int_max i ~max:720) >>= (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 TimeoutInMin" 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 ErrorMessage =
  struct
    type nonrec t = string
    let context_ = "ErrorMessage"
    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:"ErrorMessage" j
    let to_json = simple_to_json to_value
  end
module TunnelSummary =
  struct
    type nonrec t =
      {
      tunnelId: TunnelId.t option
        [@ocaml.doc "The unique alpha-numeric identifier for the tunnel."];
      tunnelArn: TunnelArn.t option
        [@ocaml.doc "The Amazon Resource Name of the tunnel."];
      status: TunnelStatus.t option
        [@ocaml.doc
          "The status of a tunnel. Valid values are: Open and Closed."];
      description: Description.t option
        [@ocaml.doc "A description of the tunnel."];
      createdAt: DateType.t option
        [@ocaml.doc "The time the tunnel was created."];
      lastUpdatedAt: DateType.t option
        [@ocaml.doc "The time the tunnel was last updated."]}
    let make ?tunnelId =
      fun ?tunnelArn ->
        fun ?status ->
          fun ?description ->
            fun ?createdAt ->
              fun ?lastUpdatedAt ->
                fun () ->
                  {
                    tunnelId;
                    tunnelArn;
                    status;
                    description;
                    createdAt;
                    lastUpdatedAt
                  }
    let to_value x =
      structure_to_value
        [("tunnelId", (Option.map x.tunnelId ~f:TunnelId.to_value));
        ("tunnelArn", (Option.map x.tunnelArn ~f:TunnelArn.to_value));
        ("status", (Option.map x.status ~f:TunnelStatus.to_value));
        ("description", (Option.map x.description ~f:Description.to_value));
        ("createdAt", (Option.map x.createdAt ~f:DateType.to_value));
        ("lastUpdatedAt", (Option.map x.lastUpdatedAt ~f:DateType.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let lastUpdatedAt =
        (Option.map ~f:DateType.of_xml) (Xml.child xml_arg0 "lastUpdatedAt") in
      let createdAt =
        (Option.map ~f:DateType.of_xml) (Xml.child xml_arg0 "createdAt") in
      let description =
        (Option.map ~f:Description.of_xml) (Xml.child xml_arg0 "description") in
      let status =
        (Option.map ~f:TunnelStatus.of_xml) (Xml.child xml_arg0 "status") in
      let tunnelArn =
        (Option.map ~f:TunnelArn.of_xml) (Xml.child xml_arg0 "tunnelArn") in
      let tunnelId =
        (Option.map ~f:TunnelId.of_xml) (Xml.child xml_arg0 "tunnelId") in
      make ?lastUpdatedAt ?createdAt ?description ?status ?tunnelArn
        ?tunnelId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let lastUpdatedAt = field_map json__ "lastUpdatedAt" DateType.of_json in
      let createdAt = field_map json__ "createdAt" DateType.of_json in
      let description = field_map json__ "description" Description.of_json in
      let status = field_map json__ "status" TunnelStatus.of_json in
      let tunnelArn = field_map json__ "tunnelArn" TunnelArn.of_json in
      let tunnelId = field_map json__ "tunnelId" TunnelId.of_json in
      make ?lastUpdatedAt ?createdAt ?description ?status ?tunnelArn
        ?tunnelId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "Information about the tunnel."]
module ConnectionState =
  struct
    type nonrec t =
      {
      status: ConnectionStatus.t option
        [@ocaml.doc
          "The connection status of the tunnel. Valid values are CONNECTED and DISCONNECTED."];
      lastUpdatedAt: DateType.t option
        [@ocaml.doc "The last time the connection status was updated."]}
    let make ?status =
      fun ?lastUpdatedAt -> fun () -> { status; lastUpdatedAt }
    let to_value x =
      structure_to_value
        [("status", (Option.map x.status ~f:ConnectionStatus.to_value));
        ("lastUpdatedAt", (Option.map x.lastUpdatedAt ~f:DateType.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let lastUpdatedAt =
        (Option.map ~f:DateType.of_xml) (Xml.child xml_arg0 "lastUpdatedAt") in
      let status =
        (Option.map ~f:ConnectionStatus.of_xml) (Xml.child xml_arg0 "status") in
      make ?lastUpdatedAt ?status ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let lastUpdatedAt = field_map json__ "lastUpdatedAt" DateType.of_json in
      let status = field_map json__ "status" ConnectionStatus.of_json in
      make ?lastUpdatedAt ?status ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "The state of a connection."]
module DestinationConfig =
  struct
    type nonrec t =
      {
      thingName: ThingName.t option
        [@ocaml.doc
          "The name of the IoT thing to which you want to connect."];
      services: ServiceList.t
        [@ocaml.doc
          "A list of service names that identify the target application. The IoT client running on the destination device reads this value and uses it to look up a port or an IP address and a port. The IoT client instantiates the local proxy, which uses this information to connect to the destination application."]}
    let context_ = "DestinationConfig"
    let make ?thingName = fun ~services -> fun () -> { thingName; services }
    let to_value x =
      structure_to_value
        [("thingName", (Option.map x.thingName ~f:ThingName.to_value));
        ("services", (Some (ServiceList.to_value x.services)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let services =
        ServiceList.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "services") in
      let thingName =
        (Option.map ~f:ThingName.of_xml) (Xml.child xml_arg0 "thingName") in
      make ~services ?thingName ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let services = field_map_exn json__ "services" ServiceList.of_json in
      let thingName = field_map json__ "thingName" ThingName.of_json in
      make ~services ?thingName ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "The destination configuration."]
module TagList =
  struct
    type nonrec t = Tag.t list
    let make i =
      let open Result in
        ok_or_failwith
          ((check_list_max i ~max:200) >>=
             (fun () -> check_list_min i ~min:1));
        i
    let of_string _ =
      failwithf "of_string is not implemented for List_shape objects" ()
      [@@warning "-32"]
    let to_value xs =
      (xs |> (List.map ~f:Tag.to_value)) |> (fun x -> `List x)
    let to_query v = to_query to_value v
    let to_header _ =
      failwithf "to_header is not implemented for List_shape objects" ()
    let of_xml x =
      make
        (List.map
           ((Xml.all_children x) |>
              (List.filter
                 ~f:(function
                     | `Data s ->
                         (match Stdlib.String.trim s with
                          | "" -> false
                          | _ -> true)
                     | _ -> true))) ~f:Tag.of_xml)
    let of_json j = list_of_json ~kind:"TagList" ~of_json:Tag.of_json j
    let to_json v = composed_to_json to_value v
  end
module TimeoutConfig =
  struct
    type nonrec t =
      {
      maxLifetimeTimeoutMinutes: TimeoutInMin.t option
        [@ocaml.doc
          "The maximum amount of time (in minutes) a tunnel can remain open. If not specified, maxLifetimeTimeoutMinutes defaults to 720 minutes. Valid values are from 1 minute to 12 hours (720 minutes)"]}
    let make ?maxLifetimeTimeoutMinutes =
      fun () -> { maxLifetimeTimeoutMinutes }
    let to_value x =
      structure_to_value
        [("maxLifetimeTimeoutMinutes",
           (Option.map x.maxLifetimeTimeoutMinutes ~f:TimeoutInMin.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let maxLifetimeTimeoutMinutes =
        (Option.map ~f:TimeoutInMin.of_xml)
          (Xml.child xml_arg0 "maxLifetimeTimeoutMinutes") in
      make ?maxLifetimeTimeoutMinutes ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let maxLifetimeTimeoutMinutes =
        field_map json__ "maxLifetimeTimeoutMinutes" TimeoutInMin.of_json in
      make ?maxLifetimeTimeoutMinutes ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "Tunnel timeout configuration."]
module ResourceNotFoundException =
  struct
    type nonrec t = {
      message: ErrorMessage.t option }
    let make ?message = fun () -> { message }
    let to_value x =
      structure_to_value
        [("message", (Option.map x.message ~f:ErrorMessage.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let message =
        (Option.map ~f:ErrorMessage.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" ErrorMessage.of_json in
      make ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Thrown when an operation is attempted on a resource that does not exist."]
module AmazonResourceName =
  struct
    type nonrec t = string
    let context_ = "AmazonResourceName"
    let make i =
      let open Result in
        ok_or_failwith
          ((check_string_max i ~max:1011) >>=
             (fun () -> check_string_min i ~min:1));
        i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"AmazonResourceName" j
    let to_json = simple_to_json to_value
  end
module TagKeyList =
  struct
    type nonrec t = TagKey.t list
    let make i =
      let open Result in
        ok_or_failwith
          ((check_list_max i ~max:200) >>=
             (fun () -> check_list_min i ~min:0));
        i
    let of_string _ =
      failwithf "of_string is not implemented for List_shape objects" ()
      [@@warning "-32"]
    let to_value xs =
      (xs |> (List.map ~f:TagKey.to_value)) |> (fun x -> `List x)
    let to_query v = to_query to_value v
    let to_header _ =
      failwithf "to_header is not implemented for List_shape objects" ()
    let of_xml x =
      make
        (List.map
           ((Xml.all_children x) |>
              (List.filter
                 ~f:(function
                     | `Data s ->
                         (match Stdlib.String.trim s with
                          | "" -> false
                          | _ -> true)
                     | _ -> true))) ~f:TagKey.of_xml)
    let of_json j = list_of_json ~kind:"TagKeyList" ~of_json:TagKey.of_json j
    let to_json v = composed_to_json to_value v
  end
module ClientAccessToken =
  struct
    type nonrec t = string
    let context_ = "ClientAccessToken"
    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:"ClientAccessToken" j
    let to_json = simple_to_json to_value
  end
module ClientMode =
  struct
    type nonrec t =
      | SOURCE 
      | DESTINATION 
      | ALL 
      | Non_static_id of string 
    let make i = i
    let to_string =
      function
      | SOURCE -> "SOURCE"
      | DESTINATION -> "DESTINATION"
      | ALL -> "ALL"
      | Non_static_id s -> s
    let of_string =
      function
      | "SOURCE" -> SOURCE
      | "DESTINATION" -> DESTINATION
      | "ALL" -> ALL
      | x -> Non_static_id x
    let to_value x = `Enum (to_string x)
    let to_query v = to_query to_value v
    let to_header x = to_string x
    let of_xml xml_arg0 =
      of_string (string_of_xml ~kind:"enumeration ClientMode" xml_arg0)
    let of_json j = of_string (string_of_json ~kind:"ClientMode" j)
    let to_json = simple_to_json to_value
  end
module LimitExceededException =
  struct
    type nonrec t = {
      message: ErrorMessage.t option }
    let make ?message = fun () -> { message }
    let to_value x =
      structure_to_value
        [("message", (Option.map x.message ~f:ErrorMessage.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let message =
        (Option.map ~f:ErrorMessage.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" ErrorMessage.of_json in
      make ?message ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "Thrown when a tunnel limit is exceeded."]
module NextToken =
  struct
    type nonrec t = string
    let context_ = "NextToken"
    let make i =
      let open Result in
        ok_or_failwith (check_pattern i ~pattern:"[a-zA-Z0-9_=-]{1,4096}"); i
    let of_string x = x
    let to_value x = `String x
    let to_query v = to_query to_value v
    let to_header x = x
    let of_xml = Xml.string_data_exn ~context:context_
    let of_json j = string_of_json ~kind:"NextToken" j
    let to_json = simple_to_json to_value
  end
module TunnelSummaryList =
  struct
    type nonrec t = TunnelSummary.t list
    let make i = i
    let of_string _ =
      failwithf "of_string is not implemented for List_shape objects" ()
      [@@warning "-32"]
    let to_value xs =
      (xs |> (List.map ~f:TunnelSummary.to_value)) |> (fun x -> `List x)
    let to_query v = to_query to_value v
    let to_header _ =
      failwithf "to_header is not implemented for List_shape objects" ()
    let of_xml x =
      make
        (List.map
           ((Xml.all_children x) |>
              (List.filter
                 ~f:(function
                     | `Data s ->
                         (match Stdlib.String.trim s with
                          | "" -> false
                          | _ -> true)
                     | _ -> true))) ~f:TunnelSummary.of_xml)
    let of_json j =
      list_of_json ~kind:"TunnelSummaryList" ~of_json:TunnelSummary.of_json j
    let to_json v = composed_to_json to_value v
  end
module MaxResults =
  struct
    type nonrec t = int
    let make i =
      let open Result in
        ok_or_failwith
          ((check_int_max i ~max:100) >>= (fun () -> check_int_min i ~min:1));
        i
    let of_string = Int.of_string
    let to_value x = `Integer x
    let to_query v = to_query to_value v
    let to_header x = Int.to_string x
    let of_xml xml_arg0 =
      Int.of_string
        (string_of_xml ~kind:"an integer for MaxResults" xml_arg0)
    let of_json j = Int.of_float (float_of_json ~kind:"an integer" j)
    let to_json = simple_to_json to_value
  end
module Tunnel =
  struct
    type nonrec t =
      {
      tunnelId: TunnelId.t option
        [@ocaml.doc "A unique alpha-numeric ID that identifies a tunnel."];
      tunnelArn: TunnelArn.t option
        [@ocaml.doc "The Amazon Resource Name (ARN) of a tunnel."];
      status: TunnelStatus.t option
        [@ocaml.doc
          "The status of a tunnel. Valid values are: Open and Closed."];
      sourceConnectionState: ConnectionState.t option
        [@ocaml.doc "The connection state of the source application."];
      destinationConnectionState: ConnectionState.t option
        [@ocaml.doc "The connection state of the destination application."];
      description: Description.t option
        [@ocaml.doc "A description of the tunnel."];
      destinationConfig: DestinationConfig.t option
        [@ocaml.doc
          "The destination configuration that specifies the thing name of the destination device and a service name that the local proxy uses to connect to the destination application."];
      timeoutConfig: TimeoutConfig.t option
        [@ocaml.doc "Timeout configuration for the tunnel."];
      tags: TagList.t option
        [@ocaml.doc
          "A list of tag metadata associated with the secure tunnel."];
      createdAt: DateType.t option
        [@ocaml.doc "The time when the tunnel was created."];
      lastUpdatedAt: DateType.t option
        [@ocaml.doc "The last time the tunnel was updated."]}
    let make ?tunnelId =
      fun ?tunnelArn ->
        fun ?status ->
          fun ?sourceConnectionState ->
            fun ?destinationConnectionState ->
              fun ?description ->
                fun ?destinationConfig ->
                  fun ?timeoutConfig ->
                    fun ?tags ->
                      fun ?createdAt ->
                        fun ?lastUpdatedAt ->
                          fun () ->
                            {
                              tunnelId;
                              tunnelArn;
                              status;
                              sourceConnectionState;
                              destinationConnectionState;
                              description;
                              destinationConfig;
                              timeoutConfig;
                              tags;
                              createdAt;
                              lastUpdatedAt
                            }
    let to_value x =
      structure_to_value
        [("tunnelId", (Option.map x.tunnelId ~f:TunnelId.to_value));
        ("tunnelArn", (Option.map x.tunnelArn ~f:TunnelArn.to_value));
        ("status", (Option.map x.status ~f:TunnelStatus.to_value));
        ("sourceConnectionState",
          (Option.map x.sourceConnectionState ~f:ConnectionState.to_value));
        ("destinationConnectionState",
          (Option.map x.destinationConnectionState
             ~f:ConnectionState.to_value));
        ("description", (Option.map x.description ~f:Description.to_value));
        ("destinationConfig",
          (Option.map x.destinationConfig ~f:DestinationConfig.to_value));
        ("timeoutConfig",
          (Option.map x.timeoutConfig ~f:TimeoutConfig.to_value));
        ("tags", (Option.map x.tags ~f:TagList.to_value));
        ("createdAt", (Option.map x.createdAt ~f:DateType.to_value));
        ("lastUpdatedAt", (Option.map x.lastUpdatedAt ~f:DateType.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let lastUpdatedAt =
        (Option.map ~f:DateType.of_xml) (Xml.child xml_arg0 "lastUpdatedAt") in
      let createdAt =
        (Option.map ~f:DateType.of_xml) (Xml.child xml_arg0 "createdAt") in
      let tags = (Option.map ~f:TagList.of_xml) (Xml.child xml_arg0 "tags") in
      let timeoutConfig =
        (Option.map ~f:TimeoutConfig.of_xml)
          (Xml.child xml_arg0 "timeoutConfig") in
      let destinationConfig =
        (Option.map ~f:DestinationConfig.of_xml)
          (Xml.child xml_arg0 "destinationConfig") in
      let description =
        (Option.map ~f:Description.of_xml) (Xml.child xml_arg0 "description") in
      let destinationConnectionState =
        (Option.map ~f:ConnectionState.of_xml)
          (Xml.child xml_arg0 "destinationConnectionState") in
      let sourceConnectionState =
        (Option.map ~f:ConnectionState.of_xml)
          (Xml.child xml_arg0 "sourceConnectionState") in
      let status =
        (Option.map ~f:TunnelStatus.of_xml) (Xml.child xml_arg0 "status") in
      let tunnelArn =
        (Option.map ~f:TunnelArn.of_xml) (Xml.child xml_arg0 "tunnelArn") in
      let tunnelId =
        (Option.map ~f:TunnelId.of_xml) (Xml.child xml_arg0 "tunnelId") in
      make ?lastUpdatedAt ?createdAt ?tags ?timeoutConfig ?destinationConfig
        ?description ?destinationConnectionState ?sourceConnectionState
        ?status ?tunnelArn ?tunnelId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let lastUpdatedAt = field_map json__ "lastUpdatedAt" DateType.of_json in
      let createdAt = field_map json__ "createdAt" DateType.of_json in
      let tags = field_map json__ "tags" TagList.of_json in
      let timeoutConfig =
        field_map json__ "timeoutConfig" TimeoutConfig.of_json in
      let destinationConfig =
        field_map json__ "destinationConfig" DestinationConfig.of_json in
      let description = field_map json__ "description" Description.of_json in
      let destinationConnectionState =
        field_map json__ "destinationConnectionState" ConnectionState.of_json in
      let sourceConnectionState =
        field_map json__ "sourceConnectionState" ConnectionState.of_json in
      let status = field_map json__ "status" TunnelStatus.of_json in
      let tunnelArn = field_map json__ "tunnelArn" TunnelArn.of_json in
      let tunnelId = field_map json__ "tunnelId" TunnelId.of_json in
      make ?lastUpdatedAt ?createdAt ?tags ?timeoutConfig ?destinationConfig
        ?description ?destinationConnectionState ?sourceConnectionState
        ?status ?tunnelArn ?tunnelId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "A connection between a source computer and a destination device."]
module DeleteFlag =
  struct
    type nonrec t = bool
    let make i = i
    let of_string = Bool.of_string
    let to_value x = `Boolean x
    let to_query v = to_query to_value v
    let to_header x = Bool.to_string x
    let of_xml xml_arg0 =
      Bool.of_string (string_of_xml ~kind:"a boolean" xml_arg0)
    let of_json = bool_of_json
    let to_json = simple_to_json to_value
  end
module UntagResourceResponse =
  struct
    type nonrec t = unit
    type nonrec error =
      [ `ResourceNotFoundException of ResourceNotFoundException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make () = ()
    let error_of_json name json =
      match name with
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `ResourceNotFoundException e ->
          `Assoc
            [("error", (`String "ResourceNotFoundException"));
            ("details", (ResourceNotFoundException.to_json e))]
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let of_header_and_body = ((fun (xs, pipe) -> make ())[@warning "-27"])
    let to_value _ = `Structure []
    let to_query v = to_query to_value v
    let of_xml _ = make ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json _ = make ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "Removes a tag from a resource."]
module UntagResourceRequest =
  struct
    type nonrec t =
      {
      resourceArn: AmazonResourceName.t [@ocaml.doc "The resource ARN."];
      tagKeys: TagKeyList.t [@ocaml.doc "The keys of the tags to remove."]}
    let context_ = "UntagResourceRequest"
    let make ~resourceArn =
      fun ~tagKeys -> fun () -> { resourceArn; tagKeys }
    let to_value x =
      structure_to_value
        [("resourceArn", (Some (AmazonResourceName.to_value x.resourceArn)));
        ("tagKeys", (Some (TagKeyList.to_value x.tagKeys)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let tagKeys =
        TagKeyList.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "tagKeys") in
      let resourceArn =
        AmazonResourceName.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "resourceArn") in
      make ~tagKeys ~resourceArn ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let tagKeys = field_map_exn json__ "tagKeys" TagKeyList.of_json in
      let resourceArn =
        field_map_exn json__ "resourceArn" AmazonResourceName.of_json in
      make ~tagKeys ~resourceArn ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "Removes a tag from a resource."]
module TagResourceResponse =
  struct
    type nonrec t = unit
    type nonrec error =
      [ `ResourceNotFoundException of ResourceNotFoundException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make () = ()
    let error_of_json name json =
      match name with
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `ResourceNotFoundException e ->
          `Assoc
            [("error", (`String "ResourceNotFoundException"));
            ("details", (ResourceNotFoundException.to_json e))]
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let of_header_and_body = ((fun (xs, pipe) -> make ())[@warning "-27"])
    let to_value _ = `Structure []
    let to_query v = to_query to_value v
    let of_xml _ = make ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json _ = make ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "A resource tag."]
module TagResourceRequest =
  struct
    type nonrec t =
      {
      resourceArn: AmazonResourceName.t
        [@ocaml.doc "The ARN of the resource."];
      tags: TagList.t [@ocaml.doc "The tags for the resource."]}
    let context_ = "TagResourceRequest"
    let make ~resourceArn = fun ~tags -> fun () -> { resourceArn; tags }
    let to_value x =
      structure_to_value
        [("resourceArn", (Some (AmazonResourceName.to_value x.resourceArn)));
        ("tags", (Some (TagList.to_value x.tags)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let tags =
        TagList.of_xml (Xml.child_exn ~context:context_ xml_arg0 "tags") in
      let resourceArn =
        AmazonResourceName.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "resourceArn") in
      make ~tags ~resourceArn ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let tags = field_map_exn json__ "tags" TagList.of_json in
      let resourceArn =
        field_map_exn json__ "resourceArn" AmazonResourceName.of_json in
      make ~tags ~resourceArn ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "A resource tag."]
module RotateTunnelAccessTokenResponse =
  struct
    type nonrec t =
      {
      tunnelArn: TunnelArn.t option
        [@ocaml.doc "The Amazon Resource Name for the tunnel."];
      sourceAccessToken: ClientAccessToken.t option
        [@ocaml.doc
          "The client access token that the source local proxy uses to connect to IoT Secure Tunneling."];
      destinationAccessToken: ClientAccessToken.t option
        [@ocaml.doc
          "The client access token that the destination local proxy uses to connect to IoT Secure Tunneling."]}
    type nonrec error =
      [ `ResourceNotFoundException of ResourceNotFoundException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?tunnelArn =
      fun ?sourceAccessToken ->
        fun ?destinationAccessToken ->
          fun () -> { tunnelArn; sourceAccessToken; destinationAccessToken }
    let error_of_json name json =
      match name with
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `ResourceNotFoundException e ->
          `Assoc
            [("error", (`String "ResourceNotFoundException"));
            ("details", (ResourceNotFoundException.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
        [("tunnelArn", (Option.map x.tunnelArn ~f:TunnelArn.to_value));
        ("sourceAccessToken",
          (Option.map x.sourceAccessToken ~f:ClientAccessToken.to_value));
        ("destinationAccessToken",
          (Option.map x.destinationAccessToken ~f:ClientAccessToken.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let destinationAccessToken =
        (Option.map ~f:ClientAccessToken.of_xml)
          (Xml.child xml_arg0 "destinationAccessToken") in
      let sourceAccessToken =
        (Option.map ~f:ClientAccessToken.of_xml)
          (Xml.child xml_arg0 "sourceAccessToken") in
      let tunnelArn =
        (Option.map ~f:TunnelArn.of_xml) (Xml.child xml_arg0 "tunnelArn") in
      make ?destinationAccessToken ?sourceAccessToken ?tunnelArn ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let destinationAccessToken =
        field_map json__ "destinationAccessToken" ClientAccessToken.of_json in
      let sourceAccessToken =
        field_map json__ "sourceAccessToken" ClientAccessToken.of_json in
      let tunnelArn = field_map json__ "tunnelArn" TunnelArn.of_json in
      make ?destinationAccessToken ?sourceAccessToken ?tunnelArn ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Revokes the current client access token (CAT) and returns new CAT for clients to use when reconnecting to secure tunneling to access the same tunnel. Requires permission to access the RotateTunnelAccessToken action. Rotating the CAT doesn't extend the tunnel duration. For example, say the tunnel duration is 12 hours and the tunnel has already been open for 4 hours. When you rotate the access tokens, the new tokens that are generated can only be used for the remaining 8 hours."]
module RotateTunnelAccessTokenRequest =
  struct
    type nonrec t =
      {
      tunnelId: TunnelId.t
        [@ocaml.doc
          "The tunnel for which you want to rotate the access tokens."];
      clientMode: ClientMode.t
        [@ocaml.doc
          "The mode of the client that will use the client token, which can be either the source or destination, or both source and destination."];
      destinationConfig: DestinationConfig.t option }
    let context_ = "RotateTunnelAccessTokenRequest"
    let make ?destinationConfig =
      fun ~tunnelId ->
        fun ~clientMode ->
          fun () -> { destinationConfig; tunnelId; clientMode }
    let to_value x =
      structure_to_value
        [("tunnelId", (Some (TunnelId.to_value x.tunnelId)));
        ("clientMode", (Some (ClientMode.to_value x.clientMode)));
        ("destinationConfig",
          (Option.map x.destinationConfig ~f:DestinationConfig.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let destinationConfig =
        (Option.map ~f:DestinationConfig.of_xml)
          (Xml.child xml_arg0 "destinationConfig") in
      let clientMode =
        ClientMode.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "clientMode") in
      let tunnelId =
        TunnelId.of_xml (Xml.child_exn ~context:context_ xml_arg0 "tunnelId") in
      make ?destinationConfig ~clientMode ~tunnelId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let destinationConfig =
        field_map json__ "destinationConfig" DestinationConfig.of_json in
      let clientMode = field_map_exn json__ "clientMode" ClientMode.of_json in
      let tunnelId = field_map_exn json__ "tunnelId" TunnelId.of_json in
      make ?destinationConfig ~clientMode ~tunnelId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Revokes the current client access token (CAT) and returns new CAT for clients to use when reconnecting to secure tunneling to access the same tunnel. Requires permission to access the RotateTunnelAccessToken action. Rotating the CAT doesn't extend the tunnel duration. For example, say the tunnel duration is 12 hours and the tunnel has already been open for 4 hours. When you rotate the access tokens, the new tokens that are generated can only be used for the remaining 8 hours."]
module OpenTunnelResponse =
  struct
    type nonrec t =
      {
      tunnelId: TunnelId.t option
        [@ocaml.doc "A unique alpha-numeric tunnel ID."];
      tunnelArn: TunnelArn.t option
        [@ocaml.doc "The Amazon Resource Name for the tunnel."];
      sourceAccessToken: ClientAccessToken.t option
        [@ocaml.doc
          "The access token the source local proxy uses to connect to IoT Secure Tunneling."];
      destinationAccessToken: ClientAccessToken.t option
        [@ocaml.doc
          "The access token the destination local proxy uses to connect to IoT Secure Tunneling."]}
    type nonrec error =
      [ `LimitExceededException of LimitExceededException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?tunnelId =
      fun ?tunnelArn ->
        fun ?sourceAccessToken ->
          fun ?destinationAccessToken ->
            fun () ->
              {
                tunnelId;
                tunnelArn;
                sourceAccessToken;
                destinationAccessToken
              }
    let error_of_json name json =
      match name with
      | "LimitExceededException" ->
          `LimitExceededException (LimitExceededException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "LimitExceededException" ->
          `LimitExceededException (LimitExceededException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `LimitExceededException e ->
          `Assoc
            [("error", (`String "LimitExceededException"));
            ("details", (LimitExceededException.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
        [("tunnelId", (Option.map x.tunnelId ~f:TunnelId.to_value));
        ("tunnelArn", (Option.map x.tunnelArn ~f:TunnelArn.to_value));
        ("sourceAccessToken",
          (Option.map x.sourceAccessToken ~f:ClientAccessToken.to_value));
        ("destinationAccessToken",
          (Option.map x.destinationAccessToken ~f:ClientAccessToken.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let destinationAccessToken =
        (Option.map ~f:ClientAccessToken.of_xml)
          (Xml.child xml_arg0 "destinationAccessToken") in
      let sourceAccessToken =
        (Option.map ~f:ClientAccessToken.of_xml)
          (Xml.child xml_arg0 "sourceAccessToken") in
      let tunnelArn =
        (Option.map ~f:TunnelArn.of_xml) (Xml.child xml_arg0 "tunnelArn") in
      let tunnelId =
        (Option.map ~f:TunnelId.of_xml) (Xml.child xml_arg0 "tunnelId") in
      make ?destinationAccessToken ?sourceAccessToken ?tunnelArn ?tunnelId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let destinationAccessToken =
        field_map json__ "destinationAccessToken" ClientAccessToken.of_json in
      let sourceAccessToken =
        field_map json__ "sourceAccessToken" ClientAccessToken.of_json in
      let tunnelArn = field_map json__ "tunnelArn" TunnelArn.of_json in
      let tunnelId = field_map json__ "tunnelId" TunnelId.of_json in
      make ?destinationAccessToken ?sourceAccessToken ?tunnelArn ?tunnelId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Creates a new tunnel, and returns two client access tokens for clients to use to connect to the IoT Secure Tunneling proxy server. Requires permission to access the OpenTunnel action."]
module OpenTunnelRequest =
  struct
    type nonrec t =
      {
      description: Description.t option
        [@ocaml.doc "A short text description of the tunnel."];
      tags: TagList.t option [@ocaml.doc "A collection of tag metadata."];
      destinationConfig: DestinationConfig.t option
        [@ocaml.doc
          "The destination configuration for the OpenTunnel request."];
      timeoutConfig: TimeoutConfig.t option
        [@ocaml.doc "Timeout configuration for a tunnel."]}
    let make ?description =
      fun ?tags ->
        fun ?destinationConfig ->
          fun ?timeoutConfig ->
            fun () -> { description; tags; destinationConfig; timeoutConfig }
    let to_value x =
      structure_to_value
        [("description", (Option.map x.description ~f:Description.to_value));
        ("tags", (Option.map x.tags ~f:TagList.to_value));
        ("destinationConfig",
          (Option.map x.destinationConfig ~f:DestinationConfig.to_value));
        ("timeoutConfig",
          (Option.map x.timeoutConfig ~f:TimeoutConfig.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let timeoutConfig =
        (Option.map ~f:TimeoutConfig.of_xml)
          (Xml.child xml_arg0 "timeoutConfig") in
      let destinationConfig =
        (Option.map ~f:DestinationConfig.of_xml)
          (Xml.child xml_arg0 "destinationConfig") in
      let tags = (Option.map ~f:TagList.of_xml) (Xml.child xml_arg0 "tags") in
      let description =
        (Option.map ~f:Description.of_xml) (Xml.child xml_arg0 "description") in
      make ?timeoutConfig ?destinationConfig ?tags ?description ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let timeoutConfig =
        field_map json__ "timeoutConfig" TimeoutConfig.of_json in
      let destinationConfig =
        field_map json__ "destinationConfig" DestinationConfig.of_json in
      let tags = field_map json__ "tags" TagList.of_json in
      let description = field_map json__ "description" Description.of_json in
      make ?timeoutConfig ?destinationConfig ?tags ?description ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Creates a new tunnel, and returns two client access tokens for clients to use to connect to the IoT Secure Tunneling proxy server. Requires permission to access the OpenTunnel action."]
module ListTunnelsResponse =
  struct
    type nonrec t =
      {
      tunnelSummaries: TunnelSummaryList.t option
        [@ocaml.doc
          "A short description of the tunnels in an Amazon Web Services account."];
      nextToken: NextToken.t option
        [@ocaml.doc
          "The token to use to get the next set of results, or null if there are no additional results."]}
    type nonrec error =
      [ `Unknown_operation_error of (string * string option) ]
    let make ?tunnelSummaries =
      fun ?nextToken -> fun () -> { tunnelSummaries; nextToken }
    let error_of_json name json =
      match name with
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let to_value x =
      structure_to_value
        [("tunnelSummaries",
           (Option.map x.tunnelSummaries ~f:TunnelSummaryList.to_value));
        ("nextToken", (Option.map x.nextToken ~f:NextToken.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let nextToken =
        (Option.map ~f:NextToken.of_xml) (Xml.child xml_arg0 "nextToken") in
      let tunnelSummaries =
        (Option.map ~f:TunnelSummaryList.of_xml)
          (Xml.child xml_arg0 "tunnelSummaries") in
      make ?nextToken ?tunnelSummaries ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let nextToken = field_map json__ "nextToken" NextToken.of_json in
      let tunnelSummaries =
        field_map json__ "tunnelSummaries" TunnelSummaryList.of_json in
      make ?nextToken ?tunnelSummaries ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "List all tunnels for an Amazon Web Services account. Tunnels are listed by creation time in descending order, newer tunnels will be listed before older tunnels. Requires permission to access the ListTunnels action."]
module ListTunnelsRequest =
  struct
    type nonrec t =
      {
      thingName: ThingName.t option
        [@ocaml.doc
          "The name of the IoT thing associated with the destination device."];
      maxResults: MaxResults.t option
        [@ocaml.doc "The maximum number of results to return at once."];
      nextToken: NextToken.t option
        [@ocaml.doc
          "To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results."]}
    let make ?thingName =
      fun ?maxResults ->
        fun ?nextToken -> fun () -> { thingName; maxResults; nextToken }
    let to_value x =
      structure_to_value
        [("thingName", (Option.map x.thingName ~f:ThingName.to_value));
        ("maxResults", (Option.map x.maxResults ~f:MaxResults.to_value));
        ("nextToken", (Option.map x.nextToken ~f:NextToken.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let nextToken =
        (Option.map ~f:NextToken.of_xml) (Xml.child xml_arg0 "nextToken") in
      let maxResults =
        (Option.map ~f:MaxResults.of_xml) (Xml.child xml_arg0 "maxResults") in
      let thingName =
        (Option.map ~f:ThingName.of_xml) (Xml.child xml_arg0 "thingName") in
      make ?nextToken ?maxResults ?thingName ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let nextToken = field_map json__ "nextToken" NextToken.of_json in
      let maxResults = field_map json__ "maxResults" MaxResults.of_json in
      let thingName = field_map json__ "thingName" ThingName.of_json in
      make ?nextToken ?maxResults ?thingName ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "List all tunnels for an Amazon Web Services account. Tunnels are listed by creation time in descending order, newer tunnels will be listed before older tunnels. Requires permission to access the ListTunnels action."]
module ListTagsForResourceResponse =
  struct
    type nonrec t =
      {
      tags: TagList.t option
        [@ocaml.doc "The tags for the specified resource."]}
    type nonrec error =
      [ `ResourceNotFoundException of ResourceNotFoundException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?tags = fun () -> { tags }
    let error_of_json name json =
      match name with
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `ResourceNotFoundException e ->
          `Assoc
            [("error", (`String "ResourceNotFoundException"));
            ("details", (ResourceNotFoundException.to_json e))]
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let to_value x =
      structure_to_value [("tags", (Option.map x.tags ~f:TagList.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let tags = (Option.map ~f:TagList.of_xml) (Xml.child xml_arg0 "tags") in
      make ?tags ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let tags = field_map json__ "tags" TagList.of_json in make ?tags ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "Lists the tags for the specified resource."]
module ListTagsForResourceRequest =
  struct
    type nonrec t =
      {
      resourceArn: AmazonResourceName.t [@ocaml.doc "The resource ARN."]}
    let context_ = "ListTagsForResourceRequest"
    let make ~resourceArn = fun () -> { resourceArn }
    let to_value x =
      structure_to_value
        [("resourceArn", (Some (AmazonResourceName.to_value x.resourceArn)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let resourceArn =
        AmazonResourceName.of_xml
          (Xml.child_exn ~context:context_ xml_arg0 "resourceArn") in
      make ~resourceArn ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let resourceArn =
        field_map_exn json__ "resourceArn" AmazonResourceName.of_json in
      make ~resourceArn ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc "Lists the tags for the specified resource."]
module DescribeTunnelResponse =
  struct
    type nonrec t =
      {
      tunnel: Tunnel.t option [@ocaml.doc "The tunnel being described."]}
    type nonrec error =
      [ `ResourceNotFoundException of ResourceNotFoundException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make ?tunnel = fun () -> { tunnel }
    let error_of_json name json =
      match name with
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `ResourceNotFoundException e ->
          `Assoc
            [("error", (`String "ResourceNotFoundException"));
            ("details", (ResourceNotFoundException.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
        [("tunnel", (Option.map x.tunnel ~f:Tunnel.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let tunnel =
        (Option.map ~f:Tunnel.of_xml) (Xml.child xml_arg0 "tunnel") in
      make ?tunnel ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let tunnel = field_map json__ "tunnel" Tunnel.of_json in
      make ?tunnel ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Gets information about a tunnel identified by the unique tunnel id. Requires permission to access the DescribeTunnel action."]
module DescribeTunnelRequest =
  struct
    type nonrec t =
      {
      tunnelId: TunnelId.t [@ocaml.doc "The tunnel to describe."]}
    let context_ = "DescribeTunnelRequest"
    let make ~tunnelId = fun () -> { tunnelId }
    let to_value x =
      structure_to_value
        [("tunnelId", (Some (TunnelId.to_value x.tunnelId)))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let tunnelId =
        TunnelId.of_xml (Xml.child_exn ~context:context_ xml_arg0 "tunnelId") in
      make ~tunnelId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let tunnelId = field_map_exn json__ "tunnelId" TunnelId.of_json in
      make ~tunnelId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Gets information about a tunnel identified by the unique tunnel id. Requires permission to access the DescribeTunnel action."]
module CloseTunnelResponse =
  struct
    type nonrec t = unit
    type nonrec error =
      [ `ResourceNotFoundException of ResourceNotFoundException.t 
      | `Unknown_operation_error of (string * string option) ]
    let make () = ()
    let error_of_json name json =
      match name with
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_json json)
      | name ->
          `Unknown_operation_error
            (name, (Some (Yojson.Safe.to_string json)))
    let error_of_xml name xml =
      match name with
      | "ResourceNotFoundException" ->
          `ResourceNotFoundException (ResourceNotFoundException.of_xml xml)
      | name ->
          `Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
    let error_to_json : error -> Yojson.Safe.t =
      function
      | `ResourceNotFoundException e ->
          `Assoc
            [("error", (`String "ResourceNotFoundException"));
            ("details", (ResourceNotFoundException.to_json e))]
      | `Unknown_operation_error (code, msg) ->
          `Assoc (("error", (`String code)) ::
            ((match msg with
              | None -> []
              | Some m -> [("message", (`String m))])))
    let of_header_and_body = ((fun (xs, pipe) -> make ())[@warning "-27"])
    let to_value _ = `Structure []
    let to_query v = to_query to_value v
    let of_xml _ = make ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json _ = make ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Closes a tunnel identified by the unique tunnel id. When a CloseTunnel request is received, we close the WebSocket connections between the client and proxy server so no data can be transmitted. Requires permission to access the CloseTunnel action."]
module CloseTunnelRequest =
  struct
    type nonrec t =
      {
      tunnelId: TunnelId.t [@ocaml.doc "The ID of the tunnel to close."];
      delete: DeleteFlag.t option
        [@ocaml.doc
          "When set to true, IoT Secure Tunneling deletes the tunnel data immediately."]}
    let context_ = "CloseTunnelRequest"
    let make ?delete = fun ~tunnelId -> fun () -> { delete; tunnelId }
    let to_value x =
      structure_to_value
        [("tunnelId", (Some (TunnelId.to_value x.tunnelId)));
        ("delete", (Option.map x.delete ~f:DeleteFlag.to_value))]
    let to_query v = to_query to_value v
    let of_xml xml_arg0 =
      let delete =
        (Option.map ~f:DeleteFlag.of_xml) (Xml.child xml_arg0 "delete") in
      let tunnelId =
        TunnelId.of_xml (Xml.child_exn ~context:context_ xml_arg0 "tunnelId") in
      make ?delete ~tunnelId ()
    let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
    let of_json json__ =
      let delete = field_map json__ "delete" DeleteFlag.of_json in
      let tunnelId = field_map_exn json__ "tunnelId" TunnelId.of_json in
      make ?delete ~tunnelId ()
    let to_json v = composed_to_json to_value v
  end[@@ocaml.doc
       "Closes a tunnel identified by the unique tunnel id. When a CloseTunnel request is received, we close the WebSocket connections between the client and proxy server so no data can be transmitted. Requires permission to access the CloseTunnel action."]