package smaws-clients

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file types.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
open Smaws_Lib
let service =
  Service.{
    namespace = "waf";
    endpointPrefix = "waf";
    version = "2015-08-24";
    protocol = AwsJson_1_1
  };
type match_field_type = | ALL_QUERY_ARGS
  | SINGLE_QUERY_ARG
  | BODY
  | METHOD
  | HEADER
  | QUERY_STRING
  | URI

type field_to_match = {
  data: string option;
  type_: match_field_type
}

type text_transformation = | URL_DECODE
  | CMD_LINE
  | LOWERCASE
  | HTML_ENTITY_DECODE
  | COMPRESS_WHITE_SPACE
  | NONE

type xss_match_tuple = {
  text_transformation: text_transformation;
  field_to_match: field_to_match
}

type change_action = | DELETE
  | INSERT

type xss_match_set_update = {
  xss_match_tuple: xss_match_tuple;
  action: change_action
}

type xss_match_set_summary = {
  name: string;
  xss_match_set_id: string
}

type xss_match_set = {
  xss_match_tuples: xss_match_tuple list;
  name: string option;
  xss_match_set_id: string
}

type waf_action_type = | COUNT
  | ALLOW
  | BLOCK

type waf_action = {
  type_: waf_action_type
}

type waf_override_action_type = | COUNT
  | NONE

type waf_override_action = {
  type_: waf_override_action_type
}

type waf_rule_type = | GROUP
  | RATE_BASED
  | REGULAR

type excluded_rule = {
  rule_id: string
}

type activated_rule = {
  excluded_rules: excluded_rule list option;
  type_: waf_rule_type option;
  override_action: waf_override_action option;
  action: waf_action option;
  rule_id: string;
  priority: int
}

type web_acl_update = {
  activated_rule: activated_rule;
  action: change_action
}

type web_acl_summary = {
  name: string;
  web_acl_id: string
}

type web_ac_l = {
  web_acl_arn: string option;
  rules: activated_rule list;
  default_action: waf_action;
  metric_name: string option;
  name: string option;
  web_acl_id: string
}

type waf_tag_operation_internal_error_exception = {
  message: string option
}

type waf_tag_operation_exception = {
  message: string option
}

type waf_subscription_not_found_exception = {
  message: string option
}

type waf_stale_data_exception = {
  message: string option
}

type waf_service_linked_role_error_exception = {
  message: string option
}

type waf_referenced_item_exception = {
  message: string option
}

type waf_nonexistent_item_exception = {
  message: string option
}

type waf_nonexistent_container_exception = {
  message: string option
}

type waf_non_empty_entity_exception = {
  message: string option
}

type waf_limits_exceeded_exception = {
  message: string option
}

type waf_invalid_regex_pattern_exception = {
  message: string option
}

type waf_invalid_permission_policy_exception = {
  message: string option
}

type parameter_exception_field = | TAG_KEYS
  | TAGS
  | RESOURCE_ARN
  | NEXT_MARKER
  | RULE_TYPE
  | RATE_KEY
  | GEO_MATCH_LOCATION_VALUE
  | GEO_MATCH_LOCATION_TYPE
  | SIZE_CONSTRAINT_COMPARISON_OPERATOR
  | BYTE_MATCH_POSITIONAL_CONSTRAINT
  | BYTE_MATCH_TEXT_TRANSFORMATION
  | SQL_INJECTION_MATCH_FIELD_TYPE
  | BYTE_MATCH_FIELD_TYPE
  | IPSET_TYPE
  | PREDICATE_TYPE
  | WAF_OVERRIDE_ACTION
  | WAF_ACTION
  | CHANGE_ACTION

type parameter_exception_reason = | INVALID_TAG_KEY
  | ILLEGAL_ARGUMENT
  | ILLEGAL_COMBINATION
  | INVALID_OPTION

type waf_invalid_parameter_exception = {
  reason: parameter_exception_reason option;
  parameter: string option;
  field: parameter_exception_field option
}

type waf_invalid_operation_exception = {
  message: string option
}

type waf_invalid_account_exception = unit

type waf_internal_error_exception = {
  message: string option
}

type migration_error_type = | S3_INTERNAL_ERROR
  | S3_BUCKET_INVALID_REGION
  | S3_BUCKET_NOT_FOUND
  | S3_BUCKET_NOT_ACCESSIBLE
  | S3_BUCKET_NO_PERMISSION
  | ENTITY_NOT_FOUND
  | ENTITY_NOT_SUPPORTED

