package smaws-clients
Amazon Web Services SDK clients using EIO
Install
Dune Dependency
Authors
Maintainers
Sources
0.1.preview1.tar.gz
md5=18fb70dbc45e8d81a341b9bed6871bab
sha512=7607dc98acaeed5803b44c9ca32d90c88e7813d4b3e3ae4ec661a0bad16c88dc1476bc780877527ea4cd5a4b7398453c1bb600ce0db14d39afa05dc4762b5ba5
doc/src/smaws-clients.shield/serializers.ml.html
Source file serializers.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
open Smaws_Lib.Json.SerializeHelpers open Types let error_message_to_yojson = string_to_yojson let base_unit_to_yojson = unit_to_yojson let validation_exception_reason_to_yojson = fun (x: validation_exception_reason) -> match x with | OTHER -> `String "OTHER" | FIELD_VALIDATION_FAILED -> `String "FIELD_VALIDATION_FAILED" let string__to_yojson = string_to_yojson let validation_exception_field_to_yojson = fun (x: validation_exception_field) -> assoc_to_yojson( [( "message", (Some (string__to_yojson x.message))); ( "name", (Some (string__to_yojson x.name))); ]) let validation_exception_field_list_to_yojson = fun tree -> list_to_yojson validation_exception_field_to_yojson tree let update_subscription_response_to_yojson = fun (x: update_subscription_response) -> assoc_to_yojson( [ ]) let auto_renew_to_yojson = fun (x: auto_renew) -> match x with | DISABLED -> `String "DISABLED" | ENABLED -> `String "ENABLED" let update_subscription_request_to_yojson = fun (x: update_subscription_request) -> assoc_to_yojson( [( "AutoRenew", (option_to_yojson auto_renew_to_yojson x.auto_renew)); ]) let resource_not_found_exception_to_yojson = fun (x: resource_not_found_exception) -> assoc_to_yojson( [( "resourceType", (option_to_yojson string__to_yojson x.resource_type)); ( "message", (option_to_yojson error_message_to_yojson x.message)); ]) let optimistic_lock_exception_to_yojson = fun (x: optimistic_lock_exception) -> assoc_to_yojson( [( "message", (option_to_yojson error_message_to_yojson x.message)); ]) let locked_subscription_exception_to_yojson = fun (x: locked_subscription_exception) -> assoc_to_yojson( [( "message", (option_to_yojson error_message_to_yojson x.message)); ]) let invalid_parameter_exception_to_yojson = fun (x: invalid_parameter_exception) -> assoc_to_yojson( [( "fields", (option_to_yojson validation_exception_field_list_to_yojson x.fields)); ( "reason", (option_to_yojson validation_exception_reason_to_yojson x.reason)); ( "message", (option_to_yojson error_message_to_yojson x.message)); ]) let internal_error_exception_to_yojson = fun (x: internal_error_exception) -> assoc_to_yojson( [( "message", (option_to_yojson error_message_to_yojson x.message)); ]) let update_protection_group_response_to_yojson = fun (x: update_protection_group_response) -> assoc_to_yojson( [ ]) let protection_group_id_to_yojson = string_to_yojson let protection_group_aggregation_to_yojson = fun (x: protection_group_aggregation) -> match x with | MAX -> `String "MAX" | MEAN -> `String "MEAN" | SUM -> `String "SUM" let protection_group_pattern_to_yojson = fun (x: protection_group_pattern) -> match x with | BY_RESOURCE_TYPE -> `String "BY_RESOURCE_TYPE" | ARBITRARY -> `String "ARBITRARY" | ALL -> `String "ALL" let protected_resource_type_to_yojson = fun (x: protected_resource_type) -> match x with | GLOBAL_ACCELERATOR -> `String "GLOBAL_ACCELERATOR" | APPLICATION_LOAD_BALANCER -> `String "APPLICATION_LOAD_BALANCER" | CLASSIC_LOAD_BALANCER -> `String "CLASSIC_LOAD_BALANCER" | ELASTIC_IP_ALLOCATION -> `String "ELASTIC_IP_ALLOCATION" | ROUTE_53_HOSTED_ZONE -> `String "ROUTE_53_HOSTED_ZONE" | CLOUDFRONT_DISTRIBUTION -> `String "CLOUDFRONT_DISTRIBUTION" let resource_arn_to_yojson = string_to_yojson let protection_group_members_to_yojson = fun tree -> list_to_yojson resource_arn_to_yojson tree let update_protection_group_request_to_yojson = fun (x: update_protection_group_request) -> assoc_to_yojson( [( "Members", (option_to_yojson protection_group_members_to_yojson x.members)); ( "ResourceType", (option_to_yojson protected_resource_type_to_yojson x.resource_type)); ( "Pattern", (Some (protection_group_pattern_to_yojson x.pattern))); ( "Aggregation", (Some (protection_group_aggregation_to_yojson x.aggregation))); ( "ProtectionGroupId", (Some (protection_group_id_to_yojson x.protection_group_id))); ]) let update_emergency_contact_settings_response_to_yojson = fun (x: update_emergency_contact_settings_response) -> assoc_to_yojson( [ ]) let email_address_to_yojson = string_to_yojson let phone_number_to_yojson = string_to_yojson let contact_notes_to_yojson = string_to_yojson let emergency_contact_to_yojson = fun (x: emergency_contact) -> assoc_to_yojson( [( "ContactNotes", (option_to_yojson contact_notes_to_yojson x.contact_notes)); ( "PhoneNumber", (option_to_yojson phone_number_to_yojson x.phone_number)); ( "EmailAddress", (Some (email_address_to_yojson x.email_address))); ]) let emergency_contact_list_to_yojson = fun tree -> list_to_yojson emergency_contact_to_yojson tree let update_emergency_contact_settings_request_to_yojson = fun (x: update_emergency_contact_settings_request) -> assoc_to_yojson( [( "EmergencyContactList", (option_to_yojson emergency_contact_list_to_yojson x.emergency_contact_list)); ]) let update_application_layer_automatic_response_response_to_yojson = fun (x: update_application_layer_automatic_response_response) -> assoc_to_yojson( [ ]) let block_action_to_yojson = fun (x: block_action) -> assoc_to_yojson( [ ]) let count_action_to_yojson = fun (x: count_action) -> assoc_to_yojson( [ ]) let response_action_to_yojson = fun (x: response_action) -> assoc_to_yojson( [( "Count", (option_to_yojson count_action_to_yojson x.count)); ( "Block", (option_to_yojson block_action_to_yojson x.block)); ]) let update_application_layer_automatic_response_request_to_yojson = fun (x: update_application_layer_automatic_response_request) -> assoc_to_yojson( [( "Action", (Some (response_action_to_yojson x.action))); ( "ResourceArn", (Some (resource_arn_to_yojson x.resource_arn))); ]) let invalid_operation_exception_to_yojson = fun (x: invalid_operation_exception) -> assoc_to_yojson( [( "message", (option_to_yojson error_message_to_yojson x.message)); ]) let untag_resource_response_to_yojson = fun (x: untag_resource_response) -> assoc_to_yojson( [ ]) let tag_key_to_yojson = string_to_yojson let tag_key_list_to_yojson = fun tree -> list_to_yojson tag_key_to_yojson tree let untag_resource_request_to_yojson = fun (x: untag_resource_request) -> assoc_to_yojson( [( "TagKeys", (Some (tag_key_list_to_yojson x.tag_keys))); ( "ResourceARN", (Some (resource_arn_to_yojson x.resource_ar_n))); ]) let invalid_resource_exception_to_yojson = fun (x: invalid_resource_exception) -> assoc_to_yojson( [( "message", (option_to_yojson error_message_to_yojson x.message)); ]) let unit__to_yojson = fun (x: unit_) -> match x with | REQUESTS -> `String "REQUESTS" | PACKETS -> `String "PACKETS" | BYTES -> `String "BYTES" | BITS -> `String "BITS" let long_to_yojson = long_to_yojson let contributor_to_yojson = fun (x: contributor) -> assoc_to_yojson( [( "Value", (option_to_yojson long_to_yojson x.value)); ( "Name", (option_to_yojson string__to_yojson x.name)); ]) let top_contributors_to_yojson = fun tree -> list_to_yojson contributor_to_yojson tree let token_to_yojson = string_to_yojson let timestamp__to_yojson = timestamp_to_yojson let time_range_to_yojson = fun (x: time_range) -> assoc_to_yojson( [( "ToExclusive", (option_to_yojson timestamp__to_yojson x.to_exclusive)); ( "FromInclusive", (option_to_yojson timestamp__to_yojson x.from_inclusive)); ]) let tag_value_to_yojson = string_to_yojson let tag_resource_response_to_yojson = fun (x: tag_resource_response) -> assoc_to_yojson( [ ]) let tag_to_yojson = fun (x: tag) -> assoc_to_yojson( [( "Value", (option_to_yojson tag_value_to_yojson x.value)); ( "Key", (option_to_yojson tag_key_to_yojson x.key)); ]) let tag_list_to_yojson = fun tree -> list_to_yojson tag_to_yojson tree let tag_resource_request_to_yojson = fun (x: tag_resource_request) -> assoc_to_yojson( [( "Tags", (Some (tag_list_to_yojson x.tags))); ( "ResourceARN", (Some (resource_arn_to_yojson x.resource_ar_n))); ]) let double_to_yojson = double_to_yojson let integer__to_yojson = int_to_yojson let summarized_counter_to_yojson = fun (x: summarized_counter) -> assoc_to_yojson( [( "Unit", (option_to_yojson string__to_yojson x.unit_)); ( "N", (option_to_yojson integer__to_yojson x.n)); ( "Sum", (option_to_yojson double_to_yojson x.sum)); ( "Average", (option_to_yojson double_to_yojson x.average)); ( "Max", (option_to_yojson double_to_yojson x.max)); ( "Name", (option_to_yojson string__to_yojson x.name)); ]) let summarized_counter_list_to_yojson = fun tree -> list_to_yojson summarized_counter_to_yojson tree let summarized_attack_vector_to_yojson = fun (x: summarized_attack_vector) -> assoc_to_yojson( [( "VectorCounters", (option_to_yojson summarized_counter_list_to_yojson x.vector_counters)); ( "VectorType", (Some (string__to_yojson x.vector_type))); ]) let summarized_attack_vector_list_to_yojson = fun tree -> list_to_yojson summarized_attack_vector_to_yojson tree let subscription_state_to_yojson = fun (x: subscription_state) -> match x with | INACTIVE -> `String "INACTIVE" | ACTIVE -> `String "ACTIVE" let limit_to_yojson = fun (x: limit) -> assoc_to_yojson( [( "Max", (option_to_yojson long_to_yojson x.max)); ( "Type", (option_to_yojson string__to_yojson x.type_)); ]) let limits_to_yojson = fun tree -> list_to_yojson limit_to_yojson tree let protection_limits_to_yojson = fun (x: protection_limits) -> assoc_to_yojson( [( "ProtectedResourceTypeLimits", (Some (limits_to_yojson x.protected_resource_type_limits))); ]) let protection_group_arbitrary_pattern_limits_to_yojson = fun (x: protection_group_arbitrary_pattern_limits) -> assoc_to_yojson( [( "MaxMembers", (Some (long_to_yojson x.max_members))); ]) let protection_group_pattern_type_limits_to_yojson = fun (x: protection_group_pattern_type_limits) -> assoc_to_yojson( [( "ArbitraryPatternLimits", (Some (protection_group_arbitrary_pattern_limits_to_yojson x.arbitrary_pattern_limits))); ]) let protection_group_limits_to_yojson = fun (x: protection_group_limits) -> assoc_to_yojson( [( "PatternTypeLimits", (Some (protection_group_pattern_type_limits_to_yojson x.pattern_type_limits))); ( "MaxProtectionGroups", (Some (long_to_yojson x.max_protection_groups))); ]) let subscription_limits_to_yojson = fun (x: subscription_limits) -> assoc_to_yojson( [( "ProtectionGroupLimits", (Some (protection_group_limits_to_yojson x.protection_group_limits))); ( "ProtectionLimits", (Some (protection_limits_to_yojson x.protection_limits))); ]) let duration_in_seconds_to_yojson = long_to_yojson let proactive_engagement_status_to_yojson = fun (x: proactive_engagement_status) -> match x with | PENDING -> `String "PENDING" | DISABLED -> `String "DISABLED" | ENABLED -> `String "ENABLED" let subscription_to_yojson = fun (x: subscription) -> assoc_to_yojson( [( "SubscriptionArn", (option_to_yojson resource_arn_to_yojson x.subscription_arn)); ( "SubscriptionLimits", (Some (subscription_limits_to_yojson x.subscription_limits))); ( "ProactiveEngagementStatus", (option_to_yojson proactive_engagement_status_to_yojson x.proactive_engagement_status)); ( "Limits", (option_to_yojson limits_to_yojson x.limits)); ( "AutoRenew", (option_to_yojson auto_renew_to_yojson x.auto_renew)); ( "TimeCommitmentInSeconds", (option_to_yojson duration_in_seconds_to_yojson x.time_commitment_in_seconds)); ( "EndTime", (option_to_yojson timestamp__to_yojson x.end_time)); ( "StartTime", (option_to_yojson timestamp__to_yojson x.start_time)); ]) let sub_resource_type_to_yojson = fun (x: sub_resource_type) -> match x with | URL -> `String "URL" | IP -> `String "IP" let sub_resource_summary_to_yojson = fun (x: sub_resource_summary) -> assoc_to_yojson( [( "Counters", (option_to_yojson summarized_counter_list_to_yojson x.counters)); ( "AttackVectors", (option_to_yojson summarized_attack_vector_list_to_yojson x.attack_vectors)); ( "Id", (option_to_yojson string__to_yojson x.id)); ( "Type", (option_to_yojson sub_resource_type_to_yojson x.type_)); ]) let sub_resource_summary_list_to_yojson = fun tree -> list_to_yojson sub_resource_summary_to_yojson tree let role_arn_to_yojson = string_to_yojson let resource_arn_list_to_yojson = fun tree -> list_to_yojson resource_arn_to_yojson tree let resource_arn_filters_to_yojson = fun tree -> list_to_yojson resource_arn_to_yojson tree let resource_arn_filter_list_to_yojson = fun tree -> list_to_yojson resource_arn_to_yojson tree let resource_already_exists_exception_to_yojson = fun (x: resource_already_exists_exception) -> assoc_to_yojson( [( "resourceType", (option_to_yojson string__to_yojson x.resource_type)); ( "message", (option_to_yojson error_message_to_yojson x.message)); ]) let protection_id_to_yojson = string_to_yojson let protection_name_to_yojson = string_to_yojson let health_check_id_to_yojson = string_to_yojson let health_check_ids_to_yojson = fun tree -> list_to_yojson health_check_id_to_yojson tree let application_layer_automatic_response_status_to_yojson = fun (x: application_layer_automatic_response_status) -> match x with | DISABLED -> `String "DISABLED" | ENABLED -> `String "ENABLED" let application_layer_automatic_response_configuration_to_yojson = fun (x: application_layer_automatic_response_configuration) -> assoc_to_yojson( [( "Action", (Some (response_action_to_yojson x.action))); ( "Status", (Some (application_layer_automatic_response_status_to_yojson x.status))); ]) let protection_to_yojson = fun (x: protection) -> assoc_to_yojson( [( "ApplicationLayerAutomaticResponseConfiguration", (option_to_yojson application_layer_automatic_response_configuration_to_yojson x.application_layer_automatic_response_configuration)); ( "ProtectionArn", (option_to_yojson resource_arn_to_yojson x.protection_arn)); ( "HealthCheckIds", (option_to_yojson health_check_ids_to_yojson x.health_check_ids)); ( "ResourceArn", (option_to_yojson resource_arn_to_yojson x.resource_arn)); ( "Name", (option_to_yojson protection_name_to_yojson x.name)); ( "Id", (option_to_yojson protection_id_to_yojson x.id)); ]) let protections_to_yojson = fun tree -> list_to_yojson protection_to_yojson tree let protection_name_filters_to_yojson = fun tree -> list_to_yojson protection_name_to_yojson tree let protection_group_to_yojson = fun (x: protection_group) -> assoc_to_yojson( [( "ProtectionGroupArn", (option_to_yojson resource_arn_to_yojson x.protection_group_arn)); ( "Members", (Some (protection_group_members_to_yojson x.members))); ( "ResourceType", (option_to_yojson protected_resource_type_to_yojson x.resource_type)); ( "Pattern", (Some (protection_group_pattern_to_yojson x.pattern))); ( "Aggregation", (Some (protection_group_aggregation_to_yojson x.aggregation))); ( "ProtectionGroupId", (Some (protection_group_id_to_yojson x.protection_group_id))); ]) let protection_groups_to_yojson = fun tree -> list_to_yojson protection_group_to_yojson tree let protection_group_pattern_filters_to_yojson = fun tree -> list_to_yojson protection_group_pattern_to_yojson tree let protection_group_id_filters_to_yojson = fun tree -> list_to_yojson protection_group_id_to_yojson tree let protection_group_aggregation_filters_to_yojson = fun tree -> list_to_yojson protection_group_aggregation_to_yojson tree let protected_resource_type_filters_to_yojson = fun tree -> list_to_yojson protected_resource_type_to_yojson tree let no_associated_role_exception_to_yojson = fun (x: no_associated_role_exception) -> assoc_to_yojson( [( "message", (option_to_yojson error_message_to_yojson x.message)); ]) let mitigation_to_yojson = fun (x: mitigation) -> assoc_to_yojson( [( "MitigationName", (option_to_yojson string__to_yojson x.mitigation_name)); ]) let mitigation_list_to_yojson = fun tree -> list_to_yojson mitigation_to_yojson tree let max_results_to_yojson = int_to_yojson let log_bucket_to_yojson = string_to_yojson let log_bucket_list_to_yojson = fun tree -> list_to_yojson log_bucket_to_yojson tree let = fun (x: list_tags_for_resource_response) -> assoc_to_yojson( [( "Tags", (option_to_yojson tag_list_to_yojson x.tags)); ]) let = fun (x: list_tags_for_resource_request) -> assoc_to_yojson( [( "ResourceARN", (Some (resource_arn_to_yojson x.resource_ar_n))); ]) let list_resources_in_protection_group_response_to_yojson = fun (x: list_resources_in_protection_group_response) -> assoc_to_yojson( [( "NextToken", (option_to_yojson token_to_yojson x.next_token)); ( "ResourceArns", (Some (resource_arn_list_to_yojson x.resource_arns))); ]) let list_resources_in_protection_group_request_to_yojson = fun (x: list_resources_in_protection_group_request) -> assoc_to_yojson( [( "MaxResults", (option_to_yojson max_results_to_yojson x.max_results)); ( "NextToken", (option_to_yojson token_to_yojson x.next_token)); ( "ProtectionGroupId", (Some (protection_group_id_to_yojson x.protection_group_id))); ]) let invalid_pagination_token_exception_to_yojson = fun (x: invalid_pagination_token_exception) -> assoc_to_yojson( [( "message", (option_to_yojson error_message_to_yojson x.message)); ]) let list_protections_response_to_yojson = fun (x: list_protections_response) -> assoc_to_yojson( [( "NextToken", (option_to_yojson token_to_yojson x.next_token)); ( "Protections", (option_to_yojson protections_to_yojson x.protections)); ]) let inclusion_protection_filters_to_yojson = fun (x: inclusion_protection_filters) -> assoc_to_yojson( [( "ResourceTypes", (option_to_yojson protected_resource_type_filters_to_yojson x.resource_types)); ( "ProtectionNames", (option_to_yojson protection_name_filters_to_yojson x.protection_names)); ( "ResourceArns", (option_to_yojson resource_arn_filters_to_yojson x.resource_arns)); ]) let list_protections_request_to_yojson = fun (x: list_protections_request) -> assoc_to_yojson( [( "InclusionFilters", (option_to_yojson inclusion_protection_filters_to_yojson x.inclusion_filters)); ( "MaxResults", (option_to_yojson max_results_to_yojson x.max_results)); ( "NextToken", (option_to_yojson token_to_yojson x.next_token)); ]) let list_protection_groups_response_to_yojson = fun (x: list_protection_groups_response) -> assoc_to_yojson( [( "NextToken", (option_to_yojson token_to_yojson x.next_token)); ( "ProtectionGroups", (Some (protection_groups_to_yojson x.protection_groups))); ]) let inclusion_protection_group_filters_to_yojson = fun (x: inclusion_protection_group_filters) -> assoc_to_yojson( [( "Aggregations", (option_to_yojson protection_group_aggregation_filters_to_yojson x.aggregations)); ( "ResourceTypes", (option_to_yojson protected_resource_type_filters_to_yojson x.resource_types)); ( "Patterns", (option_to_yojson protection_group_pattern_filters_to_yojson x.patterns)); ( "ProtectionGroupIds", (option_to_yojson protection_group_id_filters_to_yojson x.protection_group_ids)); ]) let list_protection_groups_request_to_yojson = fun (x: list_protection_groups_request) -> assoc_to_yojson( [( "InclusionFilters", (option_to_yojson inclusion_protection_group_filters_to_yojson x.inclusion_filters)); ( "MaxResults", (option_to_yojson max_results_to_yojson x.max_results)); ( "NextToken", (option_to_yojson token_to_yojson x.next_token)); ]) let attack_timestamp_to_yojson = timestamp_to_yojson let attack_vector_description_to_yojson = fun (x: attack_vector_description) -> assoc_to_yojson( [( "VectorType", (Some (string__to_yojson x.vector_type))); ]) let attack_vector_description_list_to_yojson = fun tree -> list_to_yojson attack_vector_description_to_yojson tree let attack_summary_to_yojson = fun (x: attack_summary) -> assoc_to_yojson( [( "AttackVectors", (option_to_yojson attack_vector_description_list_to_yojson x.attack_vectors)); ( "EndTime", (option_to_yojson attack_timestamp_to_yojson x.end_time)); ( "StartTime", (option_to_yojson attack_timestamp_to_yojson x.start_time)); ( "ResourceArn", (option_to_yojson string__to_yojson x.resource_arn)); ( "AttackId", (option_to_yojson string__to_yojson x.attack_id)); ]) let attack_summaries_to_yojson = fun tree -> list_to_yojson attack_summary_to_yojson tree let list_attacks_response_to_yojson = fun (x: list_attacks_response) -> assoc_to_yojson( [( "NextToken", (option_to_yojson token_to_yojson x.next_token)); ( "AttackSummaries", (option_to_yojson attack_summaries_to_yojson x.attack_summaries)); ]) let list_attacks_request_to_yojson = fun (x: list_attacks_request) -> assoc_to_yojson( [( "MaxResults", (option_to_yojson max_results_to_yojson x.max_results)); ( "NextToken", (option_to_yojson token_to_yojson x.next_token)); ( "EndTime", (option_to_yojson time_range_to_yojson x.end_time)); ( "StartTime", (option_to_yojson time_range_to_yojson x.start_time)); ( "ResourceArns", (option_to_yojson resource_arn_filter_list_to_yojson x.resource_arns)); ]) let limit_type_to_yojson = string_to_yojson let limit_number_to_yojson = long_to_yojson let limits_exceeded_exception_to_yojson = fun (x: limits_exceeded_exception) -> assoc_to_yojson( [( "Limit", (option_to_yojson limit_number_to_yojson x.limit)); ( "Type", (option_to_yojson limit_type_to_yojson x.type_)); ( "message", (option_to_yojson error_message_to_yojson x.message)); ]) let health_check_arn_to_yojson = string_to_yojson let get_subscription_state_response_to_yojson = fun (x: get_subscription_state_response) -> assoc_to_yojson( [( "SubscriptionState", (Some (subscription_state_to_yojson x.subscription_state))); ]) let get_subscription_state_request_to_yojson = fun (x: get_subscription_state_request) -> assoc_to_yojson( [ ]) let enable_proactive_engagement_response_to_yojson = fun (x: enable_proactive_engagement_response) -> assoc_to_yojson( [ ]) let enable_proactive_engagement_request_to_yojson = fun (x: enable_proactive_engagement_request) -> assoc_to_yojson( [ ]) let enable_application_layer_automatic_response_response_to_yojson = fun (x: enable_application_layer_automatic_response_response) -> assoc_to_yojson( [ ]) let enable_application_layer_automatic_response_request_to_yojson = fun (x: enable_application_layer_automatic_response_request) -> assoc_to_yojson( [( "Action", (Some (response_action_to_yojson x.action))); ( "ResourceArn", (Some (resource_arn_to_yojson x.resource_arn))); ]) let disassociate_health_check_response_to_yojson = fun (x: disassociate_health_check_response) -> assoc_to_yojson( [ ]) let disassociate_health_check_request_to_yojson = fun (x: disassociate_health_check_request) -> assoc_to_yojson( [( "HealthCheckArn", (Some (health_check_arn_to_yojson x.health_check_arn))); ( "ProtectionId", (Some (protection_id_to_yojson x.protection_id))); ]) let disassociate_drt_role_response_to_yojson = fun (x: disassociate_drt_role_response) -> assoc_to_yojson( [ ]) let disassociate_drt_role_request_to_yojson = fun (x: disassociate_drt_role_request) -> assoc_to_yojson( [ ]) let disassociate_drt_log_bucket_response_to_yojson = fun (x: disassociate_drt_log_bucket_response) -> assoc_to_yojson( [ ]) let disassociate_drt_log_bucket_request_to_yojson = fun (x: disassociate_drt_log_bucket_request) -> assoc_to_yojson( [( "LogBucket", (Some (log_bucket_to_yojson x.log_bucket))); ]) let access_denied_for_dependency_exception_to_yojson = fun (x: access_denied_for_dependency_exception) -> assoc_to_yojson( [( "message", (option_to_yojson error_message_to_yojson x.message)); ]) let disable_proactive_engagement_response_to_yojson = fun (x: disable_proactive_engagement_response) -> assoc_to_yojson( [ ]) let disable_proactive_engagement_request_to_yojson = fun (x: disable_proactive_engagement_request) -> assoc_to_yojson( [ ]) let disable_application_layer_automatic_response_response_to_yojson = fun (x: disable_application_layer_automatic_response_response) -> assoc_to_yojson( [ ]) let disable_application_layer_automatic_response_request_to_yojson = fun (x: disable_application_layer_automatic_response_request) -> assoc_to_yojson( [( "ResourceArn", (Some (resource_arn_to_yojson x.resource_arn))); ]) let describe_subscription_response_to_yojson = fun (x: describe_subscription_response) -> assoc_to_yojson( [( "Subscription", (option_to_yojson subscription_to_yojson x.subscription)); ]) let describe_subscription_request_to_yojson = fun (x: describe_subscription_request) -> assoc_to_yojson( [ ]) let describe_protection_response_to_yojson = fun (x: describe_protection_response) -> assoc_to_yojson( [( "Protection", (option_to_yojson protection_to_yojson x.protection)); ]) let describe_protection_request_to_yojson = fun (x: describe_protection_request) -> assoc_to_yojson( [( "ResourceArn", (option_to_yojson resource_arn_to_yojson x.resource_arn)); ( "ProtectionId", (option_to_yojson protection_id_to_yojson x.protection_id)); ]) let describe_protection_group_response_to_yojson = fun (x: describe_protection_group_response) -> assoc_to_yojson( [( "ProtectionGroup", (Some (protection_group_to_yojson x.protection_group))); ]) let describe_protection_group_request_to_yojson = fun (x: describe_protection_group_request) -> assoc_to_yojson( [( "ProtectionGroupId", (Some (protection_group_id_to_yojson x.protection_group_id))); ]) let describe_emergency_contact_settings_response_to_yojson = fun (x: describe_emergency_contact_settings_response) -> assoc_to_yojson( [( "EmergencyContactList", (option_to_yojson emergency_contact_list_to_yojson x.emergency_contact_list)); ]) let describe_emergency_contact_settings_request_to_yojson = fun (x: describe_emergency_contact_settings_request) -> assoc_to_yojson( [ ]) let describe_drt_access_response_to_yojson = fun (x: describe_drt_access_response) -> assoc_to_yojson( [( "LogBucketList", (option_to_yojson log_bucket_list_to_yojson x.log_bucket_list)); ( "RoleArn", (option_to_yojson role_arn_to_yojson x.role_arn)); ]) let describe_drt_access_request_to_yojson = fun (x: describe_drt_access_request) -> assoc_to_yojson( [ ]) let attack_volume_statistics_to_yojson = fun (x: attack_volume_statistics) -> assoc_to_yojson( [( "Max", (Some (double_to_yojson x.max))); ]) let attack_volume_to_yojson = fun (x: attack_volume) -> assoc_to_yojson( [( "RequestsPerSecond", (option_to_yojson attack_volume_statistics_to_yojson x.requests_per_second)); ( "PacketsPerSecond", (option_to_yojson attack_volume_statistics_to_yojson x.packets_per_second)); ( "BitsPerSecond", (option_to_yojson attack_volume_statistics_to_yojson x.bits_per_second)); ]) let attack_statistics_data_item_to_yojson = fun (x: attack_statistics_data_item) -> assoc_to_yojson( [( "AttackCount", (Some (long_to_yojson x.attack_count))); ( "AttackVolume", (option_to_yojson attack_volume_to_yojson x.attack_volume)); ]) let attack_statistics_data_list_to_yojson = fun tree -> list_to_yojson attack_statistics_data_item_to_yojson tree let describe_attack_statistics_response_to_yojson = fun (x: describe_attack_statistics_response) -> assoc_to_yojson( [( "DataItems", (Some (attack_statistics_data_list_to_yojson x.data_items))); ( "TimeRange", (Some (time_range_to_yojson x.time_range))); ]) let describe_attack_statistics_request_to_yojson = fun (x: describe_attack_statistics_request) -> assoc_to_yojson( [ ]) let attack_id_to_yojson = string_to_yojson let attack_layer_to_yojson = fun (x: attack_layer) -> match x with | APPLICATION -> `String "APPLICATION" | NETWORK -> `String "NETWORK" let attack_property_identifier_to_yojson = fun (x: attack_property_identifier) -> match x with | WORDPRESS_PINGBACK_SOURCE -> `String "WORDPRESS_PINGBACK_SOURCE" | WORDPRESS_PINGBACK_REFLECTOR -> `String "WORDPRESS_PINGBACK_REFLECTOR" | SOURCE_USER_AGENT -> `String "SOURCE_USER_AGENT" | SOURCE_IP_ADDRESS -> `String "SOURCE_IP_ADDRESS" | SOURCE_COUNTRY -> `String "SOURCE_COUNTRY" | SOURCE_ASN -> `String "SOURCE_ASN" | REFERRER -> `String "REFERRER" | DESTINATION_URL -> `String "DESTINATION_URL" let attack_property_to_yojson = fun (x: attack_property) -> assoc_to_yojson( [( "Total", (option_to_yojson long_to_yojson x.total)); ( "Unit", (option_to_yojson unit__to_yojson x.unit_)); ( "TopContributors", (option_to_yojson top_contributors_to_yojson x.top_contributors)); ( "AttackPropertyIdentifier", (option_to_yojson attack_property_identifier_to_yojson x.attack_property_identifier)); ( "AttackLayer", (option_to_yojson attack_layer_to_yojson x.attack_layer)); ]) let attack_properties_to_yojson = fun tree -> list_to_yojson attack_property_to_yojson tree let attack_detail_to_yojson = fun (x: attack_detail) -> assoc_to_yojson( [( "Mitigations", (option_to_yojson mitigation_list_to_yojson x.mitigations)); ( "AttackProperties", (option_to_yojson attack_properties_to_yojson x.attack_properties)); ( "AttackCounters", (option_to_yojson summarized_counter_list_to_yojson x.attack_counters)); ( "EndTime", (option_to_yojson attack_timestamp_to_yojson x.end_time)); ( "StartTime", (option_to_yojson attack_timestamp_to_yojson x.start_time)); ( "SubResources", (option_to_yojson sub_resource_summary_list_to_yojson x.sub_resources)); ( "ResourceArn", (option_to_yojson resource_arn_to_yojson x.resource_arn)); ( "AttackId", (option_to_yojson attack_id_to_yojson x.attack_id)); ]) let describe_attack_response_to_yojson = fun (x: describe_attack_response) -> assoc_to_yojson( [( "Attack", (option_to_yojson attack_detail_to_yojson x.attack)); ]) let describe_attack_request_to_yojson = fun (x: describe_attack_request) -> assoc_to_yojson( [( "AttackId", (Some (attack_id_to_yojson x.attack_id))); ]) let access_denied_exception_to_yojson = fun (x: access_denied_exception) -> assoc_to_yojson( [( "message", (option_to_yojson error_message_to_yojson x.message)); ]) let delete_subscription_response_to_yojson = fun (x: delete_subscription_response) -> assoc_to_yojson( [ ]) let delete_subscription_request_to_yojson = fun (x: delete_subscription_request) -> assoc_to_yojson( [ ]) let delete_protection_response_to_yojson = fun (x: delete_protection_response) -> assoc_to_yojson( [ ]) let delete_protection_request_to_yojson = fun (x: delete_protection_request) -> assoc_to_yojson( [( "ProtectionId", (Some (protection_id_to_yojson x.protection_id))); ]) let delete_protection_group_response_to_yojson = fun (x: delete_protection_group_response) -> assoc_to_yojson( [ ]) let delete_protection_group_request_to_yojson = fun (x: delete_protection_group_request) -> assoc_to_yojson( [( "ProtectionGroupId", (Some (protection_group_id_to_yojson x.protection_group_id))); ]) let create_subscription_response_to_yojson = fun (x: create_subscription_response) -> assoc_to_yojson( [ ]) let create_subscription_request_to_yojson = fun (x: create_subscription_request) -> assoc_to_yojson( [ ]) let create_protection_response_to_yojson = fun (x: create_protection_response) -> assoc_to_yojson( [( "ProtectionId", (option_to_yojson protection_id_to_yojson x.protection_id)); ]) let create_protection_request_to_yojson = fun (x: create_protection_request) -> assoc_to_yojson( [( "Tags", (option_to_yojson tag_list_to_yojson x.tags)); ( "ResourceArn", (Some (resource_arn_to_yojson x.resource_arn))); ( "Name", (Some (protection_name_to_yojson x.name))); ]) let create_protection_group_response_to_yojson = fun (x: create_protection_group_response) -> assoc_to_yojson( [ ]) let create_protection_group_request_to_yojson = fun (x: create_protection_group_request) -> assoc_to_yojson( [( "Tags", (option_to_yojson tag_list_to_yojson x.tags)); ( "Members", (option_to_yojson protection_group_members_to_yojson x.members)); ( "ResourceType", (option_to_yojson protected_resource_type_to_yojson x.resource_type)); ( "Pattern", (Some (protection_group_pattern_to_yojson x.pattern))); ( "Aggregation", (Some (protection_group_aggregation_to_yojson x.aggregation))); ( "ProtectionGroupId", (Some (protection_group_id_to_yojson x.protection_group_id))); ]) let associate_proactive_engagement_details_response_to_yojson = fun (x: associate_proactive_engagement_details_response) -> assoc_to_yojson( [ ]) let associate_proactive_engagement_details_request_to_yojson = fun (x: associate_proactive_engagement_details_request) -> assoc_to_yojson( [( "EmergencyContactList", (Some (emergency_contact_list_to_yojson x.emergency_contact_list))); ]) let associate_health_check_response_to_yojson = fun (x: associate_health_check_response) -> assoc_to_yojson( [ ]) let associate_health_check_request_to_yojson = fun (x: associate_health_check_request) -> assoc_to_yojson( [( "HealthCheckArn", (Some (health_check_arn_to_yojson x.health_check_arn))); ( "ProtectionId", (Some (protection_id_to_yojson x.protection_id))); ]) let associate_drt_role_response_to_yojson = fun (x: associate_drt_role_response) -> assoc_to_yojson( [ ]) let associate_drt_role_request_to_yojson = fun (x: associate_drt_role_request) -> assoc_to_yojson( [( "RoleArn", (Some (role_arn_to_yojson x.role_arn))); ]) let associate_drt_log_bucket_response_to_yojson = fun (x: associate_drt_log_bucket_response) -> assoc_to_yojson( [ ]) let associate_drt_log_bucket_request_to_yojson = fun (x: associate_drt_log_bucket_request) -> assoc_to_yojson( [( "LogBucket", (Some (log_bucket_to_yojson x.log_bucket))); ]) let base_string_to_yojson = string_to_yojson let base_boolean_to_yojson = bool_to_yojson let base_integer_to_yojson = int_to_yojson let base_timestamp_to_yojson = timestamp_to_yojson let base_long_to_yojson = long_to_yojson let base_document_to_yojson = json_to_yojson
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>