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.eventbridge/types.ml.html
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
open Smaws_Lib let service = Service.{ namespace = "events"; endpointPrefix = "events"; version = "2015-10-07"; protocol = AwsJson_1_1 }; type dead_letter_config = { arn: string option } type update_event_bus_response = { dead_letter_config: dead_letter_config option; description: string option; kms_key_identifier: string option; name: string option; arn: string option } type update_event_bus_request = { dead_letter_config: dead_letter_config option; description: string option; kms_key_identifier: string option; name: string option } type resource_not_found_exception = { message: string option } type operation_disabled_exception = { message: string option } type internal_exception = { message: string option } type concurrent_modification_exception = { message: string option } type primary = { health_check: string } type secondary = { route: string } type failover_config = { secondary: secondary; primary: primary } type routing_config = { failover_config: failover_config } type replication_state = | DISABLED | ENABLED type replication_config = { state: replication_state option } type endpoint_event_bus = { event_bus_arn: string } type endpoint_state = | DELETE_FAILED | UPDATE_FAILED | CREATE_FAILED | DELETING | UPDATING | CREATING | ACTIVE type update_endpoint_response = { state: endpoint_state option; endpoint_url: string option; endpoint_id: string option; role_arn: string option; event_buses: endpoint_event_bus list option; replication_config: replication_config option; routing_config: routing_config option; arn: string option; name: string option } type update_endpoint_request = { role_arn: string option; event_buses: endpoint_event_bus list option; replication_config: replication_config option; routing_config: routing_config option; description: string option; name: string } type connection_state = | DEAUTHORIZING | AUTHORIZING | DEAUTHORIZED | AUTHORIZED | DELETING | UPDATING | CREATING type update_connection_response = { last_authorized_time: float option; last_modified_time: float option; creation_time: float option; connection_state: connection_state option; connection_arn: string option } type update_connection_basic_auth_request_parameters = { password: string option; username: string option } type update_connection_o_auth_client_request_parameters = { client_secret: string option; client_i_d: string option } type connection_o_auth_http_method = | PUT | POST | GET type connection_header_parameter = { is_value_secret: bool option; value: string option; key: string option } type connection_query_string_parameter = { is_value_secret: bool option; value: string option; key: string option } type connection_body_parameter = { is_value_secret: bool option; value: string option; key: string option } type connection_http_parameters = { body_parameters: connection_body_parameter list option; query_string_parameters: connection_query_string_parameter list option; header_parameters: connection_header_parameter list option } type update_connection_o_auth_request_parameters = { o_auth_http_parameters: connection_http_parameters option; http_method: connection_o_auth_http_method option; authorization_endpoint: string option; client_parameters: update_connection_o_auth_client_request_parameters option } type update_connection_api_key_auth_request_parameters = { api_key_value: string option; api_key_name: string option } type update_connection_auth_request_parameters = { invocation_http_parameters: connection_http_parameters option; api_key_auth_parameters: update_connection_api_key_auth_request_parameters option; o_auth_parameters: update_connection_o_auth_request_parameters option; basic_auth_parameters: update_connection_basic_auth_request_parameters option } type update_connection_request = { auth_parameters: update_connection_auth_request_parameters option; authorization_type: connection_authorization_type option; description: string option; name: string } type limit_exceeded_exception = { message: string option } type archive_state = | UPDATE_FAILED | CREATE_FAILED | UPDATING | CREATING | DISABLED | ENABLED type update_archive_response = { creation_time: float option; state_reason: string option; state: archive_state option; archive_arn: string option } type update_archive_request = { retention_days: int option; event_pattern: string option; description: string option; archive_name: string } type invalid_event_pattern_exception = { message: string option } type api_destination_state = | INACTIVE | ACTIVE type update_api_destination_response = { last_modified_time: float option; creation_time: float option; api_destination_state: api_destination_state option; api_destination_arn: string option } type api_destination_http_method = | DELETE | PATCH | PUT | OPTIONS | HEAD | GET | POST type update_api_destination_request = { invocation_rate_limit_per_second: int option; http_method: api_destination_http_method option; invocation_endpoint: string option; connection_arn: string option; description: string option; name: string } type untag_resource_response = unit type untag_resource_request = { tag_keys: string list; resource_ar_n: string } type managed_rule_exception = { message: string option } type test_event_pattern_response = { result: bool option } type test_event_pattern_request = { event: string; event_pattern: string } type input_transformer = { input_template: string; input_paths_map: (string * string) list option } type kinesis_parameters = { partition_key_path: string } type run_command_target = { values: string list; key: string } type run_command_parameters = { run_command_targets: run_command_target list } type launch_type = | EXTERNAL | FARGATE | EC2 type assign_public_ip = | DISABLED | ENABLED type aws_vpc_configuration = { assign_public_ip: assign_public_ip option; security_groups: string list option; subnets: string list } type network_configuration = { awsvpc_configuration: aws_vpc_configuration option } type capacity_provider_strategy_item = { base: int option; weight: int option; capacity_provider: string } type placement_constraint_type = | MEMBER_OF | DISTINCT_INSTANCE type placement_constraint = { expression: string option; type_: placement_constraint_type option } type placement_strategy_type = | BINPACK | SPREAD | RANDOM type placement_strategy = { field: string option; type_: placement_strategy_type option } type tag = { value: string; key: string } type ecs_parameters = { tags: tag list option; reference_id: string option; propagate_tags: propagate_tags option; placement_strategy: placement_strategy list option; placement_constraints: placement_constraint list option; enable_execute_command: bool option; enable_ecs_managed_tags: bool option; capacity_provider_strategy: capacity_provider_strategy_item list option; group: string option; platform_version: string option; network_configuration: network_configuration option; launch_type: launch_type option; task_count: int option; task_definition_arn: string } type batch_array_properties = { size: int option } type batch_retry_strategy = { attempts: int option } type batch_parameters = { retry_strategy: batch_retry_strategy option; array_properties: batch_array_properties option; job_name: string; job_definition: string } type sqs_parameters = { message_group_id: string option } type http_parameters = { query_string_parameters: (string * string) list option; header_parameters: (string * string) list option; path_parameter_values: string list option } type redshift_data_parameters = { sqls: string list option; with_event: bool option; statement_name: string option; sql: string option; db_user: string option; database: string; secret_manager_arn: string option } type sage_maker_pipeline_parameter = { value: string; name: string } type sage_maker_pipeline_parameters = { pipeline_parameter_list: sage_maker_pipeline_parameter list option } type retry_policy = { maximum_event_age_in_seconds: int option; maximum_retry_attempts: int option } type app_sync_parameters = { graph_ql_operation: string option } type target = { app_sync_parameters: app_sync_parameters option; retry_policy: retry_policy option; dead_letter_config: dead_letter_config option; sage_maker_pipeline_parameters: sage_maker_pipeline_parameters option; redshift_data_parameters: redshift_data_parameters option; http_parameters: http_parameters option; sqs_parameters: sqs_parameters option; batch_parameters: batch_parameters option; ecs_parameters: ecs_parameters option; run_command_parameters: run_command_parameters option; kinesis_parameters: kinesis_parameters option; input_transformer: input_transformer option; input_path: string option; input: string option; role_arn: string option; arn: string; id: string } type tag_resource_response = unit type tag_resource_request = { tags: tag list; resource_ar_n: string } type replay_state = | FAILED | CANCELLED | COMPLETED | CANCELLING | RUNNING | STARTING type start_replay_response = { replay_start_time: float option; state_reason: string option; state: replay_state option; replay_arn: string option } type replay_destination = { filter_arns: string list option; arn: string } type start_replay_request = { destination: replay_destination; event_end_time: float; event_start_time: float; event_source_arn: string; description: string option; replay_name: string } type resource_already_exists_exception = { message: string option } type rule_state = | ENABLED_WITH_ALL_CLOUDTRAIL_MANAGEMENT_EVENTS | DISABLED | ENABLED type rule = { event_bus_name: string option; managed_by: string option; role_arn: string option; schedule_expression: string option; description: string option; state: rule_state option; event_pattern: string option; arn: string option; name: string option } type replay = { replay_end_time: float option; replay_start_time: float option; event_last_replayed_time: float option; event_end_time: float option; event_start_time: float option; state_reason: string option; state: replay_state option; event_source_arn: string option; replay_name: string option } type remove_targets_result_entry = { error_message: string option; error_code: string option; target_id: string option } type remove_targets_response = { failed_entries: remove_targets_result_entry list option; failed_entry_count: int option } type remove_targets_request = { force: bool option; ids: string list; event_bus_name: string option; rule: string } type remove_permission_request = { event_bus_name: string option; remove_all_permissions: bool option; statement_id: string option } type put_targets_result_entry = { error_message: string option; error_code: string option; target_id: string option } type put_targets_response = { failed_entries: put_targets_result_entry list option; failed_entry_count: int option } type put_targets_request = { targets: target list; event_bus_name: string option; rule: string } type put_rule_response = { rule_arn: string option } type put_rule_request = { event_bus_name: string option; tags: tag list option; role_arn: string option; description: string option; state: rule_state option; event_pattern: string option; schedule_expression: string option; name: string } type condition = { value: string; key: string; type_: string } type put_permission_request = { policy: string option; condition: condition option; statement_id: string option; principal: string option; action: string option; event_bus_name: string option } type policy_length_exceeded_exception = { message: string option } type put_partner_events_result_entry = { error_message: string option; error_code: string option; event_id: string option } type put_partner_events_response = { entries: put_partner_events_result_entry list option; failed_entry_count: int option } type put_partner_events_request_entry = { detail: string option; detail_type: string option; resources: string list option; source: string option; time: float option } type put_partner_events_request = { entries: put_partner_events_request_entry list } type put_events_result_entry = { error_message: string option; error_code: string option; event_id: string option } type put_events_response = { entries: put_events_result_entry list option; failed_entry_count: int option } type put_events_request_entry = { trace_header: string option; event_bus_name: string option; detail: string option; detail_type: string option; resources: string list option; source: string option; time: float option } type put_events_request = { endpoint_id: string option; entries: put_events_request_entry list } type partner_event_source = { name: string option; arn: string option } type event_source_state = | DELETED | ACTIVE | PENDING type partner_event_source_account = { state: event_source_state option; expiration_time: float option; creation_time: float option; account: string option } type list_targets_by_rule_response = { next_token: string option; targets: target list option } type list_targets_by_rule_request = { limit: int option; next_token: string option; event_bus_name: string option; rule: string } type list_rules_response = { next_token: string option; rules: rule list option } type list_rules_request = { limit: int option; next_token: string option; event_bus_name: string option; name_prefix: string option } type list_rule_names_by_target_response = { next_token: string option; rule_names: string list option } type list_rule_names_by_target_request = { limit: int option; next_token: string option; event_bus_name: string option; target_arn: string } type list_replays_response = { next_token: string option; replays: replay list option } type list_replays_request = { limit: int option; next_token: string option; event_source_arn: string option; state: replay_state option; name_prefix: string option } type list_partner_event_sources_response = { next_token: string option; partner_event_sources: partner_event_source list option } type list_partner_event_sources_request = { limit: int option; next_token: string option; name_prefix: string } type list_partner_event_source_accounts_response = { next_token: string option; partner_event_source_accounts: partner_event_source_account list option } type list_partner_event_source_accounts_request = { limit: int option; next_token: string option; event_source_name: string } type event_source = { state: event_source_state option; name: string option; expiration_time: float option; creation_time: float option; created_by: string option; arn: string option } type list_event_sources_response = { next_token: string option; event_sources: event_source list option } type list_event_sources_request = { limit: int option; next_token: string option; name_prefix: string option } type event_bus = { last_modified_time: float option; creation_time: float option; policy: string option; description: string option; arn: string option; name: string option } type list_event_buses_response = { next_token: string option; event_buses: event_bus list option } type list_event_buses_request = { limit: int option; next_token: string option; name_prefix: string option } type endpoint = { last_modified_time: float option; creation_time: float option; state_reason: string option; state: endpoint_state option; endpoint_url: string option; endpoint_id: string option; role_arn: string option; event_buses: endpoint_event_bus list option; replication_config: replication_config option; routing_config: routing_config option; arn: string option; description: string option; name: string option } type list_endpoints_response = { next_token: string option; endpoints: endpoint list option } type list_endpoints_request = { max_results: int option; next_token: string option; home_region: string option; name_prefix: string option } type connection = { last_authorized_time: float option; last_modified_time: float option; creation_time: float option; authorization_type: connection_authorization_type option; state_reason: string option; connection_state: connection_state option; name: string option; connection_arn: string option } type list_connections_response = { next_token: string option; connections: connection list option } type list_connections_request = { limit: int option; next_token: string option; connection_state: connection_state option; name_prefix: string option } type archive = { creation_time: float option; event_count: int option; size_bytes: int option; retention_days: int option; state_reason: string option; state: archive_state option; event_source_arn: string option; archive_name: string option } type list_archives_response = { next_token: string option; archives: archive list option } type list_archives_request = { limit: int option; next_token: string option; state: archive_state option; event_source_arn: string option; name_prefix: string option } type api_destination = { last_modified_time: float option; creation_time: float option; invocation_rate_limit_per_second: int option; http_method: api_destination_http_method option; invocation_endpoint: string option; connection_arn: string option; api_destination_state: api_destination_state option; name: string option; api_destination_arn: string option } type list_api_destinations_response = { next_token: string option; api_destinations: api_destination list option } type list_api_destinations_request = { limit: int option; next_token: string option; connection_arn: string option; name_prefix: string option } type invalid_state_exception = { message: string option } type illegal_status_exception = { message: string option } type enable_rule_request = { event_bus_name: string option; name: string } type disable_rule_request = { event_bus_name: string option; name: string } type describe_rule_response = { created_by: string option; event_bus_name: string option; managed_by: string option; role_arn: string option; description: string option; state: rule_state option; schedule_expression: string option; event_pattern: string option; arn: string option; name: string option } type describe_rule_request = { event_bus_name: string option; name: string } type describe_replay_response = { replay_end_time: float option; replay_start_time: float option; event_last_replayed_time: float option; event_end_time: float option; event_start_time: float option; destination: replay_destination option; event_source_arn: string option; state_reason: string option; state: replay_state option; description: string option; replay_arn: string option; replay_name: string option } type describe_replay_request = { replay_name: string } type describe_partner_event_source_response = { name: string option; arn: string option } type describe_partner_event_source_request = { name: string } type describe_event_source_response = { state: event_source_state option; name: string option; expiration_time: float option; creation_time: float option; created_by: string option; arn: string option } type describe_event_source_request = { name: string } type describe_event_bus_response = { last_modified_time: float option; creation_time: float option; policy: string option; dead_letter_config: dead_letter_config option; kms_key_identifier: string option; description: string option; arn: string option; name: string option } type describe_event_bus_request = { name: string option } type describe_endpoint_response = { last_modified_time: float option; creation_time: float option; state_reason: string option; state: endpoint_state option; endpoint_url: string option; endpoint_id: string option; role_arn: string option; event_buses: endpoint_event_bus list option; replication_config: replication_config option; routing_config: routing_config option; arn: string option; description: string option; name: string option } type describe_endpoint_request = { home_region: string option; name: string } type connection_basic_auth_response_parameters = { username: string option } type connection_o_auth_client_response_parameters = { client_i_d: string option } type connection_o_auth_response_parameters = { o_auth_http_parameters: connection_http_parameters option; http_method: connection_o_auth_http_method option; authorization_endpoint: string option; client_parameters: connection_o_auth_client_response_parameters option } type connection_api_key_auth_response_parameters = { api_key_name: string option } type connection_auth_response_parameters = { invocation_http_parameters: connection_http_parameters option; api_key_auth_parameters: connection_api_key_auth_response_parameters option; o_auth_parameters: connection_o_auth_response_parameters option; basic_auth_parameters: connection_basic_auth_response_parameters option } type describe_connection_response = { last_authorized_time: float option; last_modified_time: float option; creation_time: float option; auth_parameters: connection_auth_response_parameters option; secret_arn: string option; authorization_type: connection_authorization_type option; state_reason: string option; connection_state: connection_state option; description: string option; name: string option; connection_arn: string option } type describe_connection_request = { name: string } type describe_archive_response = { creation_time: float option; event_count: int option; size_bytes: int option; retention_days: int option; state_reason: string option; state: archive_state option; event_pattern: string option; description: string option; event_source_arn: string option; archive_name: string option; archive_arn: string option } type describe_archive_request = { archive_name: string } type describe_api_destination_response = { last_modified_time: float option; creation_time: float option; invocation_rate_limit_per_second: int option; http_method: api_destination_http_method option; invocation_endpoint: string option; connection_arn: string option; api_destination_state: api_destination_state option; description: string option; name: string option; api_destination_arn: string option } type describe_api_destination_request = { name: string } type delete_rule_request = { force: bool option; event_bus_name: string option; name: string } type delete_partner_event_source_request = { account: string; name: string } type delete_event_bus_request = { name: string } type delete_endpoint_response = unit type delete_endpoint_request = { name: string } type delete_connection_response = { last_authorized_time: float option; last_modified_time: float option; creation_time: float option; connection_state: connection_state option; connection_arn: string option } type delete_connection_request = { name: string } type delete_archive_response = unit type delete_archive_request = { archive_name: string } type delete_api_destination_response = unit type delete_api_destination_request = { name: string } type deactivate_event_source_request = { name: string } type create_partner_event_source_response = { event_source_arn: string option } type create_partner_event_source_request = { account: string; name: string } type create_event_bus_response = { dead_letter_config: dead_letter_config option; kms_key_identifier: string option; description: string option; event_bus_arn: string option } type create_event_bus_request = { tags: tag list option; dead_letter_config: dead_letter_config option; kms_key_identifier: string option; description: string option; event_source_name: string option; name: string } type create_endpoint_response = { state: endpoint_state option; role_arn: string option; event_buses: endpoint_event_bus list option; replication_config: replication_config option; routing_config: routing_config option; arn: string option; name: string option } type create_endpoint_request = { role_arn: string option; event_buses: endpoint_event_bus list; replication_config: replication_config option; routing_config: routing_config; description: string option; name: string } type create_connection_response = { last_modified_time: float option; creation_time: float option; connection_state: connection_state option; connection_arn: string option } type create_connection_basic_auth_request_parameters = { password: string; username: string } type create_connection_o_auth_client_request_parameters = { client_secret: string; client_i_d: string } type create_connection_o_auth_request_parameters = { o_auth_http_parameters: connection_http_parameters option; http_method: connection_o_auth_http_method; authorization_endpoint: string; client_parameters: create_connection_o_auth_client_request_parameters } type create_connection_api_key_auth_request_parameters = { api_key_value: string; api_key_name: string } type create_connection_auth_request_parameters = { invocation_http_parameters: connection_http_parameters option; api_key_auth_parameters: create_connection_api_key_auth_request_parameters option; o_auth_parameters: create_connection_o_auth_request_parameters option; basic_auth_parameters: create_connection_basic_auth_request_parameters option } type create_connection_request = { auth_parameters: create_connection_auth_request_parameters; authorization_type: connection_authorization_type; description: string option; name: string } type create_archive_response = { creation_time: float option; state_reason: string option; state: archive_state option; archive_arn: string option } type create_archive_request = { retention_days: int option; event_pattern: string option; description: string option; event_source_arn: string; archive_name: string } type create_api_destination_response = { last_modified_time: float option; creation_time: float option; api_destination_state: api_destination_state option; api_destination_arn: string option } type create_api_destination_request = { invocation_rate_limit_per_second: int option; http_method: api_destination_http_method; invocation_endpoint: string; connection_arn: string; description: string option; name: string } type cancel_replay_response = { state_reason: string option; state: replay_state option; replay_arn: string option } type cancel_replay_request = { replay_name: string } type activate_event_source_request = { name: string } type base_document = Json.t
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>