type waf_entity_migration_exception = {
  migration_error_reason: string option;
  migration_error_type: migration_error_type option;
  message: string option
}

type waf_disallowed_name_exception = {
  message: string option
}

type waf_bad_request_exception = {
  message: string option
}

type update_xss_match_set_response = {
  change_token: string option
}

type update_xss_match_set_request = {
  updates: xss_match_set_update list;
  change_token: string;
  xss_match_set_id: string
}

type update_web_acl_response = {
  change_token: string option
}

type update_web_acl_request = {
  default_action: waf_action option;
  updates: web_acl_update list option;
  change_token: string;
  web_acl_id: string
}

type update_sql_injection_match_set_response = {
  change_token: string option
}

type sql_injection_match_tuple = {
  text_transformation: text_transformation;
  field_to_match: field_to_match
}

type sql_injection_match_set_update = {
  sql_injection_match_tuple: sql_injection_match_tuple;
  action: change_action
}

type update_sql_injection_match_set_request = {
  updates: sql_injection_match_set_update list;
  change_token: string;
  sql_injection_match_set_id: string
}

type update_size_constraint_set_response = {
  change_token: string option
}

type comparison_operator = | GT
  | GE
  | LT
  | LE
  | NE
  | EQ

type size_constraint = {
  size: int;
  comparison_operator: comparison_operator;
  text_transformation: text_transformation;
  field_to_match: field_to_match
}

type size_constraint_set_update = {
  size_constraint: size_constraint;
  action: change_action
}

type update_size_constraint_set_request = {
  updates: size_constraint_set_update list;
  change_token: string;
  size_constraint_set_id: string
}

type update_rule_response = {
  change_token: string option
}

type predicate_type = | REGEX_MATCH
  | XSS_MATCH
  | SIZE_CONSTRAINT
  | GEO_MATCH
  | SQL_INJECTION_MATCH
  | BYTE_MATCH
  | IP_MATCH

type predicate = {
  data_id: string;
  type_: predicate_type;
  negated: bool
}

type rule_update = {
  predicate: predicate;
  action: change_action
}

type update_rule_request = {
  updates: rule_update list;
  change_token: string;
  rule_id: string
}

type update_rule_group_response = {
  change_token: string option
}

type rule_group_update = {
  activated_rule: activated_rule;
  action: change_action
}

type update_rule_group_request = {
  change_token: string;
  updates: rule_group_update list;
  rule_group_id: string
}

type update_regex_pattern_set_response = {
  change_token: string option
}

type regex_pattern_set_update = {
  regex_pattern_string: string;
  action: change_action
}

type update_regex_pattern_set_request = {
  change_token: string;
  updates: regex_pattern_set_update list;
  regex_pattern_set_id: string
}

type update_regex_match_set_response = {
  change_token: string option
}

type regex_match_tuple = {
  regex_pattern_set_id: string;
  text_transformation: text_transformation;
  field_to_match: field_to_match
}

type regex_match_set_update = {
  regex_match_tuple: regex_match_tuple;
  action: change_action
}

type update_regex_match_set_request = {
  change_token: string;
  updates: regex_match_set_update list;
  regex_match_set_id: string
}

type update_rate_based_rule_response = {
  change_token: string option
}

type update_rate_based_rule_request = {
  rate_limit: int;
  updates: rule_update list;
  change_token: string;
  rule_id: string
}

type update_ip_set_response = {
  change_token: string option
}

type ip_set_descriptor_type = | IPV6
  | IPV4

type ip_set_descriptor = {
  value: string;
  type_: ip_set_descriptor_type
}

type ip_set_update = {
  ip_set_descriptor: ip_set_descriptor;
  action: change_action
}

type update_ip_set_request = {
  updates: ip_set_update list;
  change_token: string;
  ip_set_id: string
}

type update_geo_match_set_response = {
  change_token: string option
}

type geo_match_constraint_type = | Country

