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.dynamodb/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 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741
open Smaws_Lib let service = Service.{ namespace = "dynamodb"; endpointPrefix = "dynamodb"; version = "2012-08-10"; protocol = AwsJson_1_0 }; type attribute_value = BOOL of bool | NULL of bool | L of attribute_value list | M of (string * attribute_value) list | BS of bytes list | NS of string list | SS of string list | B of bytes | N of string | S of string type put_request = { item: (string * attribute_value) list } type delete_request = { key: (string * attribute_value) list } type write_request = { delete_request: delete_request option; put_request: put_request option } type time_to_live_specification = { attribute_name: string; enabled: bool } type update_time_to_live_output = { time_to_live_specification: time_to_live_specification option } type update_time_to_live_input = { time_to_live_specification: time_to_live_specification; table_name: string } type resource_not_found_exception = { message: string option } type resource_in_use_exception = { message: string option } type limit_exceeded_exception = { message: string option } type invalid_endpoint_exception = { message: string option } type internal_server_error = { message: string option } type table_status = | ARCHIVED | ARCHIVING | INACCESSIBLE_ENCRYPTION_CREDENTIALS | ACTIVE | DELETING | UPDATING | CREATING type index_status = | ACTIVE | DELETING | UPDATING | CREATING type auto_scaling_target_tracking_scaling_policy_configuration_description = { target_value: float; scale_out_cooldown: int option; scale_in_cooldown: int option; disable_scale_in: bool option } type auto_scaling_policy_description = { target_tracking_scaling_policy_configuration: auto_scaling_target_tracking_scaling_policy_configuration_description option; policy_name: string option } type auto_scaling_settings_description = { scaling_policies: auto_scaling_policy_description list option; auto_scaling_role_arn: string option; auto_scaling_disabled: bool option; maximum_units: int option; minimum_units: int option } type replica_global_secondary_index_auto_scaling_description = { provisioned_write_capacity_auto_scaling_settings: auto_scaling_settings_description option; provisioned_read_capacity_auto_scaling_settings: auto_scaling_settings_description option; index_status: index_status option; index_name: string option } type replica_status = | INACCESSIBLE_ENCRYPTION_CREDENTIALS | REGION_DISABLED | ACTIVE | DELETING | UPDATING | CREATION_FAILED | CREATING type replica_auto_scaling_description = { replica_status: replica_status option; replica_provisioned_write_capacity_auto_scaling_settings: auto_scaling_settings_description option; replica_provisioned_read_capacity_auto_scaling_settings: auto_scaling_settings_description option; global_secondary_indexes: replica_global_secondary_index_auto_scaling_description list option; region_name: string option } type table_auto_scaling_description = { replicas: replica_auto_scaling_description list option; table_status: table_status option; table_name: string option } type update_table_replica_auto_scaling_output = { table_auto_scaling_description: table_auto_scaling_description option } type auto_scaling_target_tracking_scaling_policy_configuration_update = { target_value: float; scale_out_cooldown: int option; scale_in_cooldown: int option; disable_scale_in: bool option } type auto_scaling_policy_update = { target_tracking_scaling_policy_configuration: auto_scaling_target_tracking_scaling_policy_configuration_update; policy_name: string option } type auto_scaling_settings_update = { scaling_policy_update: auto_scaling_policy_update option; auto_scaling_role_arn: string option; auto_scaling_disabled: bool option; maximum_units: int option; minimum_units: int option } type global_secondary_index_auto_scaling_update = { provisioned_write_capacity_auto_scaling_update: auto_scaling_settings_update option; index_name: string option } type replica_global_secondary_index_auto_scaling_update = { provisioned_read_capacity_auto_scaling_update: auto_scaling_settings_update option; index_name: string option } type replica_auto_scaling_update = { replica_provisioned_read_capacity_auto_scaling_update: auto_scaling_settings_update option; replica_global_secondary_index_updates: replica_global_secondary_index_auto_scaling_update list option; region_name: string } type update_table_replica_auto_scaling_input = { replica_updates: replica_auto_scaling_update list option; provisioned_write_capacity_auto_scaling_update: auto_scaling_settings_update option; table_name: string; global_secondary_index_updates: global_secondary_index_auto_scaling_update list option } type scalar_attribute_type = | B | N | S type attribute_definition = { attribute_type: scalar_attribute_type; attribute_name: string } type key_type = | RANGE | HASH type key_schema_element = { key_type: key_type; attribute_name: string } type provisioned_throughput_description = { write_capacity_units: int option; read_capacity_units: int option; number_of_decreases_today: int option; last_decrease_date_time: float option; last_increase_date_time: float option } type billing_mode = | PAY_PER_REQUEST | PROVISIONED type billing_mode_summary = { last_update_to_pay_per_request_date_time: float option; billing_mode: billing_mode option } type projection_type = | INCLUDE | KEYS_ONLY | ALL type projection = { non_key_attributes: string list option; projection_type: projection_type option } type local_secondary_index_description = { index_arn: string option; item_count: int option; index_size_bytes: int option; projection: projection option; key_schema: key_schema_element list option; index_name: string option } type on_demand_throughput = { max_write_request_units: int option; max_read_request_units: int option } type global_secondary_index_description = { on_demand_throughput: on_demand_throughput option; index_arn: string option; item_count: int option; index_size_bytes: int option; provisioned_throughput: provisioned_throughput_description option; backfilling: bool option; index_status: index_status option; projection: projection option; key_schema: key_schema_element list option; index_name: string option } type stream_view_type = | KEYS_ONLY | NEW_AND_OLD_IMAGES | OLD_IMAGE | NEW_IMAGE type stream_specification = { stream_view_type: stream_view_type option; stream_enabled: bool } type provisioned_throughput_override = { read_capacity_units: int option } type on_demand_throughput_override = { max_read_request_units: int option } type replica_global_secondary_index_description = { on_demand_throughput_override: on_demand_throughput_override option; provisioned_throughput_override: provisioned_throughput_override option; index_name: string option } type table_class = | STANDARD_INFREQUENT_ACCESS | STANDARD type table_class_summary = { last_update_date_time: float option; table_class: table_class option } type replica_description = { replica_table_class_summary: table_class_summary option; replica_inaccessible_date_time: float option; global_secondary_indexes: replica_global_secondary_index_description list option; on_demand_throughput_override: on_demand_throughput_override option; provisioned_throughput_override: provisioned_throughput_override option; kms_master_key_id: string option; replica_status_percent_progress: string option; replica_status_description: string option; replica_status: replica_status option; region_name: string option } type restore_summary = { restore_in_progress: bool; restore_date_time: float; source_table_arn: string option; source_backup_arn: string option } type sse_status = | UPDATING | DISABLED | DISABLING | ENABLED | ENABLING type sse_type = | KMS | AES256 type sse_description = { inaccessible_encryption_date_time: float option; kms_master_key_arn: string option; sse_type: sse_type option; status: sse_status option } type archival_summary = { archival_backup_arn: string option; archival_reason: string option; archival_date_time: float option } type table_description = { on_demand_throughput: on_demand_throughput option; deletion_protection_enabled: bool option; table_class_summary: table_class_summary option; archival_summary: archival_summary option; sse_description: sse_description option; restore_summary: restore_summary option; replicas: replica_description list option; global_table_version: string option; latest_stream_arn: string option; latest_stream_label: string option; stream_specification: stream_specification option; global_secondary_indexes: global_secondary_index_description list option; local_secondary_indexes: local_secondary_index_description list option; billing_mode_summary: billing_mode_summary option; table_id: string option; table_arn: string option; item_count: int option; table_size_bytes: int option; provisioned_throughput: provisioned_throughput_description option; creation_date_time: float option; table_status: table_status option; key_schema: key_schema_element list option; table_name: string option; attribute_definitions: attribute_definition list option } type update_table_output = { table_description: table_description option } type provisioned_throughput = { write_capacity_units: int; read_capacity_units: int } type update_global_secondary_index_action = { on_demand_throughput: on_demand_throughput option; provisioned_throughput: provisioned_throughput option; index_name: string } type create_global_secondary_index_action = { on_demand_throughput: on_demand_throughput option; provisioned_throughput: provisioned_throughput option; projection: projection; key_schema: key_schema_element list; index_name: string } type delete_global_secondary_index_action = { index_name: string } type global_secondary_index_update = { delete: delete_global_secondary_index_action option; create: create_global_secondary_index_action option; update: update_global_secondary_index_action option } type sse_specification = { kms_master_key_id: string option; sse_type: sse_type option; enabled: bool option } type replica_global_secondary_index = { on_demand_throughput_override: on_demand_throughput_override option; provisioned_throughput_override: provisioned_throughput_override option; index_name: string } type create_replication_group_member_action = { table_class_override: table_class option; global_secondary_indexes: replica_global_secondary_index list option; on_demand_throughput_override: on_demand_throughput_override option; provisioned_throughput_override: provisioned_throughput_override option; kms_master_key_id: string option; region_name: string } type update_replication_group_member_action = { table_class_override: table_class option; global_secondary_indexes: replica_global_secondary_index list option; on_demand_throughput_override: on_demand_throughput_override option; provisioned_throughput_override: provisioned_throughput_override option; kms_master_key_id: string option; region_name: string } type delete_replication_group_member_action = { region_name: string } type replication_group_update = { delete: delete_replication_group_member_action option; update: update_replication_group_member_action option; create: create_replication_group_member_action option } type update_table_input = { on_demand_throughput: on_demand_throughput option; deletion_protection_enabled: bool option; table_class: table_class option; replica_updates: replication_group_update list option; sse_specification: sse_specification option; stream_specification: stream_specification option; global_secondary_index_updates: global_secondary_index_update list option; provisioned_throughput: provisioned_throughput option; billing_mode: billing_mode option; table_name: string; attribute_definitions: attribute_definition list option } type destination_status = | UPDATING | ENABLE_FAILED | DISABLED | DISABLING | ACTIVE | ENABLING type approximate_creation_date_time_precision = | MICROSECOND | MILLISECOND type update_kinesis_streaming_configuration = { approximate_creation_date_time_precision: approximate_creation_date_time_precision option } type update_kinesis_streaming_destination_output = { update_kinesis_streaming_configuration: update_kinesis_streaming_configuration option; destination_status: destination_status option; stream_arn: string option; table_name: string option } type update_kinesis_streaming_destination_input = { update_kinesis_streaming_configuration: update_kinesis_streaming_configuration option; stream_arn: string; table_name: string } type capacity = { capacity_units: float option; write_capacity_units: float option; read_capacity_units: float option } type consumed_capacity = { global_secondary_indexes: (string * capacity) list option; local_secondary_indexes: (string * capacity) list option; table: capacity option; write_capacity_units: float option; read_capacity_units: float option; capacity_units: float option; table_name: string option } type item_collection_metrics = { size_estimate_range_g_b: float list option; item_collection_key: (string * attribute_value) list option } type update_item_output = { item_collection_metrics: item_collection_metrics option; consumed_capacity: consumed_capacity option; attributes: (string * attribute_value) list option } type attribute_action = | DELETE | PUT | ADD type attribute_value_update = { action: attribute_action option; value: attribute_value option } type comparison_operator = | BEGINS_WITH | NOT_CONTAINS | CONTAINS | NULL | NOT_NULL | BETWEEN | GT | GE | LT | LE | IN | NE | EQ type expected_attribute_value = { attribute_value_list: attribute_value list option; comparison_operator: comparison_operator option; exists: bool option; value: attribute_value option } type conditional_operator = | OR | AND type return_value = | UPDATED_NEW | ALL_NEW | UPDATED_OLD | ALL_OLD | NONE type return_consumed_capacity = | NONE | TOTAL | INDEXES type return_item_collection_metrics = | NONE | SIZE type return_values_on_condition_check_failure = | NONE | ALL_OLD type update_item_input = { return_values_on_condition_check_failure: return_values_on_condition_check_failure option; expression_attribute_values: (string * attribute_value) list option; expression_attribute_names: (string * string) list option; condition_expression: string option; update_expression: string option; return_item_collection_metrics: return_item_collection_metrics option; return_consumed_capacity: return_consumed_capacity option; return_values: return_value option; conditional_operator: conditional_operator option; expected: (string * expected_attribute_value) list option; attribute_updates: (string * attribute_value_update) list option; key: (string * attribute_value) list; table_name: string } type transaction_conflict_exception = { message: string option } type request_limit_exceeded = { message: string option } type provisioned_throughput_exceeded_exception = { message: string option } type item_collection_size_limit_exceeded_exception = { message: string option } type conditional_check_failed_exception = { item: (string * attribute_value) list option; message: string option } type replica_global_secondary_index_settings_description = { provisioned_write_capacity_auto_scaling_settings: auto_scaling_settings_description option; provisioned_write_capacity_units: int option; provisioned_read_capacity_auto_scaling_settings: auto_scaling_settings_description option; provisioned_read_capacity_units: int option; index_status: index_status option; index_name: string } type replica_settings_description = { replica_table_class_summary: table_class_summary option; replica_global_secondary_index_settings: replica_global_secondary_index_settings_description list option; replica_provisioned_write_capacity_auto_scaling_settings: auto_scaling_settings_description option; replica_provisioned_write_capacity_units: int option; replica_provisioned_read_capacity_auto_scaling_settings: auto_scaling_settings_description option; replica_provisioned_read_capacity_units: int option; replica_billing_mode_summary: billing_mode_summary option; replica_status: replica_status option; region_name: string } type update_global_table_settings_output = { replica_settings: replica_settings_description list option; global_table_name: string option } type global_table_global_secondary_index_settings_update = { provisioned_write_capacity_auto_scaling_settings_update: auto_scaling_settings_update option; provisioned_write_capacity_units: int option; index_name: string } type replica_global_secondary_index_settings_update = { provisioned_read_capacity_auto_scaling_settings_update: auto_scaling_settings_update option; provisioned_read_capacity_units: int option; index_name: string } type replica_settings_update = { replica_table_class: table_class option; replica_global_secondary_index_settings_update: replica_global_secondary_index_settings_update list option; replica_provisioned_read_capacity_auto_scaling_settings_update: auto_scaling_settings_update option; replica_provisioned_read_capacity_units: int option; region_name: string } type update_global_table_settings_input = { replica_settings_update: replica_settings_update list option; global_table_global_secondary_index_settings_update: global_table_global_secondary_index_settings_update list option; global_table_provisioned_write_capacity_auto_scaling_settings_update: auto_scaling_settings_update option; global_table_provisioned_write_capacity_units: int option; global_table_billing_mode: billing_mode option; global_table_name: string } type replica_not_found_exception = { message: string option } type index_not_found_exception = { message: string option } type global_table_not_found_exception = { message: string option } type global_table_status = | UPDATING | DELETING | ACTIVE | CREATING type global_table_description = { global_table_name: string option; global_table_status: global_table_status option; creation_date_time: float option; global_table_arn: string option; replication_group: replica_description list option } type update_global_table_output = { global_table_description: global_table_description option } type create_replica_action = { region_name: string } type delete_replica_action = { region_name: string } type replica_update = { delete: delete_replica_action option; create: create_replica_action option } type update_global_table_input = { replica_updates: replica_update list; global_table_name: string } type table_not_found_exception = { message: string option } type replica_already_exists_exception = { message: string option } type contributor_insights_status = | FAILED | DISABLED | DISABLING | ENABLED | ENABLING type update_contributor_insights_output = { contributor_insights_status: contributor_insights_status option; index_name: string option; table_name: string option } type contributor_insights_action = | DISABLE | ENABLE type update_contributor_insights_input = { contributor_insights_action: contributor_insights_action; index_name: string option; table_name: string } type continuous_backups_status = | DISABLED | ENABLED type point_in_time_recovery_status = | DISABLED | ENABLED type point_in_time_recovery_description = { latest_restorable_date_time: float option; earliest_restorable_date_time: float option; point_in_time_recovery_status: point_in_time_recovery_status option } type continuous_backups_description = { point_in_time_recovery_description: point_in_time_recovery_description option; continuous_backups_status: continuous_backups_status } type update_continuous_backups_output = { continuous_backups_description: continuous_backups_description option } type point_in_time_recovery_specification = { point_in_time_recovery_enabled: bool } type update_continuous_backups_input = { point_in_time_recovery_specification: point_in_time_recovery_specification; table_name: string } type update = { return_values_on_condition_check_failure: return_values_on_condition_check_failure option; expression_attribute_values: (string * attribute_value) list option; expression_attribute_names: (string * string) list option; condition_expression: string option; table_name: string; update_expression: string; key: (string * attribute_value) list } type untag_resource_input = { tag_keys: string list; resource_arn: string } type transaction_in_progress_exception = { message: string option } type cancellation_reason = { message: string option; code: string option; item: (string * attribute_value) list option } type transaction_canceled_exception = { cancellation_reasons: cancellation_reason list option; message: string option } type transact_write_items_output = { item_collection_metrics: (string * item_collection_metrics list) list option; consumed_capacity: consumed_capacity list option } type condition_check = { return_values_on_condition_check_failure: return_values_on_condition_check_failure option; expression_attribute_values: (string * attribute_value) list option; expression_attribute_names: (string * string) list option; condition_expression: string; table_name: string; key: (string * attribute_value) list } type put = { return_values_on_condition_check_failure: return_values_on_condition_check_failure option; expression_attribute_values: (string * attribute_value) list option; expression_attribute_names: (string * string) list option; condition_expression: string option; table_name: string; item: (string * attribute_value) list } type delete = { return_values_on_condition_check_failure: return_values_on_condition_check_failure option; expression_attribute_values: (string * attribute_value) list option; expression_attribute_names: (string * string) list option; condition_expression: string option; table_name: string; key: (string * attribute_value) list } type transact_write_item = { update: update option; delete: delete option; put: put option; condition_check: condition_check option } type transact_write_items_input = { client_request_token: string option; return_item_collection_metrics: return_item_collection_metrics option; return_consumed_capacity: return_consumed_capacity option; transact_items: transact_write_item list } type idempotent_parameter_mismatch_exception = { message: string option } type item_response = { item: (string * attribute_value) list option } type transact_get_items_output = { responses: item_response list option; consumed_capacity: consumed_capacity list option } type get = { expression_attribute_names: (string * string) list option; projection_expression: string option; table_name: string; key: (string * attribute_value) list } type transact_get_item = { get: get } type transact_get_items_input = { return_consumed_capacity: return_consumed_capacity option; transact_items: transact_get_item list } type time_to_live_status = | DISABLED | ENABLED | DISABLING | ENABLING type time_to_live_description = { attribute_name: string option; time_to_live_status: time_to_live_status option } type tag = { value: string; key: string } type tag_resource_input = { tags: tag list; resource_arn: string } type table_in_use_exception = { message: string option } type global_secondary_index = { on_demand_throughput: on_demand_throughput option; provisioned_throughput: provisioned_throughput option; projection: projection; key_schema: key_schema_element list; index_name: string } type table_creation_parameters = { global_secondary_indexes: global_secondary_index list option; sse_specification: sse_specification option; on_demand_throughput: on_demand_throughput option; provisioned_throughput: provisioned_throughput option; billing_mode: billing_mode option; key_schema: key_schema_element list; attribute_definitions: attribute_definition list; table_name: string } type table_already_exists_exception = { message: string option } type local_secondary_index_info = { projection: projection option; key_schema: key_schema_element list option; index_name: string option } type global_secondary_index_info = { on_demand_throughput: on_demand_throughput option; provisioned_throughput: provisioned_throughput option; projection: projection option; key_schema: key_schema_element list option; index_name: string option } type source_table_feature_details = { sse_description: sse_description option; time_to_live_description: time_to_live_description option; stream_description: stream_specification option; global_secondary_indexes: global_secondary_index_info list option; local_secondary_indexes: local_secondary_index_info list option } type source_table_details = { billing_mode: billing_mode option; item_count: int option; on_demand_throughput: on_demand_throughput option; provisioned_throughput: provisioned_throughput; table_creation_date_time: float; key_schema: key_schema_element list; table_size_bytes: int option; table_arn: string option; table_id: string; table_name: string } type select = | COUNT | SPECIFIC_ATTRIBUTES | ALL_PROJECTED_ATTRIBUTES | ALL_ATTRIBUTES type scan_output = { consumed_capacity: consumed_capacity option; last_evaluated_key: (string * attribute_value) list option; scanned_count: int option; count: int option; items: (string * attribute_value) list list option } type condition = { comparison_operator: comparison_operator; attribute_value_list: attribute_value list option } type scan_input = { consistent_read: bool option; expression_attribute_values: (string * attribute_value) list option; expression_attribute_names: (string * string) list option; filter_expression: string option; projection_expression: string option; segment: int option; total_segments: int option; return_consumed_capacity: return_consumed_capacity option; exclusive_start_key: (string * attribute_value) list option; conditional_operator: conditional_operator option; scan_filter: (string * condition) list option; select: select option; limit: int option; attributes_to_get: string list option; index_name: string option; table_name: string } type s3_sse_algorithm = | KMS | AES256 type s3_bucket_source = { s3_key_prefix: string option; s3_bucket: string; s3_bucket_owner: string option } type restore_table_to_point_in_time_output = { table_description: table_description option } type local_secondary_index = { projection: projection; key_schema: key_schema_element list; index_name: string } type restore_table_to_point_in_time_input = { sse_specification_override: sse_specification option; on_demand_throughput_override: on_demand_throughput option; provisioned_throughput_override: provisioned_throughput option; local_secondary_index_override: local_secondary_index list option; global_secondary_index_override: global_secondary_index list option; billing_mode_override: billing_mode option; restore_date_time: float option; use_latest_restorable_time: bool option; target_table_name: string; source_table_name: string option; source_table_arn: string option } type invalid_restore_time_exception = { message: string option } type restore_table_from_backup_output = { table_description: table_description option } type restore_table_from_backup_input = { sse_specification_override: sse_specification option; on_demand_throughput_override: on_demand_throughput option; provisioned_throughput_override: provisioned_throughput option; local_secondary_index_override: local_secondary_index list option; global_secondary_index_override: global_secondary_index list option; billing_mode_override: billing_mode option; backup_arn: string; target_table_name: string } type backup_not_found_exception = { message: string option } type backup_in_use_exception = { message: string option } type replica = { region_name: string option } type query_output = { consumed_capacity: consumed_capacity option; last_evaluated_key: (string * attribute_value) list option; scanned_count: int option; count: int option; items: (string * attribute_value) list list option } type query_input = { expression_attribute_values: (string * attribute_value) list option; expression_attribute_names: (string * string) list option; key_condition_expression: string option; filter_expression: string option; projection_expression: string option; return_consumed_capacity: return_consumed_capacity option; exclusive_start_key: (string * attribute_value) list option; scan_index_forward: bool option; conditional_operator: conditional_operator option; query_filter: (string * condition) list option; key_conditions: (string * condition) list option; consistent_read: bool option; limit: int option; attributes_to_get: string list option; select: select option; index_name: string option; table_name: string } type put_resource_policy_output = { revision_id: string option } type put_resource_policy_input = { confirm_remove_self_resource_access: bool option; expected_revision_id: string option; policy: string; resource_arn: string } type policy_not_found_exception = { message: string option } type put_item_output = { item_collection_metrics: item_collection_metrics option; consumed_capacity: consumed_capacity option; attributes: (string * attribute_value) list option } type put_item_input = { return_values_on_condition_check_failure: return_values_on_condition_check_failure option; expression_attribute_values: (string * attribute_value) list option; expression_attribute_names: (string * string) list option; condition_expression: string option; conditional_operator: conditional_operator option; return_item_collection_metrics: return_item_collection_metrics option; return_consumed_capacity: return_consumed_capacity option; return_values: return_value option; expected: (string * expected_attribute_value) list option; item: (string * attribute_value) list; table_name: string } type batch_statement_error_code_enum = | DuplicateItem | AccessDenied | ResourceNotFound | InternalServerError | ThrottlingError | TransactionConflict | ProvisionedThroughputExceeded | ValidationError | RequestLimitExceeded | ItemCollectionSizeLimitExceeded | ConditionalCheckFailed type batch_statement_error = { item: (string * attribute_value) list option; message: string option; code: batch_statement_error_code_enum option } type batch_statement_response = { item: (string * attribute_value) list option; table_name: string option; error: batch_statement_error option } type batch_statement_request = { return_values_on_condition_check_failure: return_values_on_condition_check_failure option; consistent_read: bool option; parameters: attribute_value list option; statement: string } type parameterized_statement = { return_values_on_condition_check_failure: return_values_on_condition_check_failure option; parameters: attribute_value list option; statement: string } type list_tables_output = { last_evaluated_table_name: string option; table_names: string list option } type list_tables_input = { limit: int option; exclusive_start_table_name: string option } type import_status = | FAILED | CANCELLED | CANCELLING | COMPLETED | IN_PROGRESS type input_format = | CSV | ION | DYNAMODB_JSON type import_summary = { end_time: float option; start_time: float option; input_format: input_format option; cloud_watch_log_group_arn: string option; s3_bucket_source: s3_bucket_source option; table_arn: string option; import_status: import_status option; import_arn: string option } type list_imports_output = { next_token: string option; import_summary_list: import_summary list option } type list_imports_input = { next_token: string option; page_size: int option; table_arn: string option } type global_table = { replication_group: replica list option; global_table_name: string option } type list_global_tables_output = { last_evaluated_global_table_name: string option; global_tables: global_table list option } type list_global_tables_input = { region_name: string option; limit: int option; exclusive_start_global_table_name: string option } type export_status = | FAILED | COMPLETED | IN_PROGRESS type export_type = | INCREMENTAL_EXPORT | FULL_EXPORT type export_summary = { export_type: export_type option; export_status: export_status option; export_arn: string option } type list_exports_output = { next_token: string option; export_summaries: export_summary list option } type list_exports_input = { next_token: string option; max_results: int option; table_arn: string option } type contributor_insights_summary = { contributor_insights_status: contributor_insights_status option; index_name: string option; table_name: string option } type list_contributor_insights_output = { next_token: string option; contributor_insights_summaries: contributor_insights_summary list option } type list_contributor_insights_input = { max_results: int option; next_token: string option; table_name: string option } type backup_status = | AVAILABLE | DELETED | CREATING type backup_type = | AWS_BACKUP | SYSTEM | USER type backup_summary = { backup_size_bytes: int option; backup_type: backup_type option; backup_status: backup_status option; backup_expiry_date_time: float option; backup_creation_date_time: float option; backup_name: string option; backup_arn: string option; table_arn: string option; table_id: string option; table_name: string option } type list_backups_output = { last_evaluated_backup_arn: string option; backup_summaries: backup_summary list option } type backup_type_filter = | ALL | AWS_BACKUP | SYSTEM | USER type list_backups_input = { backup_type: backup_type_filter option; exclusive_start_backup_arn: string option; time_range_upper_bound: float option; time_range_lower_bound: float option; limit: int option; table_name: string option } type enable_kinesis_streaming_configuration = { approximate_creation_date_time_precision: approximate_creation_date_time_precision option } type kinesis_streaming_destination_output = { enable_kinesis_streaming_configuration: enable_kinesis_streaming_configuration option; destination_status: destination_status option; stream_arn: string option; table_name: string option } type kinesis_streaming_destination_input = { enable_kinesis_streaming_configuration: enable_kinesis_streaming_configuration option; stream_arn: string; table_name: string } type kinesis_data_stream_destination = { approximate_creation_date_time_precision: approximate_creation_date_time_precision option; destination_status_description: string option; destination_status: destination_status option; stream_arn: string option } type keys_and_attributes = { expression_attribute_names: (string * string) list option; projection_expression: string option; consistent_read: bool option; attributes_to_get: string list option; keys: (string * attribute_value) list list } type invalid_export_time_exception = { message: string option } type csv_options = { header_list: string list option; delimiter: string option } type input_format_options = { csv: csv_options option } type input_compression_type = | NONE | ZSTD | GZIP type export_view_type = | NEW_AND_OLD_IMAGES | NEW_IMAGE type incremental_export_specification = { export_view_type: export_view_type option; export_to_time: float option; export_from_time: float option } type import_table_description = { failure_message: string option; failure_code: string option; imported_item_count: int option; processed_item_count: int option; processed_size_bytes: int option; end_time: float option; start_time: float option; table_creation_parameters: table_creation_parameters option; input_compression_type: input_compression_type option; input_format_options: input_format_options option; input_format: input_format option; cloud_watch_log_group_arn: string option; error_count: int option; s3_bucket_source: s3_bucket_source option; client_token: string option; table_id: string option; table_arn: string option; import_status: import_status option; import_arn: string option } type import_table_output = { import_table_description: import_table_description } type import_table_input = { table_creation_parameters: table_creation_parameters; input_compression_type: input_compression_type option; input_format_options: input_format_options option; input_format: input_format; s3_bucket_source: s3_bucket_source; client_token: string option } type import_conflict_exception = { message: string option } type import_not_found_exception = { message: string option } type global_table_already_exists_exception = { message: string option } type get_resource_policy_output = { revision_id: string option; policy: string option } type get_resource_policy_input = { resource_arn: string } type get_item_output = { consumed_capacity: consumed_capacity option; item: (string * attribute_value) list option } type get_item_input = { expression_attribute_names: (string * string) list option; projection_expression: string option; return_consumed_capacity: return_consumed_capacity option; consistent_read: bool option; attributes_to_get: string list option; key: (string * attribute_value) list; table_name: string } type failure_exception = { exception_description: string option; exception_name: string option } type export_format = | ION | DYNAMODB_JSON type export_description = { incremental_export_specification: incremental_export_specification option; export_type: export_type option; item_count: int option; billed_size_bytes: int option; export_format: export_format option; failure_message: string option; failure_code: string option; s3_sse_kms_key_id: string option; s3_sse_algorithm: s3_sse_algorithm option; s3_prefix: string option; s3_bucket_owner: string option; s3_bucket: string option; client_token: string option; export_time: float option; table_id: string option; table_arn: string option; export_manifest: string option; end_time: float option; start_time: float option; export_status: export_status option; export_arn: string option } type export_table_to_point_in_time_output = { export_description: export_description option } type export_table_to_point_in_time_input = { incremental_export_specification: incremental_export_specification option; export_type: export_type option; export_format: export_format option; s3_sse_kms_key_id: string option; s3_sse_algorithm: s3_sse_algorithm option; s3_prefix: string option; s3_bucket_owner: string option; s3_bucket: string; client_token: string option; export_time: float option; table_arn: string } type export_conflict_exception = { message: string option } type export_not_found_exception = { message: string option } type execute_transaction_output = { consumed_capacity: consumed_capacity list option; responses: item_response list option } type execute_transaction_input = { return_consumed_capacity: return_consumed_capacity option; client_request_token: string option; transact_statements: parameterized_statement list } type execute_statement_output = { last_evaluated_key: (string * attribute_value) list option; consumed_capacity: consumed_capacity option; next_token: string option; items: (string * attribute_value) list list option } type execute_statement_input = { return_values_on_condition_check_failure: return_values_on_condition_check_failure option; limit: int option; return_consumed_capacity: return_consumed_capacity option; next_token: string option; consistent_read: bool option; parameters: attribute_value list option; statement: string } type duplicate_item_exception = { message: string option } type endpoint = { cache_period_in_minutes: int; address: string } type describe_time_to_live_output = { time_to_live_description: time_to_live_description option } type describe_time_to_live_input = { table_name: string } type describe_table_replica_auto_scaling_output = { table_auto_scaling_description: table_auto_scaling_description option } type describe_table_replica_auto_scaling_input = { table_name: string } type describe_table_output = { table: table_description option } type describe_table_input = { table_name: string } type describe_limits_output = { table_max_write_capacity_units: int option; table_max_read_capacity_units: int option; account_max_write_capacity_units: int option; account_max_read_capacity_units: int option } type describe_limits_input = unit type describe_kinesis_streaming_destination_output = { kinesis_data_stream_destinations: kinesis_data_stream_destination list option; table_name: string option } type describe_kinesis_streaming_destination_input = { table_name: string } type describe_import_output = { import_table_description: import_table_description } type describe_import_input = { import_arn: string } type describe_global_table_settings_output = { replica_settings: replica_settings_description list option; global_table_name: string option } type describe_global_table_settings_input = { global_table_name: string } type describe_global_table_output = { global_table_description: global_table_description option } type describe_global_table_input = { global_table_name: string } type describe_export_output = { export_description: export_description option } type describe_export_input = { export_arn: string } type describe_endpoints_response = { endpoints: endpoint list } type describe_endpoints_request = unit type describe_contributor_insights_output = { failure_exception: failure_exception option; last_update_date_time: float option; contributor_insights_status: contributor_insights_status option; contributor_insights_rule_list: string list option; index_name: string option; table_name: string option } type describe_contributor_insights_input = { index_name: string option; table_name: string } type describe_continuous_backups_output = { continuous_backups_description: continuous_backups_description option } type describe_continuous_backups_input = { table_name: string } type backup_details = { backup_expiry_date_time: float option; backup_creation_date_time: float; backup_type: backup_type; backup_status: backup_status; backup_size_bytes: int option; backup_name: string; backup_arn: string } type backup_description = { source_table_feature_details: source_table_feature_details option; source_table_details: source_table_details option; backup_details: backup_details option } type describe_backup_output = { backup_description: backup_description option } type describe_backup_input = { backup_arn: string } type delete_table_output = { table_description: table_description option } type delete_table_input = { table_name: string } type delete_resource_policy_output = { revision_id: string option } type delete_resource_policy_input = { expected_revision_id: string option; resource_arn: string } type delete_item_output = { item_collection_metrics: item_collection_metrics option; consumed_capacity: consumed_capacity option; attributes: (string * attribute_value) list option } type delete_item_input = { return_values_on_condition_check_failure: return_values_on_condition_check_failure option; expression_attribute_values: (string * attribute_value) list option; expression_attribute_names: (string * string) list option; condition_expression: string option; return_item_collection_metrics: return_item_collection_metrics option; return_consumed_capacity: return_consumed_capacity option; return_values: return_value option; conditional_operator: conditional_operator option; expected: (string * expected_attribute_value) list option; key: (string * attribute_value) list; table_name: string } type delete_backup_output = { backup_description: backup_description option } type delete_backup_input = { backup_arn: string } type create_table_output = { table_description: table_description option } type create_table_input = { on_demand_throughput: on_demand_throughput option; resource_policy: string option; deletion_protection_enabled: bool option; table_class: table_class option; tags: tag list option; sse_specification: sse_specification option; stream_specification: stream_specification option; provisioned_throughput: provisioned_throughput option; billing_mode: billing_mode option; global_secondary_indexes: global_secondary_index list option; local_secondary_indexes: local_secondary_index list option; key_schema: key_schema_element list; table_name: string; attribute_definitions: attribute_definition list } type create_global_table_output = { global_table_description: global_table_description option } type create_global_table_input = { replication_group: replica list; global_table_name: string } type create_backup_output = { backup_details: backup_details option } type create_backup_input = { backup_name: string; table_name: string } type batch_write_item_output = { consumed_capacity: consumed_capacity list option; item_collection_metrics: (string * item_collection_metrics list) list option; unprocessed_items: (string * write_request list) list option } type batch_write_item_input = { return_item_collection_metrics: return_item_collection_metrics option; return_consumed_capacity: return_consumed_capacity option; request_items: (string * write_request list) list } type batch_get_item_output = { consumed_capacity: consumed_capacity list option; unprocessed_keys: (string * keys_and_attributes) list option; responses: (string * (string * attribute_value) list list) list option } type batch_get_item_input = { return_consumed_capacity: return_consumed_capacity option; request_items: (string * keys_and_attributes) list } type batch_execute_statement_output = { consumed_capacity: consumed_capacity list option; responses: batch_statement_response list option } type batch_execute_statement_input = { return_consumed_capacity: return_consumed_capacity option; statements: batch_statement_request list } type base_document = Json.t
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>