type geo_match_constraint_value = | ZW
  | ZM
  | YE
  | EH
  | WF
  | VI
  | VG
  | VN
  | VE
  | VU
  | UZ
  | UY
  | UM
  | US
  | GB
  | AE
  | UA
  | UG
  | TV
  | TC
  | TM
  | TR
  | TN
  | TT
  | TO
  | TK
  | TG
  | TL
  | TH
  | TZ
  | TJ
  | TW
  | SY
  | CH
  | SE
  | SZ
  | SJ
  | SR
  | SD
  | LK
  | ES
  | SS
  | GS
  | ZA
  | SO
  | SB
  | SI
  | SK
  | SX
  | SG
  | SL
  | SC
  | RS
  | SN
  | SA
  | ST
  | SM
  | WS
  | VC
  | PM
  | MF
  | LC
  | KN
  | SH
  | BL
  | RW
  | RU
  | RO
  | RE
  | QA
  | PR
  | PT
  | PL
  | PN
  | PH
  | PE
  | PY
  | PG
  | PA
  | PS
  | PW
  | PK
  | OM
  | NO
  | MP
  | NF
  | NU
  | NG
  | NE
  | NI
  | NZ
  | NC
  | NL
  | NP
  | NR
  | NA
  | MM
  | MZ
  | MA
  | MS
  | ME
  | MN
  | MC
  | MD
  | FM
  | MX
  | YT
  | MU
  | MR
  | MQ
  | MH
  | MT
  | ML
  | MV
  | MY
  | MW
  | MG
  | MK
  | MO
  | LU
  | LT
  | LI
  | LY
  | LR
  | LS
  | LB
  | LV
  | LA
  | KG
  | KW
  | KR
  | KP
  | KI
  | KE
  | KZ
  | JO
  | JE
  | JP
  | JM
  | IT
  | IL
  | IM
  | IE
  | IQ
  | IR
  | ID
  | IN
  | IS
  | HU
  | HK
  | HN
  | VA
  | HM
  | HT
  | GY
  | GW
  | GN
  | GG
  | GT
  | GU
  | GP
  | GD
  | GL
  | GR
  | GI
  | GH
  | DE
  | GE
  | GM
  | GA
  | TF
  | PF
  | GF
  | FR
  | FI
  | FJ
  | FO
  | FK
  | ET
  | EE
  | ER
  | GQ
  | SV
  | EG
  | EC
  | DO
  | DM
  | DJ
  | DK
  | CZ
  | CY
  | CW
  | CU
  | HR
  | CI
  | CR
  | CK
  | CD
  | CG
  | KM
  | CO
  | CC
  | CX
  | CN
  | CL
  | TD
  | CF
  | KY
  | CV
  | CA
  | CM
  | KH
  | BI
  | BF
  | BG
  | BN
  | IO
  | BR
  | BV
  | BW
  | BA
  | BQ
  | BO
  | BT
  | BM
  | BJ
  | BZ
  | BE
  | BY
  | BB
  | BD
  | BH
  | BS
  | AZ
  | AT
  | AU
  | AW
  | AM
  | AR
  | AG
  | AQ
  | AI
  | AO
  | AD
  | AS
  | DZ
  | AL
  | AX
  | AF

type geo_match_constraint = {
  value: geo_match_constraint_value;
  type_: geo_match_constraint_type
}

type geo_match_set_update = {
  geo_match_constraint: geo_match_constraint;
  action: change_action
}

type update_geo_match_set_request = {
  updates: geo_match_set_update list;
  change_token: string;
  geo_match_set_id: string
}

type update_byte_match_set_response = {
  change_token: string option
}

type positional_constraint = | CONTAINS_WORD
  | CONTAINS
  | ENDS_WITH
  | STARTS_WITH
  | EXACTLY

type byte_match_tuple = {
  positional_constraint: positional_constraint;
  text_transformation: text_transformation;
  target_string: bytes;
  field_to_match: field_to_match
}

type byte_match_set_update = {
  byte_match_tuple: byte_match_tuple;
  action: change_action
}

type update_byte_match_set_request = {
  updates: byte_match_set_update list;
  change_token: string;
  byte_match_set_id: string
}

type untag_resource_response = unit

type untag_resource_request = {
  tag_keys: string list;
  resource_ar_n: string
}

type time_window = {
  end_time: float;
  start_time: float
}

type tag_resource_response = unit

type tag = {
  value: string;
  key: string
}

type tag_resource_request = {
  tags: tag list;
  resource_ar_n: string
}

type tag_info_for_resource = {
  tag_list: tag list option;
  resource_ar_n: string option
}

type subscribed_rule_group_summary = {
  metric_name: string;
  name: string;
  rule_group_id: string
}

type sql_injection_match_set_summary = {
  name: string;
  sql_injection_match_set_id: string
}

type sql_injection_match_set = {
  sql_injection_match_tuples: sql_injection_match_tuple list;
  name: string option;
  sql_injection_match_set_id: string
}

type size_constraint_set_summary = {
  name: string;
  size_constraint_set_id: string
}

type size_constraint_set = {
  size_constraints: size_constraint list;
  name: string option;
  size_constraint_set_id: string
}

type http_header = {
  value: string option;
  name: string option
}

type http_request = {
  headers: http_header list option;
  http_version: string option;
  method_: string option;
  ur_i: string option;
  country: string option;
  client_i_p: string option
}

type sampled_http_request = {
  rule_within_rule_group: string option;
  action: string option;
  timestamp_: float option;
  weight: int;
  request: http_request
}

type rule_summary = {
  name: string;
  rule_id: string
}

type rule_group_summary = {
  name: string;
  rule_group_id: string
}

type rule_group = {
  metric_name: string option;
  name: string option;
  rule_group_id: string
}

type rule = {
  predicates: predicate list;
  metric_name: string option;
  name: string option;
  rule_id: string
}

type regex_pattern_set_summary = {
  name: string;
  regex_pattern_set_id: string
}

type regex_pattern_set = {
  regex_pattern_strings: string list;
  name: string option;
  regex_pattern_set_id: string
}

type regex_match_set_summary = {
  name: string;
  regex_match_set_id: string
}

type regex_match_set = {
  regex_match_tuples: regex_match_tuple list option;
  name: string option;
  regex_match_set_id: string option
}

type rate_key = | IP

type rate_based_rule = {
  rate_limit: int;
  rate_key: rate_key;
  match_predicates: predicate list;
  metric_name: string option;
  name: string option;
  rule_id: string
}

type put_permission_policy_response = unit

type put_permission_policy_request = {
  policy: string;
  resource_arn: string
}

type logging_configuration = {
  redacted_fields: field_to_match list option;
  log_destination_configs: string list;
  resource_arn: string
}

type put_logging_configuration_response = {
  logging_configuration: logging_configuration option
}

type put_logging_configuration_request = {
  logging_configuration: logging_configuration
}

type list_xss_match_sets_response = {
  xss_match_sets: xss_match_set_summary list option;
  next_marker: string option
}

type list_xss_match_sets_request = {
  limit: int option;
  next_marker: string option
}

type list_web_ac_ls_response = {
  web_ac_ls: web_acl_summary list option;
  next_marker: string option
}

type list_web_ac_ls_request = {
  limit: int option;
  next_marker: string option
}

type list_tags_for_resource_response = {
  tag_info_for_resource: tag_info_for_resource option;
  next_marker: string option
}

type list_tags_for_resource_request = {
  resource_ar_n: string;
  limit: int option;
  next_marker: string option
}

type list_subscribed_rule_groups_response = {
  rule_groups: subscribed_rule_group_summary list option;
  next_marker: string option
}

type list_subscribed_rule_groups_request = {
  limit: int option;
  next_marker: string option
}

type list_sql_injection_match_sets_response = {
  sql_injection_match_sets: sql_injection_match_set_summary list option;
  next_marker: string option
}

type list_sql_injection_match_sets_request = {
  limit: int option;
  next_marker: string option
}

type list_size_constraint_sets_response = {
  size_constraint_sets: size_constraint_set_summary list option;
  next_marker: string option
}

type list_size_constraint_sets_request = {
  limit: int option;
  next_marker: string option
}

type list_rules_response = {
  rules: rule_summary list option;
  next_marker: string option
}

type list_rules_request = {
  limit: int option;
  next_marker: string option
}

type list_rule_groups_response = {
  rule_groups: rule_group_summary list option;
  next_marker: string option
}

type list_rule_groups_request = {
  limit: int option;
  next_marker: string option
}

type list_regex_pattern_sets_response = {
  regex_pattern_sets: regex_pattern_set_summary list option;
  next_marker: string option
}

type list_regex_pattern_sets_request = {
  limit: int option;
  next_marker: string option
}

type list_regex_match_sets_response = {
  regex_match_sets: regex_match_set_summary list option;
  next_marker: string option
}

type list_regex_match_sets_request = {
  limit: int option;
  next_marker: string option
}

type list_rate_based_rules_response = {
  rules: rule_summary list option;
  next_marker: string option
}

type list_rate_based_rules_request = {
  limit: int option;
  next_marker: string option
}

type list_logging_configurations_response = {
  next_marker: string option;
  logging_configurations: logging_configuration list option
}

type list_logging_configurations_request = {
  limit: int option;
  next_marker: string option
}

type ip_set_summary = {
  name: string;
  ip_set_id: string
}

type list_ip_sets_response = {
  ip_sets: ip_set_summary list option;
  next_marker: string option
}

type list_ip_sets_request = {
  limit: int option;
  next_marker: string option
}

type geo_match_set_summary = {
  name: string;
  geo_match_set_id: string
}

type list_geo_match_sets_response = {
  geo_match_sets: geo_match_set_summary list option;
  next_marker: string option
}

type list_geo_match_sets_request = {
  limit: int option;
  next_marker: string option
}

type byte_match_set_summary = {
  name: string;
  byte_match_set_id: string
}

type list_byte_match_sets_response = {
  byte_match_sets: byte_match_set_summary list option;
  next_marker: string option
}

type list_byte_match_sets_request = {
  limit: int option;
  next_marker: string option
}

type list_activated_rules_in_rule_group_response = {
  activated_rules: activated_rule list option;
  next_marker: string option
}

type list_activated_rules_in_rule_group_request = {
  limit: int option;
  next_marker: string option;
  rule_group_id: string option
}

type ip_set = {
  ip_set_descriptors: ip_set_descriptor list;
  name: string option;
  ip_set_id: string
}

type get_xss_match_set_response = {
  xss_match_set: xss_match_set option
}

type get_xss_match_set_request = {
  xss_match_set_id: string
}

type get_web_acl_response = {
  web_ac_l: web_ac_l option
}

type get_web_acl_request = {
  web_acl_id: string
}

type get_sql_injection_match_set_response = {
  sql_injection_match_set: sql_injection_match_set option
}

type get_sql_injection_match_set_request = {
  sql_injection_match_set_id: string
}

type get_size_constraint_set_response = {
  size_constraint_set: size_constraint_set option
}

type get_size_constraint_set_request = {
  size_constraint_set_id: string
}

type get_sampled_requests_response = {
  time_window: time_window option;
  population_size: int option;
  sampled_requests: sampled_http_request list option
}

type get_sampled_requests_request = {
  max_items: int;
  time_window: time_window;
  rule_id: string;
  web_acl_id: string
}

type get_rule_response = {
  rule: rule option
}

type get_rule_request = {
  rule_id: string
}

type get_rule_group_response = {
  rule_group: rule_group option
}

type get_rule_group_request = {
  rule_group_id: string
}

type get_regex_pattern_set_response = {
  regex_pattern_set: regex_pattern_set option
}

type get_regex_pattern_set_request = {
  regex_pattern_set_id: string
}

type get_regex_match_set_response = {
  regex_match_set: regex_match_set option
}

type get_regex_match_set_request = {
  regex_match_set_id: string
}

type get_rate_based_rule_response = {
  rule: rate_based_rule option
}

type get_rate_based_rule_request = {
  rule_id: string
}

type get_rate_based_rule_managed_keys_response = {
  next_marker: string option;
  managed_keys: string list option
}

type get_rate_based_rule_managed_keys_request = {
  next_marker: string option;
  rule_id: string
}

type get_permission_policy_response = {
  policy: string option
}

type get_permission_policy_request = {
  resource_arn: string
}

type get_logging_configuration_response = {
  logging_configuration: logging_configuration option
}

type get_logging_configuration_request = {
  resource_arn: string
}

type get_ip_set_response = {
  ip_set: ip_set option
}

type get_ip_set_request = {
  ip_set_id: string
}

type geo_match_set = {
  geo_match_constraints: geo_match_constraint list;
  name: string option;
  geo_match_set_id: string
}

type get_geo_match_set_response = {
  geo_match_set: geo_match_set option
}

type get_geo_match_set_request = {
  geo_match_set_id: string
}

type change_token_status = | INSYNC
  | PENDING
  | PROVISIONED

type get_change_token_status_response = {
  change_token_status: change_token_status option
}

type get_change_token_status_request = {
  change_token: string
}

type get_change_token_response = {
  change_token: string option
}

type get_change_token_request = unit

type byte_match_set = {
  byte_match_tuples: byte_match_tuple list;
  name: string option;
  byte_match_set_id: string
}

type get_byte_match_set_response = {
  byte_match_set: byte_match_set option
}

type get_byte_match_set_request = {
  byte_match_set_id: string
}

type delete_xss_match_set_response = {
  change_token: string option
}

type delete_xss_match_set_request = {
  change_token: string;
  xss_match_set_id: string
}

type delete_web_acl_response = {
  change_token: string option
}

type delete_web_acl_request = {
  change_token: string;
  web_acl_id: string
}

type delete_sql_injection_match_set_response = {
  change_token: string option
}

type delete_sql_injection_match_set_request = {
  change_token: string;
  sql_injection_match_set_id: string
}

type delete_size_constraint_set_response = {
  change_token: string option
}

type delete_size_constraint_set_request = {
  change_token: string;
  size_constraint_set_id: string
}

type delete_rule_response = {
  change_token: string option
}

type delete_rule_request = {
  change_token: string;
  rule_id: string
}

type delete_rule_group_response = {
  change_token: string option
}

type delete_rule_group_request = {
  change_token: string;
  rule_group_id: string
}

type delete_regex_pattern_set_response = {
  change_token: string option
}

type delete_regex_pattern_set_request = {
  change_token: string;
  regex_pattern_set_id: string
}

type delete_regex_match_set_response = {
  change_token: string option
}

type delete_regex_match_set_request = {
  change_token: string;
  regex_match_set_id: string
}

type delete_rate_based_rule_response = {
  change_token: string option
}

type delete_rate_based_rule_request = {
  change_token: string;
  rule_id: string
}

type delete_permission_policy_response = unit

type delete_permission_policy_request = {
  resource_arn: string
}

type delete_logging_configuration_response = unit

type delete_logging_configuration_request = {
  resource_arn: string
}

type delete_ip_set_response = {
  change_token: string option
}

type delete_ip_set_request = {
  change_token: string;
  ip_set_id: string
}

type delete_geo_match_set_response = {
  change_token: string option
}

type delete_geo_match_set_request = {
  change_token: string;
  geo_match_set_id: string
}

type delete_byte_match_set_response = {
  change_token: string option
}

type delete_byte_match_set_request = {
  change_token: string;
  byte_match_set_id: string
}

type create_xss_match_set_response = {
  change_token: string option;
  xss_match_set: xss_match_set option
}

type create_xss_match_set_request = {
  change_token: string;
  name: string
}

type create_web_acl_response = {
  change_token: string option;
  web_ac_l: web_ac_l option
}

type create_web_acl_request = {
  tags: tag list option;
  change_token: string;
  default_action: waf_action;
  metric_name: string;
  name: string
}

type create_web_acl_migration_stack_response = {
  s3_object_url: string
}

type create_web_acl_migration_stack_request = {
  ignore_unsupported_type: bool;
  s3_bucket_name: string;
  web_acl_id: string
}

type create_sql_injection_match_set_response = {
  change_token: string option;
  sql_injection_match_set: sql_injection_match_set option
}

type create_sql_injection_match_set_request = {
  change_token: string;
  name: string
}

type create_size_constraint_set_response = {
  change_token: string option;
  size_constraint_set: size_constraint_set option
}

type create_size_constraint_set_request = {
  change_token: string;
  name: string
}

type create_rule_response = {
  change_token: string option;
  rule: rule option
}

type create_rule_request = {
  tags: tag list option;
  change_token: string;
  metric_name: string;
  name: string
}

type create_rule_group_response = {
  change_token: string option;
  rule_group: rule_group option
}

type create_rule_group_request = {
  tags: tag list option;
  change_token: string;
  metric_name: string;
  name: string
}

type create_regex_pattern_set_response = {
  change_token: string option;
  regex_pattern_set: regex_pattern_set option
}

type create_regex_pattern_set_request = {
  change_token: string;
  name: string
}

type create_regex_match_set_response = {
  change_token: string option;
  regex_match_set: regex_match_set option
}

type create_regex_match_set_request = {
  change_token: string;
  name: string
}

type create_rate_based_rule_response = {
  change_token: string option;
  rule: rate_based_rule option
}

type create_rate_based_rule_request = {
  tags: tag list option;
  change_token: string;
  rate_limit: int;
  rate_key: rate_key;
  metric_name: string;
  name: string
}

type create_ip_set_response = {
  change_token: string option;
  ip_set: ip_set option
}

type create_ip_set_request = {
  change_token: string;
  name: string
}

type create_geo_match_set_response = {
  change_token: string option;
  geo_match_set: geo_match_set option
}

type create_geo_match_set_request = {
  change_token: string;
  name: string
}

type create_byte_match_set_response = {
  change_token: string option;
  byte_match_set: byte_match_set option
}

type create_byte_match_set_request = {
  change_token: string;
  name: string
}



type base_document = Json.t

OCaml

Innovation. Community. Security.