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 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780
//! Auto generated by codegen/src/s3_trait.rs
use crate::dto::*;
use crate::error::S3Result;
/// An async trait which represents the S3 API
#[async_trait::async_trait]
pub trait S3: Send + Sync + 'static {
/// <p>This action aborts a multipart upload. After a multipart upload is aborted, no
/// additional parts can be uploaded using that upload ID. The storage consumed by any
/// previously uploaded parts will be freed. However, if any part uploads are currently in
/// progress, those part uploads might or might not succeed. As a result, it might be necessary
/// to abort a given multipart upload multiple times in order to completely free all storage
/// consumed by all parts. </p>
/// <p>To verify that all parts have been removed, so you don't get charged for the part
/// storage, you should call the <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListParts.html">ListParts</a> action and ensure that
/// the parts list is empty.</p>
/// <p>For information about permissions required to use the multipart upload, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/mpuAndPermissions.html">Multipart Upload and
/// Permissions</a>.</p>
/// <p>The following operations are related to <code>AbortMultipartUpload</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateMultipartUpload.html">CreateMultipartUpload</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_UploadPart.html">UploadPart</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_CompleteMultipartUpload.html">CompleteMultipartUpload</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListParts.html">ListParts</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListMultipartUploads.html">ListMultipartUploads</a>
/// </p>
/// </li>
/// </ul>
async fn abort_multipart_upload(&self, _input: AbortMultipartUploadInput) -> S3Result<AbortMultipartUploadOutput> {
Err(s3_error!(NotImplemented, "AbortMultipartUpload is not implemented yet"))
}
/// <p>Completes a multipart upload by assembling previously uploaded parts.</p>
/// <p>You first initiate the multipart upload and then upload all parts using the <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_UploadPart.html">UploadPart</a>
/// operation. After successfully uploading all relevant parts of an upload, you call this
/// action to complete the upload. Upon receiving this request, Amazon S3 concatenates all
/// the parts in ascending order by part number to create a new object. In the Complete
/// Multipart Upload request, you must provide the parts list. You must ensure that the parts
/// list is complete. This action concatenates the parts that you provide in the list. For
/// each part in the list, you must provide the part number and the <code>ETag</code> value,
/// returned after that part was uploaded.</p>
/// <p>Processing of a Complete Multipart Upload request could take several minutes to
/// complete. After Amazon S3 begins processing the request, it sends an HTTP response header that
/// specifies a 200 OK response. While processing is in progress, Amazon S3 periodically sends white
/// space characters to keep the connection from timing out. Because a request could fail after
/// the initial 200 OK response has been sent, it is important that you check the response body
/// to determine whether the request succeeded.</p>
/// <p>Note that if <code>CompleteMultipartUpload</code> fails, applications should be prepared
/// to retry the failed requests. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/ErrorBestPractices.html">Amazon S3 Error Best Practices</a>.</p>
/// <important>
/// <p>You cannot use <code>Content-Type: application/x-www-form-urlencoded</code> with Complete
/// Multipart Upload requests. Also, if you do not provide a <code>Content-Type</code> header, <code>CompleteMultipartUpload</code> returns a 200 OK response.</p>
/// </important>
/// <p>For more information about multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/uploadobjusingmpu.html">Uploading Objects Using Multipart
/// Upload</a>.</p>
/// <p>For information about permissions required to use the multipart upload API, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/mpuAndPermissions.html">Multipart Upload and
/// Permissions</a>.</p>
///
///
/// <p>
/// <code>CompleteMultipartUpload</code> has the following special errors:</p>
/// <ul>
/// <li>
/// <p>Error code: <code>EntityTooSmall</code>
/// </p>
/// <ul>
/// <li>
/// <p>Description: Your proposed upload is smaller than the minimum allowed object
/// size. Each part must be at least 5 MB in size, except the last part.</p>
/// </li>
/// <li>
/// <p>400 Bad Request</p>
/// </li>
/// </ul>
/// </li>
/// <li>
/// <p>Error code: <code>InvalidPart</code>
/// </p>
/// <ul>
/// <li>
/// <p>Description: One or more of the specified parts could not be found. The part
/// might not have been uploaded, or the specified entity tag might not have
/// matched the part's entity tag.</p>
/// </li>
/// <li>
/// <p>400 Bad Request</p>
/// </li>
/// </ul>
/// </li>
/// <li>
/// <p>Error code: <code>InvalidPartOrder</code>
/// </p>
/// <ul>
/// <li>
/// <p>Description: The list of parts was not in ascending order. The parts list
/// must be specified in order by part number.</p>
/// </li>
/// <li>
/// <p>400 Bad Request</p>
/// </li>
/// </ul>
/// </li>
/// <li>
/// <p>Error code: <code>NoSuchUpload</code>
/// </p>
/// <ul>
/// <li>
/// <p>Description: The specified multipart upload does not exist. The upload ID
/// might be invalid, or the multipart upload might have been aborted or
/// completed.</p>
/// </li>
/// <li>
/// <p>404 Not Found</p>
/// </li>
/// </ul>
/// </li>
/// </ul>
///
/// <p>The following operations are related to <code>CompleteMultipartUpload</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateMultipartUpload.html">CreateMultipartUpload</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_UploadPart.html">UploadPart</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_AbortMultipartUpload.html">AbortMultipartUpload</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListParts.html">ListParts</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListMultipartUploads.html">ListMultipartUploads</a>
/// </p>
/// </li>
/// </ul>
async fn complete_multipart_upload(&self, _input: CompleteMultipartUploadInput) -> S3Result<CompleteMultipartUploadOutput> {
Err(s3_error!(NotImplemented, "CompleteMultipartUpload is not implemented yet"))
}
/// <p>Creates a copy of an object that is already stored in Amazon S3.</p>
/// <note>
/// <p>You can store individual objects of up to 5 TB in Amazon S3. You create a copy of your
/// object up to 5 GB in size in a single atomic action using this API. However, to copy an
/// object greater than 5 GB, you must use the multipart upload Upload Part - Copy
/// (UploadPartCopy) API. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/CopyingObjctsUsingRESTMPUapi.html">Copy Object Using the
/// REST Multipart Upload API</a>.</p>
/// </note>
/// <p>All copy requests must be authenticated. Additionally, you must have
/// <i>read</i> access to the source object and <i>write</i>
/// access to the destination bucket. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/RESTAuthentication.html">REST Authentication</a>. Both the Region
/// that you want to copy the object from and the Region that you want to copy the object to
/// must be enabled for your account.</p>
/// <p>A copy request might return an error when Amazon S3 receives the copy request or while Amazon S3
/// is copying the files. If the error occurs before the copy action starts, you receive a
/// standard Amazon S3 error. If the error occurs during the copy operation, the error response is
/// embedded in the <code>200 OK</code> response. This means that a <code>200 OK</code>
/// response can contain either a success or an error. Design your application to parse the
/// contents of the response and handle it appropriately.</p>
/// <p>If the copy is successful, you receive a response with information about the copied
/// object.</p>
/// <note>
/// <p>If the request is an HTTP 1.1 request, the response is chunk encoded. If it were not,
/// it would not contain the content-length, and you would need to read the entire
/// body.</p>
/// </note>
/// <p>The copy request charge is based on the storage class and Region that you specify for
/// the destination object. For pricing information, see <a href="http://aws.amazon.com/s3/pricing/">Amazon S3 pricing</a>.</p>
/// <important>
/// <p>Amazon S3 transfer acceleration does not support cross-Region copies. If you request a
/// cross-Region copy using a transfer acceleration endpoint, you get a 400 <code>Bad
/// Request</code> error. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/transfer-acceleration.html">Transfer Acceleration</a>.</p>
/// </important>
/// <p>
/// <b>Metadata</b>
/// </p>
/// <p>When copying an object, you can preserve all metadata (default) or specify new metadata.
/// However, the ACL is not preserved and is set to private for the user making the request. To
/// override the default ACL setting, specify a new ACL when generating a copy request. For
/// more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/S3_ACLs_UsingACLs.html">Using ACLs</a>. </p>
/// <p>To specify whether you want the object metadata copied from the source object or
/// replaced with metadata provided in the request, you can optionally add the
/// <code>x-amz-metadata-directive</code> header. When you grant permissions, you can use
/// the <code>s3:x-amz-metadata-directive</code> condition key to enforce certain metadata
/// behavior when objects are uploaded. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/amazon-s3-policy-keys.html">Specifying Conditions in a
/// Policy</a> in the <i>Amazon S3 User Guide</i>. For a complete list of
/// Amazon S3-specific condition keys, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/list_amazons3.html">Actions, Resources, and Condition Keys for
/// Amazon S3</a>.</p>
/// <p>
/// <b>x-amz-copy-source-if Headers</b>
/// </p>
/// <p>To only copy an object under certain conditions, such as whether the <code>Etag</code>
/// matches or whether the object was modified before or after a specified date, use the
/// following request parameters:</p>
/// <ul>
/// <li>
/// <p>
/// <code>x-amz-copy-source-if-match</code>
/// </p>
/// </li>
/// <li>
/// <p>
/// <code>x-amz-copy-source-if-none-match</code>
/// </p>
/// </li>
/// <li>
/// <p>
/// <code>x-amz-copy-source-if-unmodified-since</code>
/// </p>
/// </li>
/// <li>
/// <p>
/// <code>x-amz-copy-source-if-modified-since</code>
/// </p>
/// </li>
/// </ul>
/// <p> If both the <code>x-amz-copy-source-if-match</code> and
/// <code>x-amz-copy-source-if-unmodified-since</code> headers are present in the request
/// and evaluate as follows, Amazon S3 returns <code>200 OK</code> and copies the data:</p>
/// <ul>
/// <li>
/// <p>
/// <code>x-amz-copy-source-if-match</code> condition evaluates to true</p>
/// </li>
/// <li>
/// <p>
/// <code>x-amz-copy-source-if-unmodified-since</code> condition evaluates to
/// false</p>
/// </li>
/// </ul>
///
/// <p>If both the <code>x-amz-copy-source-if-none-match</code> and
/// <code>x-amz-copy-source-if-modified-since</code> headers are present in the request and
/// evaluate as follows, Amazon S3 returns the <code>412 Precondition Failed</code> response
/// code:</p>
/// <ul>
/// <li>
/// <p>
/// <code>x-amz-copy-source-if-none-match</code> condition evaluates to false</p>
/// </li>
/// <li>
/// <p>
/// <code>x-amz-copy-source-if-modified-since</code> condition evaluates to
/// true</p>
/// </li>
/// </ul>
///
/// <note>
/// <p>All headers with the <code>x-amz-</code> prefix, including
/// <code>x-amz-copy-source</code>, must be signed.</p>
/// </note>
/// <p>
/// <b>Server-side encryption</b>
/// </p>
/// <p>When you perform a CopyObject operation, you can optionally use the appropriate encryption-related
/// headers to encrypt the object using server-side encryption with Amazon Web Services managed encryption keys
/// (SSE-S3 or SSE-KMS) or a customer-provided encryption key. With server-side encryption, Amazon S3
/// encrypts your data as it writes it to disks in its data centers and decrypts the data when
/// you access it. For more information about server-side encryption, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/serv-side-encryption.html">Using
/// Server-Side Encryption</a>.</p>
/// <p>If a target object uses SSE-KMS, you can enable an S3 Bucket Key for the object. For more
/// information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/bucket-key.html">Amazon S3 Bucket Keys</a> in the <i>Amazon S3 User Guide</i>.</p>
/// <p>
/// <b>Access Control List (ACL)-Specific Request
/// Headers</b>
/// </p>
/// <p>When copying an object, you can optionally use headers to grant ACL-based permissions.
/// By default, all objects are private. Only the owner has full access control. When adding a
/// new object, you can grant permissions to individual Amazon Web Services accounts or to predefined groups
/// defined by Amazon S3. These permissions are then added to the ACL on the object. For more
/// information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html">Access Control List (ACL) Overview</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-using-rest-api.html">Managing ACLs Using the REST
/// API</a>. </p>
/// <p>If the bucket that you're copying objects to uses the bucket owner enforced setting for
/// S3 Object Ownership, ACLs are disabled and no longer affect permissions. Buckets that
/// use this setting only accept PUT requests that don't specify an ACL or PUT requests that
/// specify bucket owner full control ACLs, such as the <code>bucket-owner-full-control</code> canned
/// ACL or an equivalent form of this ACL expressed in the XML format.</p>
/// <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/about-object-ownership.html"> Controlling ownership of
/// objects and disabling ACLs</a> in the <i>Amazon S3 User Guide</i>.</p>
/// <note>
/// <p>If your bucket uses the bucket owner enforced setting for Object Ownership,
/// all objects written to the bucket by any account will be owned by the bucket owner.</p>
/// </note>
/// <p>
/// <b>Checksums</b>
/// </p>
/// <p>When copying an object, if it has a checksum, that checksum will be copied to the new object
/// by default. When you copy the object over, you may optionally specify a different checksum
/// algorithm to use with the <code>x-amz-checksum-algorithm</code> header.</p>
/// <p>
/// <b>Storage Class Options</b>
/// </p>
/// <p>You can use the <code>CopyObject</code> action to change the storage class of an
/// object that is already stored in Amazon S3 using the <code>StorageClass</code> parameter. For
/// more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-class-intro.html">Storage
/// Classes</a> in the <i>Amazon S3 User Guide</i>.</p>
/// <p>
/// <b>Versioning</b>
/// </p>
/// <p>By default, <code>x-amz-copy-source</code> identifies the current version of an object
/// to copy. If the current version is a delete marker, Amazon S3 behaves as if the object was
/// deleted. To copy a different version, use the <code>versionId</code> subresource.</p>
/// <p>If you enable versioning on the target bucket, Amazon S3 generates a unique version ID for
/// the object being copied. This version ID is different from the version ID of the source
/// object. Amazon S3 returns the version ID of the copied object in the
/// <code>x-amz-version-id</code> response header in the response.</p>
/// <p>If you do not enable versioning or suspend it on the target bucket, the version ID that
/// Amazon S3 generates is always null.</p>
/// <p>If the source object's storage class is GLACIER, you must restore a copy of this object
/// before you can use it as a source object for the copy operation. For more information, see
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_RestoreObject.html">RestoreObject</a>.</p>
/// <p>The following operations are related to <code>CopyObject</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObject.html">PutObject</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html">GetObject</a>
/// </p>
/// </li>
/// </ul>
/// <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/CopyingObjectsExamples.html">Copying
/// Objects</a>.</p>
async fn copy_object(&self, _input: CopyObjectInput) -> S3Result<CopyObjectOutput> {
Err(s3_error!(NotImplemented, "CopyObject is not implemented yet"))
}
/// <p>Creates a new S3 bucket. To create a bucket, you must register with Amazon S3 and have a
/// valid Amazon Web Services Access Key ID to authenticate requests. Anonymous requests are never allowed to
/// create buckets. By creating the bucket, you become the bucket owner.</p>
/// <p>Not every string is an acceptable bucket name. For information about bucket naming
/// restrictions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/bucketnamingrules.html">Bucket naming rules</a>.</p>
/// <p>If you want to create an Amazon S3 on Outposts bucket, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_CreateBucket.html">Create Bucket</a>. </p>
/// <p>By default, the bucket is created in the US East (N. Virginia) Region. You can
/// optionally specify a Region in the request body. You might choose a Region to optimize
/// latency, minimize costs, or address regulatory requirements. For example, if you reside in
/// Europe, you will probably find it advantageous to create buckets in the Europe (Ireland)
/// Region. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingBucket.html#access-bucket-intro">Accessing a
/// bucket</a>.</p>
/// <note>
/// <p>If you send your create bucket request to the <code>s3.amazonaws.com</code> endpoint,
/// the request goes to the us-east-1 Region. Accordingly, the signature calculations in
/// Signature Version 4 must use us-east-1 as the Region, even if the location constraint in
/// the request specifies another Region where the bucket is to be created. If you create a
/// bucket in a Region other than US East (N. Virginia), your application must be able to
/// handle 307 redirect. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/VirtualHosting.html">Virtual hosting of buckets</a>.</p>
/// </note>
/// <p>
/// <b>Access control lists (ACLs)</b>
/// </p>
/// <p>When creating a bucket using this operation, you can optionally configure the bucket ACL to specify the accounts or
/// groups that should be granted specific permissions on the bucket.</p>
/// <important>
/// <p>If your CreateBucket request sets bucket owner enforced for S3 Object Ownership and
/// specifies a bucket ACL that provides access to an external Amazon Web Services account, your request
/// fails with a <code>400</code> error and returns the
/// <code>InvalidBucketAclWithObjectOwnership</code> error code. For more information,
/// see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/about-object-ownership.html">Controlling object
/// ownership</a> in the <i>Amazon S3 User Guide</i>.</p>
/// </important>
/// <p>There are two ways to grant the appropriate permissions using the request headers.</p>
/// <ul>
/// <li>
/// <p>Specify a canned ACL using the <code>x-amz-acl</code> request header. Amazon S3
/// supports a set of predefined ACLs, known as <i>canned ACLs</i>. Each
/// canned ACL has a predefined set of grantees and permissions. For more information,
/// see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html#CannedACL">Canned ACL</a>.</p>
/// </li>
/// <li>
/// <p>Specify access permissions explicitly using the <code>x-amz-grant-read</code>,
/// <code>x-amz-grant-write</code>, <code>x-amz-grant-read-acp</code>,
/// <code>x-amz-grant-write-acp</code>, and <code>x-amz-grant-full-control</code>
/// headers. These headers map to the set of permissions Amazon S3 supports in an ACL. For
/// more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/acl-overview.html">Access control list
/// (ACL) overview</a>.</p>
/// <p>You specify each grantee as a type=value pair, where the type is one of the
/// following:</p>
/// <ul>
/// <li>
/// <p>
/// <code>id</code> – if the value specified is the canonical user ID of an Amazon Web Services account</p>
/// </li>
/// <li>
/// <p>
/// <code>uri</code> – if you are granting permissions to a predefined
/// group</p>
/// </li>
/// <li>
/// <p>
/// <code>emailAddress</code> – if the value specified is the email address of
/// an Amazon Web Services account</p>
/// <note>
/// <p>Using email addresses to specify a grantee is only supported in the following Amazon Web Services Regions: </p>
/// <ul>
/// <li>
/// <p>US East (N. Virginia)</p>
/// </li>
/// <li>
/// <p>US West (N. California)</p>
/// </li>
/// <li>
/// <p> US West (Oregon)</p>
/// </li>
/// <li>
/// <p> Asia Pacific (Singapore)</p>
/// </li>
/// <li>
/// <p>Asia Pacific (Sydney)</p>
/// </li>
/// <li>
/// <p>Asia Pacific (Tokyo)</p>
/// </li>
/// <li>
/// <p>Europe (Ireland)</p>
/// </li>
/// <li>
/// <p>South America (São Paulo)</p>
/// </li>
/// </ul>
/// <p>For a list of all the Amazon S3 supported Regions and endpoints, see <a href="https://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region">Regions and Endpoints</a> in the Amazon Web Services General Reference.</p>
/// </note>
/// </li>
/// </ul>
/// <p>For example, the following <code>x-amz-grant-read</code> header grants the Amazon Web Services accounts identified by account IDs permissions to read object data and its metadata:</p>
/// <p>
/// <code>x-amz-grant-read: id="11112222333", id="444455556666" </code>
/// </p>
/// </li>
/// </ul>
/// <note>
/// <p>You can use either a canned ACL or specify access permissions explicitly. You cannot
/// do both.</p>
/// </note>
///
/// <p>
/// <b>Permissions</b>
/// </p>
/// <p>In addition to <code>s3:CreateBucket</code>, the following permissions are required when your CreateBucket includes specific headers:</p>
/// <ul>
/// <li>
/// <p>
/// <b>ACLs</b> - If your <code>CreateBucket</code> request specifies ACL permissions and the ACL is public-read, public-read-write,
/// authenticated-read, or if you specify access permissions explicitly through any other ACL, both
/// <code>s3:CreateBucket</code> and <code>s3:PutBucketAcl</code> permissions are needed. If the ACL the
/// <code>CreateBucket</code> request is private or doesn't specify any ACLs, only <code>s3:CreateBucket</code> permission is needed. </p>
/// </li>
/// <li>
/// <p>
/// <b>Object Lock</b> - If
/// <code>ObjectLockEnabledForBucket</code> is set to true in your
/// <code>CreateBucket</code> request,
/// <code>s3:PutBucketObjectLockConfiguration</code> and
/// <code>s3:PutBucketVersioning</code> permissions are required.</p>
/// </li>
/// <li>
/// <p>
/// <b>S3 Object Ownership</b> - If your CreateBucket
/// request includes the the <code>x-amz-object-ownership</code> header,
/// <code>s3:PutBucketOwnershipControls</code> permission is required.</p>
/// </li>
/// </ul>
/// <p>The following operations are related to <code>CreateBucket</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObject.html">PutObject</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucket.html">DeleteBucket</a>
/// </p>
/// </li>
/// </ul>
async fn create_bucket(&self, _input: CreateBucketInput) -> S3Result<CreateBucketOutput> {
Err(s3_error!(NotImplemented, "CreateBucket is not implemented yet"))
}
/// <p>This action initiates a multipart upload and returns an upload ID. This upload ID is
/// used to associate all of the parts in the specific multipart upload. You specify this
/// upload ID in each of your subsequent upload part requests (see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_UploadPart.html">UploadPart</a>). You also include this
/// upload ID in the final request to either complete or abort the multipart upload
/// request.</p>
///
/// <p>For more information about multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/mpuoverview.html">Multipart Upload Overview</a>.</p>
///
/// <p>If you have configured a lifecycle rule to abort incomplete multipart uploads, the
/// upload must complete within the number of days specified in the bucket lifecycle
/// configuration. Otherwise, the incomplete multipart upload becomes eligible for an abort
/// action and Amazon S3 aborts the multipart upload. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/mpuoverview.html#mpu-abort-incomplete-mpu-lifecycle-config">Aborting
/// Incomplete Multipart Uploads Using a Bucket Lifecycle Policy</a>.</p>
///
/// <p>For information about the permissions required to use the multipart upload API, see
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/mpuAndPermissions.html">Multipart Upload and
/// Permissions</a>.</p>
///
/// <p>For request signing, multipart upload is just a series of regular requests. You initiate
/// a multipart upload, send one or more requests to upload parts, and then complete the
/// multipart upload process. You sign each request individually. There is nothing special
/// about signing multipart upload requests. For more information about signing, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/sig-v4-authenticating-requests.html">Authenticating
/// Requests (Amazon Web Services Signature Version 4)</a>.</p>
///
/// <note>
/// <p> After you initiate a multipart upload and upload one or more parts, to stop being
/// charged for storing the uploaded parts, you must either complete or abort the multipart
/// upload. Amazon S3 frees up the space used to store the parts and stop charging you for
/// storing them only after you either complete or abort a multipart upload. </p>
/// </note>
///
/// <p>You can optionally request server-side encryption. For server-side encryption, Amazon S3
/// encrypts your data as it writes it to disks in its data centers and decrypts it when you
/// access it. You can provide your own encryption key, or use Amazon Web Services KMS keys or Amazon S3-managed encryption keys. If you choose to provide
/// your own encryption key, the request headers you provide in <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_UploadPart.html">UploadPart</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_UploadPartCopy.html">UploadPartCopy</a> requests must match the headers you used in the request to
/// initiate the upload by using <code>CreateMultipartUpload</code>. </p>
/// <p>To perform a multipart upload with encryption using an Amazon Web Services KMS key, the requester must
/// have permission to the <code>kms:Decrypt</code> and <code>kms:GenerateDataKey*</code>
/// actions on the key. These permissions are required because Amazon S3 must decrypt and read data
/// from the encrypted file parts before it completes the multipart upload. For more
/// information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/mpuoverview.html#mpuAndPermissions">Multipart upload API
/// and permissions</a> in the <i>Amazon S3 User Guide</i>.</p>
///
/// <p>If your Identity and Access Management (IAM) user or role is in the same Amazon Web Services account
/// as the KMS key, then you must have these permissions on the key policy. If your IAM
/// user or role belongs to a different account than the key, then you must have the
/// permissions on both the key policy and your IAM user or role.</p>
///
///
/// <p> For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/serv-side-encryption.html">Protecting
/// Data Using Server-Side Encryption</a>.</p>
///
/// <dl>
/// <dt>Access Permissions</dt>
/// <dd>
/// <p>When copying an object, you can optionally specify the accounts or groups that
/// should be granted specific permissions on the new object. There are two ways to
/// grant the permissions using the request headers:</p>
/// <ul>
/// <li>
/// <p>Specify a canned ACL with the <code>x-amz-acl</code> request header. For
/// more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html#CannedACL">Canned ACL</a>.</p>
/// </li>
/// <li>
/// <p>Specify access permissions explicitly with the
/// <code>x-amz-grant-read</code>, <code>x-amz-grant-read-acp</code>,
/// <code>x-amz-grant-write-acp</code>, and
/// <code>x-amz-grant-full-control</code> headers. These parameters map to
/// the set of permissions that Amazon S3 supports in an ACL. For more information,
/// see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html">Access Control List (ACL)
/// Overview</a>.</p>
/// </li>
/// </ul>
/// <p>You can use either a canned ACL or specify access permissions explicitly. You
/// cannot do both.</p>
/// </dd>
/// <dt>Server-Side- Encryption-Specific Request Headers</dt>
/// <dd>
/// <p>You can optionally tell Amazon S3 to encrypt data at rest using server-side
/// encryption. Server-side encryption is for data encryption at rest. Amazon S3 encrypts
/// your data as it writes it to disks in its data centers and decrypts it when you
/// access it. The option you use depends on whether you want to use Amazon Web Services managed
/// encryption keys or provide your own encryption key. </p>
/// <ul>
/// <li>
/// <p>Use encryption keys managed by Amazon S3 or customer managed key stored
/// in Amazon Web Services Key Management Service (Amazon Web Services KMS) – If you want Amazon Web Services to manage the keys
/// used to encrypt data, specify the following headers in the request.</p>
/// <ul>
/// <li>
/// <p>
/// <code>x-amz-server-side-encryption</code>
/// </p>
/// </li>
/// <li>
/// <p>
/// <code>x-amz-server-side-encryption-aws-kms-key-id</code>
/// </p>
/// </li>
/// <li>
/// <p>
/// <code>x-amz-server-side-encryption-context</code>
/// </p>
/// </li>
/// </ul>
/// <note>
/// <p>If you specify <code>x-amz-server-side-encryption:aws:kms</code>, but
/// don't provide <code>x-amz-server-side-encryption-aws-kms-key-id</code>,
/// Amazon S3 uses the Amazon Web Services managed key in Amazon Web Services KMS to protect the data.</p>
/// </note>
/// <important>
/// <p>All GET and PUT requests for an object protected by Amazon Web Services KMS fail if
/// you don't make them with SSL or by using SigV4.</p>
/// </important>
/// <p>For more information about server-side encryption with KMS key (SSE-KMS),
/// see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingKMSEncryption.html">Protecting Data Using Server-Side Encryption with KMS keys</a>.</p>
/// </li>
/// <li>
/// <p>Use customer-provided encryption keys – If you want to manage your own
/// encryption keys, provide all the following headers in the request.</p>
/// <ul>
/// <li>
/// <p>
/// <code>x-amz-server-side-encryption-customer-algorithm</code>
/// </p>
/// </li>
/// <li>
/// <p>
/// <code>x-amz-server-side-encryption-customer-key</code>
/// </p>
/// </li>
/// <li>
/// <p>
/// <code>x-amz-server-side-encryption-customer-key-MD5</code>
/// </p>
/// </li>
/// </ul>
/// <p>For more information about server-side encryption with KMS keys (SSE-KMS),
/// see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingKMSEncryption.html">Protecting Data Using Server-Side Encryption with KMS keys</a>.</p>
/// </li>
/// </ul>
/// </dd>
/// <dt>Access-Control-List (ACL)-Specific Request Headers</dt>
/// <dd>
/// <p>You also can use the following access control–related headers with this
/// operation. By default, all objects are private. Only the owner has full access
/// control. When adding a new object, you can grant permissions to individual Amazon Web Services accounts or to predefined groups defined by Amazon S3. These permissions are then added
/// to the access control list (ACL) on the object. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/S3_ACLs_UsingACLs.html">Using ACLs</a>. With this
/// operation, you can grant access permissions using one of the following two
/// methods:</p>
/// <ul>
/// <li>
/// <p>Specify a canned ACL (<code>x-amz-acl</code>) — Amazon S3 supports a set of
/// predefined ACLs, known as <i>canned ACLs</i>. Each canned ACL
/// has a predefined set of grantees and permissions. For more information, see
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html#CannedACL">Canned
/// ACL</a>.</p>
/// </li>
/// <li>
/// <p>Specify access permissions explicitly — To explicitly grant access
/// permissions to specific Amazon Web Services accounts or groups, use the following headers.
/// Each header maps to specific permissions that Amazon S3 supports in an ACL. For
/// more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html">Access
/// Control List (ACL) Overview</a>. In the header, you specify a list of
/// grantees who get the specific permission. To grant permissions explicitly,
/// use:</p>
/// <ul>
/// <li>
/// <p>
/// <code>x-amz-grant-read</code>
/// </p>
/// </li>
/// <li>
/// <p>
/// <code>x-amz-grant-write</code>
/// </p>
/// </li>
/// <li>
/// <p>
/// <code>x-amz-grant-read-acp</code>
/// </p>
/// </li>
/// <li>
/// <p>
/// <code>x-amz-grant-write-acp</code>
/// </p>
/// </li>
/// <li>
/// <p>
/// <code>x-amz-grant-full-control</code>
/// </p>
/// </li>
/// </ul>
/// <p>You specify each grantee as a type=value pair, where the type is one of
/// the following:</p>
/// <ul>
/// <li>
/// <p>
/// <code>id</code> – if the value specified is the canonical user ID
/// of an Amazon Web Services account</p>
/// </li>
/// <li>
/// <p>
/// <code>uri</code> – if you are granting permissions to a predefined
/// group</p>
/// </li>
/// <li>
/// <p>
/// <code>emailAddress</code> – if the value specified is the email
/// address of an Amazon Web Services account</p>
/// <note>
/// <p>Using email addresses to specify a grantee is only supported in the following Amazon Web Services Regions: </p>
/// <ul>
/// <li>
/// <p>US East (N. Virginia)</p>
/// </li>
/// <li>
/// <p>US West (N. California)</p>
/// </li>
/// <li>
/// <p> US West (Oregon)</p>
/// </li>
/// <li>
/// <p> Asia Pacific (Singapore)</p>
/// </li>
/// <li>
/// <p>Asia Pacific (Sydney)</p>
/// </li>
/// <li>
/// <p>Asia Pacific (Tokyo)</p>
/// </li>
/// <li>
/// <p>Europe (Ireland)</p>
/// </li>
/// <li>
/// <p>South America (São Paulo)</p>
/// </li>
/// </ul>
/// <p>For a list of all the Amazon S3 supported Regions and endpoints, see <a href="https://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region">Regions and Endpoints</a> in the Amazon Web Services General Reference.</p>
/// </note>
/// </li>
/// </ul>
/// <p>For example, the following <code>x-amz-grant-read</code> header grants the Amazon Web Services accounts identified by account IDs permissions to read object data and its metadata:</p>
/// <p>
/// <code>x-amz-grant-read: id="11112222333", id="444455556666" </code>
/// </p>
/// </li>
/// </ul>
///
/// </dd>
/// </dl>
///
/// <p>The following operations are related to <code>CreateMultipartUpload</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_UploadPart.html">UploadPart</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_CompleteMultipartUpload.html">CompleteMultipartUpload</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_AbortMultipartUpload.html">AbortMultipartUpload</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListParts.html">ListParts</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListMultipartUploads.html">ListMultipartUploads</a>
/// </p>
/// </li>
/// </ul>
async fn create_multipart_upload(&self, _input: CreateMultipartUploadInput) -> S3Result<CreateMultipartUploadOutput> {
Err(s3_error!(NotImplemented, "CreateMultipartUpload is not implemented yet"))
}
/// <p>Deletes the S3 bucket. All objects (including all object versions and delete markers) in
/// the bucket must be deleted before the bucket itself can be deleted.</p>
///
/// <p class="title">
/// <b>Related Resources</b>
/// </p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucket.html">CreateBucket</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteObject.html">DeleteObject</a>
/// </p>
/// </li>
/// </ul>
async fn delete_bucket(&self, _input: DeleteBucketInput) -> S3Result<DeleteBucketOutput> {
Err(s3_error!(NotImplemented, "DeleteBucket is not implemented yet"))
}
/// <p>Deletes an analytics configuration for the bucket (specified by the analytics
/// configuration ID).</p>
/// <p>To use this operation, you must have permissions to perform the
/// <code>s3:PutAnalyticsConfiguration</code> action. The bucket owner has this permission
/// by default. The bucket owner can grant this permission to others. For more information
/// about permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources">Permissions Related to Bucket Subresource Operations</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-access-control.html">Managing Access Permissions to Your Amazon S3
/// Resources</a>.</p>
///
/// <p>For information about the Amazon S3 analytics feature, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/analytics-storage-class.html">Amazon S3 Analytics – Storage Class
/// Analysis</a>. </p>
///
/// <p>The following operations are related to
/// <code>DeleteBucketAnalyticsConfiguration</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketAnalyticsConfiguration.html">GetBucketAnalyticsConfiguration</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListBucketAnalyticsConfigurations.html">ListBucketAnalyticsConfigurations</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketAnalyticsConfiguration.html">PutBucketAnalyticsConfiguration</a>
/// </p>
/// </li>
/// </ul>
async fn delete_bucket_analytics_configuration(
&self,
_input: DeleteBucketAnalyticsConfigurationInput,
) -> S3Result<DeleteBucketAnalyticsConfigurationOutput> {
Err(s3_error!(NotImplemented, "DeleteBucketAnalyticsConfiguration is not implemented yet"))
}
/// <p>Deletes the <code>cors</code> configuration information set for the bucket.</p>
/// <p>To use this operation, you must have permission to perform the
/// <code>s3:PutBucketCORS</code> action. The bucket owner has this permission by default
/// and can grant this permission to others. </p>
/// <p>For information about <code>cors</code>, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/cors.html">Enabling
/// Cross-Origin Resource Sharing</a> in the <i>Amazon S3 User Guide</i>.</p>
///
/// <p class="title">
/// <b>Related Resources:</b>
/// </p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketCors.html">PutBucketCors</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/RESTOPTIONSobject.html">RESTOPTIONSobject</a>
/// </p>
/// </li>
/// </ul>
async fn delete_bucket_cors(&self, _input: DeleteBucketCorsInput) -> S3Result<DeleteBucketCorsOutput> {
Err(s3_error!(NotImplemented, "DeleteBucketCors is not implemented yet"))
}
/// <p>This implementation of the DELETE action removes default encryption from the bucket.
/// For information about the Amazon S3 default encryption feature, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/bucket-encryption.html">Amazon S3 Default Bucket Encryption</a> in the
/// <i>Amazon S3 User Guide</i>.</p>
/// <p>To use this operation, you must have permissions to perform the
/// <code>s3:PutEncryptionConfiguration</code> action. The bucket owner has this permission
/// by default. The bucket owner can grant this permission to others. For more information
/// about permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources">Permissions Related to Bucket Subresource Operations</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-access-control.html">Managing Access Permissions to your Amazon S3
/// Resources</a> in the <i>Amazon S3 User Guide</i>.</p>
///
/// <p class="title">
/// <b>Related Resources</b>
/// </p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketEncryption.html">PutBucketEncryption</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketEncryption.html">GetBucketEncryption</a>
/// </p>
/// </li>
/// </ul>
async fn delete_bucket_encryption(&self, _input: DeleteBucketEncryptionInput) -> S3Result<DeleteBucketEncryptionOutput> {
Err(s3_error!(NotImplemented, "DeleteBucketEncryption is not implemented yet"))
}
/// <p>Deletes the S3 Intelligent-Tiering configuration from the specified bucket.</p>
/// <p>The S3 Intelligent-Tiering storage class is designed to optimize storage costs by automatically moving data to the most cost-effective storage access tier, without performance impact or operational overhead. S3 Intelligent-Tiering delivers automatic cost savings in three low latency and high throughput access tiers. To get the lowest storage cost on data that can be accessed in minutes to hours, you can choose to activate additional archiving capabilities.</p>
/// <p>The S3 Intelligent-Tiering storage class is the ideal storage class for data with unknown, changing, or unpredictable access patterns, independent of object size or retention period. If the size of an object is less than 128 KB, it is not monitored and not eligible for auto-tiering. Smaller objects can be stored, but they are always charged at the Frequent Access tier rates in the S3 Intelligent-Tiering storage class.</p>
/// <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-class-intro.html#sc-dynamic-data-access">Storage class for automatically optimizing frequently and infrequently accessed objects</a>.</p>
/// <p>Operations related to
/// <code>DeleteBucketIntelligentTieringConfiguration</code> include: </p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketIntelligentTieringConfiguration.html">GetBucketIntelligentTieringConfiguration</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketIntelligentTieringConfiguration.html">PutBucketIntelligentTieringConfiguration</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListBucketIntelligentTieringConfigurations.html">ListBucketIntelligentTieringConfigurations</a>
/// </p>
/// </li>
/// </ul>
async fn delete_bucket_intelligent_tiering_configuration(
&self,
_input: DeleteBucketIntelligentTieringConfigurationInput,
) -> S3Result<DeleteBucketIntelligentTieringConfigurationOutput> {
Err(s3_error!(
NotImplemented,
"DeleteBucketIntelligentTieringConfiguration is not implemented yet"
))
}
/// <p>Deletes an inventory configuration (identified by the inventory ID) from the
/// bucket.</p>
/// <p>To use this operation, you must have permissions to perform the
/// <code>s3:PutInventoryConfiguration</code> action. The bucket owner has this permission
/// by default. The bucket owner can grant this permission to others. For more information
/// about permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources">Permissions Related to Bucket Subresource Operations</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-access-control.html">Managing Access Permissions to Your Amazon S3
/// Resources</a>.</p>
/// <p>For information about the Amazon S3 inventory feature, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html">Amazon S3 Inventory</a>.</p>
/// <p>Operations related to <code>DeleteBucketInventoryConfiguration</code> include: </p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketInventoryConfiguration.html">GetBucketInventoryConfiguration</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketInventoryConfiguration.html">PutBucketInventoryConfiguration</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListBucketInventoryConfigurations.html">ListBucketInventoryConfigurations</a>
/// </p>
/// </li>
/// </ul>
async fn delete_bucket_inventory_configuration(
&self,
_input: DeleteBucketInventoryConfigurationInput,
) -> S3Result<DeleteBucketInventoryConfigurationOutput> {
Err(s3_error!(NotImplemented, "DeleteBucketInventoryConfiguration is not implemented yet"))
}
/// <p>Deletes the lifecycle configuration from the specified bucket. Amazon S3 removes all the
/// lifecycle configuration rules in the lifecycle subresource associated with the bucket. Your
/// objects never expire, and Amazon S3 no longer automatically deletes any objects on the basis of
/// rules contained in the deleted lifecycle configuration.</p>
/// <p>To use this operation, you must have permission to perform the
/// <code>s3:PutLifecycleConfiguration</code> action. By default, the bucket owner has this
/// permission and the bucket owner can grant this permission to others.</p>
///
/// <p>There is usually some time lag before lifecycle configuration deletion is fully
/// propagated to all the Amazon S3 systems.</p>
///
/// <p>For more information about the object expiration, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/intro-lifecycle-rules.html#intro-lifecycle-rules-actions">Elements to
/// Describe Lifecycle Actions</a>.</p>
/// <p>Related actions include:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketLifecycleConfiguration.html">PutBucketLifecycleConfiguration</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketLifecycleConfiguration.html">GetBucketLifecycleConfiguration</a>
/// </p>
/// </li>
/// </ul>
async fn delete_bucket_lifecycle(&self, _input: DeleteBucketLifecycleInput) -> S3Result<DeleteBucketLifecycleOutput> {
Err(s3_error!(NotImplemented, "DeleteBucketLifecycle is not implemented yet"))
}
/// <p>Deletes a metrics configuration for the Amazon CloudWatch request metrics (specified by the
/// metrics configuration ID) from the bucket. Note that this doesn't include the daily storage
/// metrics.</p>
///
/// <p> To use this operation, you must have permissions to perform the
/// <code>s3:PutMetricsConfiguration</code> action. The bucket owner has this permission by
/// default. The bucket owner can grant this permission to others. For more information about
/// permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources">Permissions Related to Bucket Subresource Operations</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-access-control.html">Managing Access Permissions to Your Amazon S3
/// Resources</a>.</p>
///
/// <p>For information about CloudWatch request metrics for Amazon S3, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/cloudwatch-monitoring.html">Monitoring Metrics with Amazon CloudWatch</a>. </p>
/// <p>The following operations are related to
/// <code>DeleteBucketMetricsConfiguration</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketMetricsConfiguration.html">GetBucketMetricsConfiguration</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketMetricsConfiguration.html">PutBucketMetricsConfiguration</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListBucketMetricsConfigurations.html">ListBucketMetricsConfigurations</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/cloudwatch-monitoring.html">Monitoring Metrics with Amazon
/// CloudWatch</a>
/// </p>
/// </li>
/// </ul>
async fn delete_bucket_metrics_configuration(
&self,
_input: DeleteBucketMetricsConfigurationInput,
) -> S3Result<DeleteBucketMetricsConfigurationOutput> {
Err(s3_error!(NotImplemented, "DeleteBucketMetricsConfiguration is not implemented yet"))
}
/// <p>Removes <code>OwnershipControls</code> for an Amazon S3 bucket. To use this operation, you
/// must have the <code>s3:PutBucketOwnershipControls</code> permission. For more information
/// about Amazon S3 permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/using-with-s3-actions.html">Specifying
/// Permissions in a Policy</a>.</p>
/// <p>For information about Amazon S3 Object Ownership, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/about-object-ownership.html">Using Object Ownership</a>. </p>
/// <p>The following operations are related to
/// <code>DeleteBucketOwnershipControls</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a>GetBucketOwnershipControls</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a>PutBucketOwnershipControls</a>
/// </p>
/// </li>
/// </ul>
async fn delete_bucket_ownership_controls(
&self,
_input: DeleteBucketOwnershipControlsInput,
) -> S3Result<DeleteBucketOwnershipControlsOutput> {
Err(s3_error!(NotImplemented, "DeleteBucketOwnershipControls is not implemented yet"))
}
/// <p>This implementation of the DELETE action uses the policy subresource to delete the
/// policy of a specified bucket. If you are using an identity other than the root user of the
/// Amazon Web Services account that owns the bucket, the calling identity must have the
/// <code>DeleteBucketPolicy</code> permissions on the specified bucket and belong to the
/// bucket owner's account to use this operation. </p>
///
/// <p>If you don't have <code>DeleteBucketPolicy</code> permissions, Amazon S3 returns a <code>403
/// Access Denied</code> error. If you have the correct permissions, but you're not using an
/// identity that belongs to the bucket owner's account, Amazon S3 returns a <code>405 Method Not
/// Allowed</code> error. </p>
///
/// <important>
/// <p>As a security precaution, the root user of the Amazon Web Services account that owns a bucket can
/// always use this operation, even if the policy explicitly denies the root user the
/// ability to perform this action.</p>
/// </important>
///
/// <p>For more information about bucket policies, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/using-iam-policies.html">Using Bucket Policies and
/// UserPolicies</a>. </p>
/// <p>The following operations are related to <code>DeleteBucketPolicy</code>
/// </p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucket.html">CreateBucket</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteObject.html">DeleteObject</a>
/// </p>
/// </li>
/// </ul>
async fn delete_bucket_policy(&self, _input: DeleteBucketPolicyInput) -> S3Result<DeleteBucketPolicyOutput> {
Err(s3_error!(NotImplemented, "DeleteBucketPolicy is not implemented yet"))
}
/// <p> Deletes the replication configuration from the bucket.</p>
/// <p>To use this operation, you must have permissions to perform the
/// <code>s3:PutReplicationConfiguration</code> action. The bucket owner has these
/// permissions by default and can grant it to others. For more information about permissions,
/// see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources">Permissions Related to Bucket Subresource Operations</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-access-control.html">Managing Access Permissions to Your Amazon S3
/// Resources</a>. </p>
/// <note>
/// <p>It can take a while for the deletion of a replication configuration to fully
/// propagate.</p>
/// </note>
///
/// <p> For information about replication configuration, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/replication.html">Replication</a> in the <i>Amazon S3 User Guide</i>.</p>
///
/// <p>The following operations are related to <code>DeleteBucketReplication</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketReplication.html">PutBucketReplication</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketReplication.html">GetBucketReplication</a>
/// </p>
/// </li>
/// </ul>
async fn delete_bucket_replication(&self, _input: DeleteBucketReplicationInput) -> S3Result<DeleteBucketReplicationOutput> {
Err(s3_error!(NotImplemented, "DeleteBucketReplication is not implemented yet"))
}
/// <p>Deletes the tags from the bucket.</p>
///
/// <p>To use this operation, you must have permission to perform the
/// <code>s3:PutBucketTagging</code> action. By default, the bucket owner has this
/// permission and can grant this permission to others. </p>
/// <p>The following operations are related to <code>DeleteBucketTagging</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketTagging.html">GetBucketTagging</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketTagging.html">PutBucketTagging</a>
/// </p>
/// </li>
/// </ul>
async fn delete_bucket_tagging(&self, _input: DeleteBucketTaggingInput) -> S3Result<DeleteBucketTaggingOutput> {
Err(s3_error!(NotImplemented, "DeleteBucketTagging is not implemented yet"))
}
/// <p>This action removes the website configuration for a bucket. Amazon S3 returns a 200
/// OK response upon successfully deleting a website configuration on the specified
/// bucket. You will get a <code>200 OK</code> response if the website configuration you are
/// trying to delete does not exist on the bucket. Amazon S3 returns a <code>404</code> response if
/// the bucket specified in the request does not exist.</p>
///
/// <p>This DELETE action requires the <code>S3:DeleteBucketWebsite</code> permission. By
/// default, only the bucket owner can delete the website configuration attached to a bucket.
/// However, bucket owners can grant other users permission to delete the website configuration
/// by writing a bucket policy granting them the <code>S3:DeleteBucketWebsite</code>
/// permission. </p>
///
/// <p>For more information about hosting websites, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/WebsiteHosting.html">Hosting Websites on Amazon S3</a>. </p>
///
/// <p>The following operations are related to <code>DeleteBucketWebsite</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketWebsite.html">GetBucketWebsite</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketWebsite.html">PutBucketWebsite</a>
/// </p>
/// </li>
/// </ul>
async fn delete_bucket_website(&self, _input: DeleteBucketWebsiteInput) -> S3Result<DeleteBucketWebsiteOutput> {
Err(s3_error!(NotImplemented, "DeleteBucketWebsite is not implemented yet"))
}
/// <p>Removes the null version (if there is one) of an object and inserts a delete marker,
/// which becomes the latest version of the object. If there isn't a null version, Amazon S3 does
/// not remove any objects but will still respond that the command was successful.</p>
///
/// <p>To remove a specific version, you must be the bucket owner and you must use the version
/// Id subresource. Using this subresource permanently deletes the version. If the object
/// deleted is a delete marker, Amazon S3 sets the response header,
/// <code>x-amz-delete-marker</code>, to true. </p>
///
/// <p>If the object you want to delete is in a bucket where the bucket versioning
/// configuration is MFA Delete enabled, you must include the <code>x-amz-mfa</code> request
/// header in the DELETE <code>versionId</code> request. Requests that include
/// <code>x-amz-mfa</code> must use HTTPS. </p>
///
/// <p> For more information about MFA Delete, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingMFADelete.html">Using MFA Delete</a>. To see sample requests that use versioning, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/RESTObjectDELETE.html#ExampleVersionObjectDelete">Sample Request</a>. </p>
///
/// <p>You can delete objects by explicitly calling DELETE Object or configure its
/// lifecycle (<a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketLifecycle.html">PutBucketLifecycle</a>) to
/// enable Amazon S3 to remove them for you. If you want to block users or accounts from removing or
/// deleting objects from your bucket, you must deny them the <code>s3:DeleteObject</code>,
/// <code>s3:DeleteObjectVersion</code>, and <code>s3:PutLifeCycleConfiguration</code>
/// actions. </p>
///
/// <p>The following action is related to <code>DeleteObject</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObject.html">PutObject</a>
/// </p>
/// </li>
/// </ul>
async fn delete_object(&self, _input: DeleteObjectInput) -> S3Result<DeleteObjectOutput> {
Err(s3_error!(NotImplemented, "DeleteObject is not implemented yet"))
}
/// <p>Removes the entire tag set from the specified object. For more information about
/// managing object tags, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/object-tagging.html"> Object
/// Tagging</a>.</p>
///
/// <p>To use this operation, you must have permission to perform the
/// <code>s3:DeleteObjectTagging</code> action.</p>
///
/// <p>To delete tags of a specific object version, add the <code>versionId</code> query
/// parameter in the request. You will need permission for the
/// <code>s3:DeleteObjectVersionTagging</code> action.</p>
///
/// <p>The following operations are related to
/// <code>DeleteBucketMetricsConfiguration</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObjectTagging.html">PutObjectTagging</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObjectTagging.html">GetObjectTagging</a>
/// </p>
/// </li>
/// </ul>
async fn delete_object_tagging(&self, _input: DeleteObjectTaggingInput) -> S3Result<DeleteObjectTaggingOutput> {
Err(s3_error!(NotImplemented, "DeleteObjectTagging is not implemented yet"))
}
/// <p>This action enables you to delete multiple objects from a bucket using a single HTTP
/// request. If you know the object keys that you want to delete, then this action provides
/// a suitable alternative to sending individual delete requests, reducing per-request
/// overhead.</p>
///
/// <p>The request contains a list of up to 1000 keys that you want to delete. In the XML, you
/// provide the object key names, and optionally, version IDs if you want to delete a specific
/// version of the object from a versioning-enabled bucket. For each key, Amazon S3 performs a
/// delete action and returns the result of that delete, success, or failure, in the
/// response. Note that if the object specified in the request is not found, Amazon S3 returns the
/// result as deleted.</p>
///
/// <p> The action supports two modes for the response: verbose and quiet. By default, the
/// action uses verbose mode in which the response includes the result of deletion of each
/// key in your request. In quiet mode the response includes only keys where the delete
/// action encountered an error. For a successful deletion, the action does not return
/// any information about the delete in the response body.</p>
///
/// <p>When performing this action on an MFA Delete enabled bucket, that attempts to delete
/// any versioned objects, you must include an MFA token. If you do not provide one, the entire
/// request will fail, even if there are non-versioned objects you are trying to delete. If you
/// provide an invalid token, whether there are versioned keys in the request or not, the
/// entire Multi-Object Delete request will fail. For information about MFA Delete, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/Versioning.html#MultiFactorAuthenticationDelete"> MFA
/// Delete</a>.</p>
///
/// <p>Finally, the Content-MD5 header is required for all Multi-Object Delete requests. Amazon
/// S3 uses the header value to ensure that your request body has not been altered in
/// transit.</p>
///
/// <p>The following operations are related to <code>DeleteObjects</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateMultipartUpload.html">CreateMultipartUpload</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_UploadPart.html">UploadPart</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_CompleteMultipartUpload.html">CompleteMultipartUpload</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListParts.html">ListParts</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_AbortMultipartUpload.html">AbortMultipartUpload</a>
/// </p>
/// </li>
/// </ul>
async fn delete_objects(&self, _input: DeleteObjectsInput) -> S3Result<DeleteObjectsOutput> {
Err(s3_error!(NotImplemented, "DeleteObjects is not implemented yet"))
}
/// <p>Removes the <code>PublicAccessBlock</code> configuration for an Amazon S3 bucket. To use this
/// operation, you must have the <code>s3:PutBucketPublicAccessBlock</code> permission. For
/// more information about permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources">Permissions Related to Bucket Subresource Operations</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-access-control.html">Managing Access Permissions to Your Amazon S3
/// Resources</a>.</p>
///
/// <p>The following operations are related to <code>DeletePublicAccessBlock</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html">Using Amazon S3 Block
/// Public Access</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetPublicAccessBlock.html">GetPublicAccessBlock</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutPublicAccessBlock.html">PutPublicAccessBlock</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketPolicyStatus.html">GetBucketPolicyStatus</a>
/// </p>
/// </li>
/// </ul>
async fn delete_public_access_block(&self, _input: DeletePublicAccessBlockInput) -> S3Result<DeletePublicAccessBlockOutput> {
Err(s3_error!(NotImplemented, "DeletePublicAccessBlock is not implemented yet"))
}
/// <p>This implementation of the GET action uses the <code>accelerate</code> subresource to
/// return the Transfer Acceleration state of a bucket, which is either <code>Enabled</code> or
/// <code>Suspended</code>. Amazon S3 Transfer Acceleration is a bucket-level feature that
/// enables you to perform faster data transfers to and from Amazon S3.</p>
/// <p>To use this operation, you must have permission to perform the
/// <code>s3:GetAccelerateConfiguration</code> action. The bucket owner has this permission
/// by default. The bucket owner can grant this permission to others. For more information
/// about permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources">Permissions Related to Bucket Subresource Operations</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-access-control.html">Managing Access Permissions to your Amazon S3
/// Resources</a> in the <i>Amazon S3 User Guide</i>.</p>
/// <p>You set the Transfer Acceleration state of an existing bucket to <code>Enabled</code> or
/// <code>Suspended</code> by using the <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketAccelerateConfiguration.html">PutBucketAccelerateConfiguration</a> operation. </p>
/// <p>A GET <code>accelerate</code> request does not return a state value for a bucket that
/// has no transfer acceleration state. A bucket has no Transfer Acceleration state if a state
/// has never been set on the bucket. </p>
///
/// <p>For more information about transfer acceleration, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/transfer-acceleration.html">Transfer Acceleration</a> in the
/// Amazon S3 User Guide.</p>
/// <p class="title">
/// <b>Related Resources</b>
/// </p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketAccelerateConfiguration.html">PutBucketAccelerateConfiguration</a>
/// </p>
/// </li>
/// </ul>
async fn get_bucket_accelerate_configuration(
&self,
_input: GetBucketAccelerateConfigurationInput,
) -> S3Result<GetBucketAccelerateConfigurationOutput> {
Err(s3_error!(NotImplemented, "GetBucketAccelerateConfiguration is not implemented yet"))
}
/// <p>This implementation of the <code>GET</code> action uses the <code>acl</code>
/// subresource to return the access control list (ACL) of a bucket. To use <code>GET</code> to
/// return the ACL of the bucket, you must have <code>READ_ACP</code> access to the bucket. If
/// <code>READ_ACP</code> permission is granted to the anonymous user, you can return the
/// ACL of the bucket without using an authorization header.</p>
/// <note>
/// <p>If your bucket uses the bucket owner enforced setting for S3 Object Ownership,
/// requests to read ACLs are still supported and return the <code>bucket-owner-full-control</code>
/// ACL with the owner being the account that created the bucket. For more information, see
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/about-object-ownership.html">
/// Controlling object ownership and disabling ACLs</a> in the <i>Amazon S3 User Guide</i>.</p>
/// </note>
///
/// <p class="title">
/// <b>Related Resources</b>
/// </p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListObjects.html">ListObjects</a>
/// </p>
/// </li>
/// </ul>
async fn get_bucket_acl(&self, _input: GetBucketAclInput) -> S3Result<GetBucketAclOutput> {
Err(s3_error!(NotImplemented, "GetBucketAcl is not implemented yet"))
}
/// <p>This implementation of the GET action returns an analytics configuration (identified
/// by the analytics configuration ID) from the bucket.</p>
/// <p>To use this operation, you must have permissions to perform the
/// <code>s3:GetAnalyticsConfiguration</code> action. The bucket owner has this permission
/// by default. The bucket owner can grant this permission to others. For more information
/// about permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources"> Permissions Related to Bucket Subresource Operations</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-access-control.html">Managing Access Permissions to Your Amazon S3
/// Resources</a> in the <i>Amazon S3 User Guide</i>. </p>
/// <p>For information about Amazon S3 analytics feature, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/analytics-storage-class.html">Amazon S3 Analytics – Storage Class
/// Analysis</a> in the <i>Amazon S3 User Guide</i>.</p>
///
/// <p class="title">
/// <b>Related Resources</b>
/// </p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketAnalyticsConfiguration.html">DeleteBucketAnalyticsConfiguration</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListBucketAnalyticsConfigurations.html">ListBucketAnalyticsConfigurations</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketAnalyticsConfiguration.html">PutBucketAnalyticsConfiguration</a>
/// </p>
/// </li>
/// </ul>
async fn get_bucket_analytics_configuration(
&self,
_input: GetBucketAnalyticsConfigurationInput,
) -> S3Result<GetBucketAnalyticsConfigurationOutput> {
Err(s3_error!(NotImplemented, "GetBucketAnalyticsConfiguration is not implemented yet"))
}
/// <p>Returns the Cross-Origin Resource Sharing (CORS) configuration information set for the
/// bucket.</p>
///
/// <p> To use this operation, you must have permission to perform the
/// <code>s3:GetBucketCORS</code> action. By default, the bucket owner has this permission
/// and can grant it to others.</p>
///
/// <p> For more information about CORS, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/cors.html"> Enabling Cross-Origin Resource
/// Sharing</a>.</p>
///
/// <p>The following operations are related to <code>GetBucketCors</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketCors.html">PutBucketCors</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketCors.html">DeleteBucketCors</a>
/// </p>
/// </li>
/// </ul>
async fn get_bucket_cors(&self, _input: GetBucketCorsInput) -> S3Result<GetBucketCorsOutput> {
Err(s3_error!(NotImplemented, "GetBucketCors is not implemented yet"))
}
/// <p>Returns the default encryption configuration for an Amazon S3 bucket. If the bucket does not
/// have a default encryption configuration, GetBucketEncryption returns
/// <code>ServerSideEncryptionConfigurationNotFoundError</code>. </p>
/// <p>For information about the Amazon S3 default encryption feature, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/bucket-encryption.html">Amazon S3 Default Bucket Encryption</a>.</p>
/// <p> To use this operation, you must have permission to perform the
/// <code>s3:GetEncryptionConfiguration</code> action. The bucket owner has this permission
/// by default. The bucket owner can grant this permission to others. For more information
/// about permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources">Permissions Related to Bucket Subresource Operations</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-access-control.html">Managing Access Permissions to Your Amazon S3
/// Resources</a>.</p>
/// <p>The following operations are related to <code>GetBucketEncryption</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketEncryption.html">PutBucketEncryption</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketEncryption.html">DeleteBucketEncryption</a>
/// </p>
/// </li>
/// </ul>
async fn get_bucket_encryption(&self, _input: GetBucketEncryptionInput) -> S3Result<GetBucketEncryptionOutput> {
Err(s3_error!(NotImplemented, "GetBucketEncryption is not implemented yet"))
}
/// <p>Gets the S3 Intelligent-Tiering configuration from the specified bucket.</p>
/// <p>The S3 Intelligent-Tiering storage class is designed to optimize storage costs by automatically moving data to the most cost-effective storage access tier, without performance impact or operational overhead. S3 Intelligent-Tiering delivers automatic cost savings in three low latency and high throughput access tiers. To get the lowest storage cost on data that can be accessed in minutes to hours, you can choose to activate additional archiving capabilities.</p>
/// <p>The S3 Intelligent-Tiering storage class is the ideal storage class for data with unknown, changing, or unpredictable access patterns, independent of object size or retention period. If the size of an object is less than 128 KB, it is not monitored and not eligible for auto-tiering. Smaller objects can be stored, but they are always charged at the Frequent Access tier rates in the S3 Intelligent-Tiering storage class.</p>
/// <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-class-intro.html#sc-dynamic-data-access">Storage class for automatically optimizing frequently and infrequently accessed objects</a>.</p>
/// <p>Operations related to
/// <code>GetBucketIntelligentTieringConfiguration</code> include: </p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketIntelligentTieringConfiguration.html">DeleteBucketIntelligentTieringConfiguration</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketIntelligentTieringConfiguration.html">PutBucketIntelligentTieringConfiguration</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListBucketIntelligentTieringConfigurations.html">ListBucketIntelligentTieringConfigurations</a>
/// </p>
/// </li>
/// </ul>
async fn get_bucket_intelligent_tiering_configuration(
&self,
_input: GetBucketIntelligentTieringConfigurationInput,
) -> S3Result<GetBucketIntelligentTieringConfigurationOutput> {
Err(s3_error!(
NotImplemented,
"GetBucketIntelligentTieringConfiguration is not implemented yet"
))
}
/// <p>Returns an inventory configuration (identified by the inventory configuration ID) from
/// the bucket.</p>
///
/// <p>To use this operation, you must have permissions to perform the
/// <code>s3:GetInventoryConfiguration</code> action. The bucket owner has this permission
/// by default and can grant this permission to others. For more information about permissions,
/// see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources">Permissions Related to Bucket Subresource Operations</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-access-control.html">Managing Access Permissions to Your Amazon S3
/// Resources</a>.</p>
///
/// <p>For information about the Amazon S3 inventory feature, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html">Amazon S3 Inventory</a>.</p>
///
/// <p>The following operations are related to
/// <code>GetBucketInventoryConfiguration</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketInventoryConfiguration.html">DeleteBucketInventoryConfiguration</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListBucketInventoryConfigurations.html">ListBucketInventoryConfigurations</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketInventoryConfiguration.html">PutBucketInventoryConfiguration</a>
/// </p>
/// </li>
/// </ul>
async fn get_bucket_inventory_configuration(
&self,
_input: GetBucketInventoryConfigurationInput,
) -> S3Result<GetBucketInventoryConfigurationOutput> {
Err(s3_error!(NotImplemented, "GetBucketInventoryConfiguration is not implemented yet"))
}
/// <note>
/// <p>Bucket lifecycle configuration now supports specifying a lifecycle rule using an
/// object key name prefix, one or more object tags, or a combination of both. Accordingly,
/// this section describes the latest API. The response describes the new filter element
/// that you can use to specify a filter to select a subset of objects to which the rule
/// applies. If you are using a previous version of the lifecycle configuration, it still
/// works. For the earlier action, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketLifecycle.html">GetBucketLifecycle</a>.</p>
/// </note>
/// <p>Returns the lifecycle configuration information set on the bucket. For information about
/// lifecycle configuration, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lifecycle-mgmt.html">Object
/// Lifecycle Management</a>.</p>
///
/// <p>To use this operation, you must have permission to perform the
/// <code>s3:GetLifecycleConfiguration</code> action. The bucket owner has this permission,
/// by default. The bucket owner can grant this permission to others. For more information
/// about permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources">Permissions Related to Bucket Subresource Operations</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-access-control.html">Managing Access Permissions to Your Amazon S3
/// Resources</a>.</p>
///
/// <p>
/// <code>GetBucketLifecycleConfiguration</code> has the following special error:</p>
/// <ul>
/// <li>
/// <p>Error code: <code>NoSuchLifecycleConfiguration</code>
/// </p>
/// <ul>
/// <li>
/// <p>Description: The lifecycle configuration does not exist.</p>
/// </li>
/// <li>
/// <p>HTTP Status Code: 404 Not Found</p>
/// </li>
/// <li>
/// <p>SOAP Fault Code Prefix: Client</p>
/// </li>
/// </ul>
/// </li>
/// </ul>
/// <p>The following operations are related to
/// <code>GetBucketLifecycleConfiguration</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketLifecycle.html">GetBucketLifecycle</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketLifecycle.html">PutBucketLifecycle</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketLifecycle.html">DeleteBucketLifecycle</a>
/// </p>
/// </li>
/// </ul>
async fn get_bucket_lifecycle_configuration(
&self,
_input: GetBucketLifecycleConfigurationInput,
) -> S3Result<GetBucketLifecycleConfigurationOutput> {
Err(s3_error!(NotImplemented, "GetBucketLifecycleConfiguration is not implemented yet"))
}
/// <p>Returns the Region the bucket resides in. You set the bucket's Region using the
/// <code>LocationConstraint</code> request parameter in a <code>CreateBucket</code>
/// request. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucket.html">CreateBucket</a>.</p>
///
/// <p>To use this implementation of the operation, you must be the bucket owner.</p>
///
/// <p>To use this API against an access point, provide the alias of the access point in place of the bucket name.</p>
///
/// <p>The following operations are related to <code>GetBucketLocation</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html">GetObject</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucket.html">CreateBucket</a>
/// </p>
/// </li>
/// </ul>
async fn get_bucket_location(&self, _input: GetBucketLocationInput) -> S3Result<GetBucketLocationOutput> {
Err(s3_error!(NotImplemented, "GetBucketLocation is not implemented yet"))
}
/// <p>Returns the logging status of a bucket and the permissions users have to view and modify
/// that status. To use GET, you must be the bucket owner.</p>
///
/// <p>The following operations are related to <code>GetBucketLogging</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucket.html">CreateBucket</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketLogging.html">PutBucketLogging</a>
/// </p>
/// </li>
/// </ul>
async fn get_bucket_logging(&self, _input: GetBucketLoggingInput) -> S3Result<GetBucketLoggingOutput> {
Err(s3_error!(NotImplemented, "GetBucketLogging is not implemented yet"))
}
/// <p>Gets a metrics configuration (specified by the metrics configuration ID) from the
/// bucket. Note that this doesn't include the daily storage metrics.</p>
///
/// <p> To use this operation, you must have permissions to perform the
/// <code>s3:GetMetricsConfiguration</code> action. The bucket owner has this permission by
/// default. The bucket owner can grant this permission to others. For more information about
/// permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources">Permissions Related to Bucket Subresource Operations</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-access-control.html">Managing Access Permissions to Your Amazon S3
/// Resources</a>.</p>
///
/// <p> For information about CloudWatch request metrics for Amazon S3, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/cloudwatch-monitoring.html">Monitoring Metrics with Amazon
/// CloudWatch</a>.</p>
///
/// <p>The following operations are related to
/// <code>GetBucketMetricsConfiguration</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketMetricsConfiguration.html">PutBucketMetricsConfiguration</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketMetricsConfiguration.html">DeleteBucketMetricsConfiguration</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListBucketMetricsConfigurations.html">ListBucketMetricsConfigurations</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/cloudwatch-monitoring.html">Monitoring Metrics with Amazon
/// CloudWatch</a>
/// </p>
/// </li>
/// </ul>
async fn get_bucket_metrics_configuration(
&self,
_input: GetBucketMetricsConfigurationInput,
) -> S3Result<GetBucketMetricsConfigurationOutput> {
Err(s3_error!(NotImplemented, "GetBucketMetricsConfiguration is not implemented yet"))
}
/// <p>Returns the notification configuration of a bucket.</p>
/// <p>If notifications are not enabled on the bucket, the action returns an empty
/// <code>NotificationConfiguration</code> element.</p>
///
/// <p>By default, you must be the bucket owner to read the notification configuration of a
/// bucket. However, the bucket owner can use a bucket policy to grant permission to other
/// users to read this configuration with the <code>s3:GetBucketNotification</code>
/// permission.</p>
///
/// <p>For more information about setting and reading the notification configuration on a
/// bucket, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/NotificationHowTo.html">Setting Up Notification of
/// Bucket Events</a>. For more information about bucket policies, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/using-iam-policies.html">Using Bucket Policies</a>.</p>
///
/// <p>The following action is related to <code>GetBucketNotification</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketNotification.html">PutBucketNotification</a>
/// </p>
/// </li>
/// </ul>
async fn get_bucket_notification_configuration(
&self,
_input: GetBucketNotificationConfigurationInput,
) -> S3Result<GetBucketNotificationConfigurationOutput> {
Err(s3_error!(NotImplemented, "GetBucketNotificationConfiguration is not implemented yet"))
}
/// <p>Retrieves <code>OwnershipControls</code> for an Amazon S3 bucket. To use this operation, you
/// must have the <code>s3:GetBucketOwnershipControls</code> permission. For more information
/// about Amazon S3 permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html">Specifying
/// permissions in a policy</a>. </p>
/// <p>For information about Amazon S3 Object Ownership, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/about-object-ownership.html">Using Object Ownership</a>. </p>
/// <p>The following operations are related to <code>GetBucketOwnershipControls</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a>PutBucketOwnershipControls</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a>DeleteBucketOwnershipControls</a>
/// </p>
/// </li>
/// </ul>
async fn get_bucket_ownership_controls(
&self,
_input: GetBucketOwnershipControlsInput,
) -> S3Result<GetBucketOwnershipControlsOutput> {
Err(s3_error!(NotImplemented, "GetBucketOwnershipControls is not implemented yet"))
}
/// <p>Returns the policy of a specified bucket. If you are using an identity other than the
/// root user of the Amazon Web Services account that owns the bucket, the calling identity must have the
/// <code>GetBucketPolicy</code> permissions on the specified bucket and belong to the
/// bucket owner's account in order to use this operation.</p>
///
/// <p>If you don't have <code>GetBucketPolicy</code> permissions, Amazon S3 returns a <code>403
/// Access Denied</code> error. If you have the correct permissions, but you're not using an
/// identity that belongs to the bucket owner's account, Amazon S3 returns a <code>405 Method Not
/// Allowed</code> error.</p>
///
/// <important>
/// <p>As a security precaution, the root user of the Amazon Web Services account that owns a bucket can
/// always use this operation, even if the policy explicitly denies the root user the
/// ability to perform this action.</p>
/// </important>
///
/// <p>For more information about bucket policies, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/using-iam-policies.html">Using Bucket Policies and User
/// Policies</a>.</p>
///
/// <p>The following action is related to <code>GetBucketPolicy</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html">GetObject</a>
/// </p>
/// </li>
/// </ul>
async fn get_bucket_policy(&self, _input: GetBucketPolicyInput) -> S3Result<GetBucketPolicyOutput> {
Err(s3_error!(NotImplemented, "GetBucketPolicy is not implemented yet"))
}
/// <p>Retrieves the policy status for an Amazon S3 bucket, indicating whether the bucket is public.
/// In order to use this operation, you must have the <code>s3:GetBucketPolicyStatus</code>
/// permission. For more information about Amazon S3 permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/using-with-s3-actions.html">Specifying Permissions in a
/// Policy</a>.</p>
///
/// <p> For more information about when Amazon S3 considers a bucket public, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html#access-control-block-public-access-policy-status">The Meaning of "Public"</a>. </p>
///
/// <p>The following operations are related to <code>GetBucketPolicyStatus</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html">Using Amazon S3 Block
/// Public Access</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetPublicAccessBlock.html">GetPublicAccessBlock</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutPublicAccessBlock.html">PutPublicAccessBlock</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeletePublicAccessBlock.html">DeletePublicAccessBlock</a>
/// </p>
/// </li>
/// </ul>
async fn get_bucket_policy_status(&self, _input: GetBucketPolicyStatusInput) -> S3Result<GetBucketPolicyStatusOutput> {
Err(s3_error!(NotImplemented, "GetBucketPolicyStatus is not implemented yet"))
}
/// <p>Returns the replication configuration of a bucket.</p>
/// <note>
/// <p> It can take a while to propagate the put or delete a replication configuration to
/// all Amazon S3 systems. Therefore, a get request soon after put or delete can return a wrong
/// result. </p>
/// </note>
/// <p> For information about replication configuration, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/replication.html">Replication</a> in the
/// <i>Amazon S3 User Guide</i>.</p>
///
/// <p>This action requires permissions for the <code>s3:GetReplicationConfiguration</code>
/// action. For more information about permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/using-iam-policies.html">Using Bucket Policies and User
/// Policies</a>.</p>
///
/// <p>If you include the <code>Filter</code> element in a replication configuration, you must
/// also include the <code>DeleteMarkerReplication</code> and <code>Priority</code> elements.
/// The response also returns those elements.</p>
///
/// <p>For information about <code>GetBucketReplication</code> errors, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html#ReplicationErrorCodeList">List of
/// replication-related error codes</a>
/// </p>
///
///
/// <p>The following operations are related to <code>GetBucketReplication</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketReplication.html">PutBucketReplication</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketReplication.html">DeleteBucketReplication</a>
/// </p>
/// </li>
/// </ul>
async fn get_bucket_replication(&self, _input: GetBucketReplicationInput) -> S3Result<GetBucketReplicationOutput> {
Err(s3_error!(NotImplemented, "GetBucketReplication is not implemented yet"))
}
/// <p>Returns the request payment configuration of a bucket. To use this version of the
/// operation, you must be the bucket owner. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/RequesterPaysBuckets.html">Requester Pays Buckets</a>.</p>
///
/// <p>The following operations are related to <code>GetBucketRequestPayment</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListObjects.html">ListObjects</a>
/// </p>
/// </li>
/// </ul>
async fn get_bucket_request_payment(&self, _input: GetBucketRequestPaymentInput) -> S3Result<GetBucketRequestPaymentOutput> {
Err(s3_error!(NotImplemented, "GetBucketRequestPayment is not implemented yet"))
}
/// <p>Returns the tag set associated with the bucket.</p>
/// <p>To use this operation, you must have permission to perform the
/// <code>s3:GetBucketTagging</code> action. By default, the bucket owner has this
/// permission and can grant this permission to others.</p>
///
/// <p>
/// <code>GetBucketTagging</code> has the following special error:</p>
/// <ul>
/// <li>
/// <p>Error code: <code>NoSuchTagSet</code>
/// </p>
/// <ul>
/// <li>
/// <p>Description: There is no tag set associated with the bucket.</p>
/// </li>
/// </ul>
/// </li>
/// </ul>
///
/// <p>The following operations are related to <code>GetBucketTagging</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketTagging.html">PutBucketTagging</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketTagging.html">DeleteBucketTagging</a>
/// </p>
/// </li>
/// </ul>
async fn get_bucket_tagging(&self, _input: GetBucketTaggingInput) -> S3Result<GetBucketTaggingOutput> {
Err(s3_error!(NotImplemented, "GetBucketTagging is not implemented yet"))
}
/// <p>Returns the versioning state of a bucket.</p>
/// <p>To retrieve the versioning state of a bucket, you must be the bucket owner.</p>
///
/// <p>This implementation also returns the MFA Delete status of the versioning state. If the
/// MFA Delete status is <code>enabled</code>, the bucket owner must use an authentication
/// device to change the versioning state of the bucket.</p>
///
/// <p>The following operations are related to <code>GetBucketVersioning</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html">GetObject</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObject.html">PutObject</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteObject.html">DeleteObject</a>
/// </p>
/// </li>
/// </ul>
async fn get_bucket_versioning(&self, _input: GetBucketVersioningInput) -> S3Result<GetBucketVersioningOutput> {
Err(s3_error!(NotImplemented, "GetBucketVersioning is not implemented yet"))
}
/// <p>Returns the website configuration for a bucket. To host website on Amazon S3, you can
/// configure a bucket as website by adding a website configuration. For more information about
/// hosting websites, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/WebsiteHosting.html">Hosting Websites on
/// Amazon S3</a>. </p>
/// <p>This GET action requires the <code>S3:GetBucketWebsite</code> permission. By default,
/// only the bucket owner can read the bucket website configuration. However, bucket owners can
/// allow other users to read the website configuration by writing a bucket policy granting
/// them the <code>S3:GetBucketWebsite</code> permission.</p>
/// <p>The following operations are related to <code>DeleteBucketWebsite</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketWebsite.html">DeleteBucketWebsite</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketWebsite.html">PutBucketWebsite</a>
/// </p>
/// </li>
/// </ul>
async fn get_bucket_website(&self, _input: GetBucketWebsiteInput) -> S3Result<GetBucketWebsiteOutput> {
Err(s3_error!(NotImplemented, "GetBucketWebsite is not implemented yet"))
}
/// <p>Retrieves objects from Amazon S3. To use <code>GET</code>, you must have <code>READ</code>
/// access to the object. If you grant <code>READ</code> access to the anonymous user, you can
/// return the object without using an authorization header.</p>
///
/// <p>An Amazon S3 bucket has no directory hierarchy such as you would find in a typical computer
/// file system. You can, however, create a logical hierarchy by using object key names that
/// imply a folder structure. For example, instead of naming an object <code>sample.jpg</code>,
/// you can name it <code>photos/2006/February/sample.jpg</code>.</p>
///
/// <p>To get an object from such a logical hierarchy, specify the full key name for the object
/// in the <code>GET</code> operation. For a virtual hosted-style request example, if you have
/// the object <code>photos/2006/February/sample.jpg</code>, specify the resource as
/// <code>/photos/2006/February/sample.jpg</code>. For a path-style request example, if you
/// have the object <code>photos/2006/February/sample.jpg</code> in the bucket named
/// <code>examplebucket</code>, specify the resource as
/// <code>/examplebucket/photos/2006/February/sample.jpg</code>. For more information about
/// request types, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/VirtualHosting.html#VirtualHostingSpecifyBucket">HTTP Host Header Bucket Specification</a>.</p>
///
/// <p>For more information about returning the ACL of an object, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObjectAcl.html">GetObjectAcl</a>.</p>
///
/// <p>If the object you are retrieving is stored in the S3 Glacier or
/// S3 Glacier Deep Archive storage class, or S3 Intelligent-Tiering Archive or
/// S3 Intelligent-Tiering Deep Archive tiers, before you can retrieve the object you must first restore a
/// copy using <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_RestoreObject.html">RestoreObject</a>. Otherwise, this action returns an
/// <code>InvalidObjectStateError</code> error. For information about restoring archived
/// objects, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/restoring-objects.html">Restoring Archived
/// Objects</a>.</p>
///
/// <p>Encryption request headers, like <code>x-amz-server-side-encryption</code>, should not
/// be sent for GET requests if your object uses server-side encryption with KMS keys (SSE-KMS)
/// or server-side encryption with Amazon S3–managed encryption keys (SSE-S3). If your
/// object does use these types of keys, you’ll get an HTTP 400 BadRequest error.</p>
/// <p>If you encrypt an object by using server-side encryption with customer-provided
/// encryption keys (SSE-C) when you store the object in Amazon S3, then when you GET the object,
/// you must use the following headers:</p>
/// <ul>
/// <li>
/// <p>x-amz-server-side-encryption-customer-algorithm</p>
/// </li>
/// <li>
/// <p>x-amz-server-side-encryption-customer-key</p>
/// </li>
/// <li>
/// <p>x-amz-server-side-encryption-customer-key-MD5</p>
/// </li>
/// </ul>
/// <p>For more information about SSE-C, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/ServerSideEncryptionCustomerKeys.html">Server-Side Encryption (Using
/// Customer-Provided Encryption Keys)</a>.</p>
///
/// <p>Assuming you have the relevant permission to read object tags, the response also returns the
/// <code>x-amz-tagging-count</code> header that provides the count of number of tags
/// associated with the object. You can use <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObjectTagging.html">GetObjectTagging</a> to retrieve
/// the tag set associated with an object.</p>
///
/// <p>
/// <b>Permissions</b>
/// </p>
/// <p>You need the relevant read object (or version) permission for this operation. For more
/// information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/using-with-s3-actions.html">Specifying Permissions
/// in a Policy</a>. If the object you request does not exist, the error Amazon S3 returns
/// depends on whether you also have the <code>s3:ListBucket</code> permission.</p>
/// <ul>
/// <li>
/// <p>If you have the <code>s3:ListBucket</code> permission on the bucket, Amazon S3 will
/// return an HTTP status code 404 ("no such key") error.</p>
/// </li>
/// <li>
/// <p>If you don’t have the <code>s3:ListBucket</code> permission, Amazon S3 will return an
/// HTTP status code 403 ("access denied") error.</p>
/// </li>
/// </ul>
///
///
/// <p>
/// <b>Versioning</b>
/// </p>
/// <p>By default, the GET action returns the current version of an object. To return a
/// different version, use the <code>versionId</code> subresource.</p>
///
/// <note>
/// <ul>
/// <li>
/// <p>
/// If you supply a <code>versionId</code>, you need the <code>s3:GetObjectVersion</code> permission to
/// access a specific version of an object. If you request a specific version, you do not need to have
/// the <code>s3:GetObject</code> permission.
/// </p>
/// </li>
/// <li>
/// <p>If the current version of the object is a delete marker, Amazon S3 behaves as if the
/// object was deleted and includes <code>x-amz-delete-marker: true</code> in the
/// response.</p>
/// </li>
/// </ul>
/// </note>
///
///
/// <p>For more information about versioning, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketVersioning.html">PutBucketVersioning</a>. </p>
///
/// <p>
/// <b>Overriding Response Header Values</b>
/// </p>
/// <p>There are times when you want to override certain response header values in a GET
/// response. For example, you might override the <code>Content-Disposition</code> response
/// header value in your GET request.</p>
///
/// <p>You can override values for a set of response headers using the following query
/// parameters. These response header values are sent only on a successful request, that is,
/// when status code 200 OK is returned. The set of headers you can override using these
/// parameters is a subset of the headers that Amazon S3 accepts when you create an object. The
/// response headers that you can override for the GET response are <code>Content-Type</code>,
/// <code>Content-Language</code>, <code>Expires</code>, <code>Cache-Control</code>,
/// <code>Content-Disposition</code>, and <code>Content-Encoding</code>. To override these
/// header values in the GET response, you use the following request parameters.</p>
///
/// <note>
/// <p>You must sign the request, either using an Authorization header or a presigned URL,
/// when using these parameters. They cannot be used with an unsigned (anonymous)
/// request.</p>
/// </note>
/// <ul>
/// <li>
/// <p>
/// <code>response-content-type</code>
/// </p>
/// </li>
/// <li>
/// <p>
/// <code>response-content-language</code>
/// </p>
/// </li>
/// <li>
/// <p>
/// <code>response-expires</code>
/// </p>
/// </li>
/// <li>
/// <p>
/// <code>response-cache-control</code>
/// </p>
/// </li>
/// <li>
/// <p>
/// <code>response-content-disposition</code>
/// </p>
/// </li>
/// <li>
/// <p>
/// <code>response-content-encoding</code>
/// </p>
/// </li>
/// </ul>
///
/// <p>
/// <b>Additional Considerations about Request Headers</b>
/// </p>
///
/// <p>If both of the <code>If-Match</code> and <code>If-Unmodified-Since</code> headers are
/// present in the request as follows: <code>If-Match</code> condition evaluates to
/// <code>true</code>, and; <code>If-Unmodified-Since</code> condition evaluates to
/// <code>false</code>; then, S3 returns 200 OK and the data requested. </p>
///
/// <p>If both of the <code>If-None-Match</code> and <code>If-Modified-Since</code> headers are
/// present in the request as follows:<code> If-None-Match</code> condition evaluates to
/// <code>false</code>, and; <code>If-Modified-Since</code> condition evaluates to
/// <code>true</code>; then, S3 returns 304 Not Modified response code.</p>
///
/// <p>For more information about conditional requests, see <a href="https://tools.ietf.org/html/rfc7232">RFC 7232</a>.</p>
///
/// <p>The following operations are related to <code>GetObject</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListBuckets.html">ListBuckets</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObjectAcl.html">GetObjectAcl</a>
/// </p>
/// </li>
/// </ul>
async fn get_object(&self, _input: GetObjectInput) -> S3Result<GetObjectOutput> {
Err(s3_error!(NotImplemented, "GetObject is not implemented yet"))
}
/// <p>Returns the access control list (ACL) of an object. To use this operation, you must have
/// <code>s3:GetObjectAcl</code> permissions or <code>READ_ACP</code> access to the object.
/// For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/acl-overview.html#acl-access-policy-permission-mapping">Mapping of ACL permissions and access policy permissions</a> in the <i>Amazon S3
/// User Guide</i>
/// </p>
/// <p>This action is not supported by Amazon S3 on Outposts.</p>
/// <p>
/// <b>Versioning</b>
/// </p>
/// <p>By default, GET returns ACL information about the current version of an object. To
/// return ACL information about a different version, use the versionId subresource.</p>
/// <note>
/// <p>If your bucket uses the bucket owner enforced setting for S3 Object Ownership,
/// requests to read ACLs are still supported and return the <code>bucket-owner-full-control</code>
/// ACL with the owner being the account that created the bucket. For more information, see
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/about-object-ownership.html">
/// Controlling object ownership and disabling ACLs</a> in the <i>Amazon S3 User Guide</i>.</p>
/// </note>
/// <p>The following operations are related to <code>GetObjectAcl</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html">GetObject</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObjectAttributes.html">GetObjectAttributes</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteObject.html">DeleteObject</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObject.html">PutObject</a>
/// </p>
/// </li>
/// </ul>
async fn get_object_acl(&self, _input: GetObjectAclInput) -> S3Result<GetObjectAclOutput> {
Err(s3_error!(NotImplemented, "GetObjectAcl is not implemented yet"))
}
/// <p>Retrieves all the metadata from an object without returning the object itself. This
/// action is useful if you're interested only in an object's metadata. To use
/// <code>GetObjectAttributes</code>, you must have READ access to the object.</p>
///
/// <p>
/// <code>GetObjectAttributes</code> combines the functionality of
/// <code>GetObjectAcl</code>, <code>GetObjectLegalHold</code>,
/// <code>GetObjectLockConfiguration</code>, <code>GetObjectRetention</code>,
/// <code>GetObjectTagging</code>, <code>HeadObject</code>, and <code>ListParts</code>. All
/// of the data returned with each of those individual calls can be returned with a single call
/// to <code>GetObjectAttributes</code>.</p>
///
/// <p>If you encrypt an object by using server-side encryption with customer-provided
/// encryption keys (SSE-C) when you store the object in Amazon S3, then when you retrieve the
/// metadata from the object, you must use the following headers:</p>
/// <ul>
/// <li>
/// <p>
/// <code>x-amz-server-side-encryption-customer-algorithm</code>
/// </p>
/// </li>
/// <li>
/// <p>
/// <code>x-amz-server-side-encryption-customer-key</code>
/// </p>
/// </li>
/// <li>
/// <p>
/// <code>x-amz-server-side-encryption-customer-key-MD5</code>
/// </p>
/// </li>
/// </ul>
/// <p>For more information about SSE-C, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/ServerSideEncryptionCustomerKeys.html">Server-Side Encryption
/// (Using Customer-Provided Encryption Keys)</a> in the
/// <i>Amazon S3 User Guide</i>.</p>
/// <note>
/// <ul>
/// <li>
/// <p>Encryption request headers, such as
/// <code>x-amz-server-side-encryption</code>, should not be sent for GET requests
/// if your object uses server-side encryption with Amazon Web Services KMS keys stored in Amazon Web Services Key
/// Management Service (SSE-KMS) or server-side encryption with Amazon S3 managed
/// encryption keys (SSE-S3). If your object does use these types of keys, you'll get
/// an HTTP <code>400 Bad Request</code> error.</p>
/// </li>
/// <li>
/// <p>
/// The last modified property in this case is the creation date of the object.</p>
/// </li>
/// </ul>
/// </note>
///
/// <p>Consider the following when using request headers:</p>
/// <ul>
/// <li>
/// <p> If both of the <code>If-Match</code> and <code>If-Unmodified-Since</code>
/// headers are present in the request as follows, then Amazon S3 returns the HTTP
/// status code <code>200 OK</code> and the data requested:</p>
/// <ul>
/// <li>
/// <p>
/// <code>If-Match</code> condition evaluates to <code>true</code>.</p>
/// </li>
/// <li>
/// <p>
/// <code>If-Unmodified-Since</code> condition evaluates to
/// <code>false</code>.</p>
/// </li>
/// </ul>
/// </li>
/// <li>
/// <p>If both of the <code>If-None-Match</code> and <code>If-Modified-Since</code>
/// headers are present in the request as follows, then Amazon S3 returns the HTTP status code
/// <code>304 Not Modified</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <code>If-None-Match</code> condition evaluates to
/// <code>false</code>.</p>
/// </li>
/// <li>
/// <p>
/// <code>If-Modified-Since</code> condition evaluates to
/// <code>true</code>.</p>
/// </li>
/// </ul>
/// </li>
/// </ul>
///
/// <p>For more information about conditional requests, see <a href="https://tools.ietf.org/html/rfc7232">RFC 7232</a>.</p>
///
/// <p>
/// <b>Permissions</b>
/// </p>
/// <p>The permissions that you need to use this operation depend on whether the bucket is
/// versioned. If the bucket is versioned, you need both the <code>s3:GetObjectVersion</code>
/// and <code>s3:GetObjectVersionAttributes</code> permissions for this operation. If the
/// bucket is not versioned, you need the <code>s3:GetObject</code> and
/// <code>s3:GetObjectAttributes</code> permissions. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/using-with-s3-actions.html">Specifying
/// Permissions in a Policy</a> in the <i>Amazon S3 User Guide</i>. If the
/// object that you request does not exist, the error Amazon S3 returns depends on whether you also
/// have the <code>s3:ListBucket</code> permission.</p>
/// <ul>
/// <li>
/// <p>If you have the <code>s3:ListBucket</code> permission on the bucket, Amazon S3
/// returns an HTTP status code <code>404 Not Found</code> ("no such key") error.</p>
/// </li>
/// <li>
/// <p>If you don't have the <code>s3:ListBucket</code> permission, Amazon S3 returns an
/// HTTP status code <code>403 Forbidden</code> ("access denied") error.</p>
/// </li>
/// </ul>
///
/// <p>The following actions are related to <code>GetObjectAttributes</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html">GetObject</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObjectAcl.html">GetObjectAcl</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObjectLegalHold.html">GetObjectLegalHold</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObjectLockConfiguration.html">GetObjectLockConfiguration</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObjectRetention.html">GetObjectRetention</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObjectTagging.html">GetObjectTagging</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_HeadObject.html">HeadObject</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListParts.html">ListParts</a>
/// </p>
/// </li>
/// </ul>
async fn get_object_attributes(&self, _input: GetObjectAttributesInput) -> S3Result<GetObjectAttributesOutput> {
Err(s3_error!(NotImplemented, "GetObjectAttributes is not implemented yet"))
}
/// <p>Gets an object's current legal hold status. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lock.html">Locking
/// Objects</a>.</p>
/// <p>This action is not supported by Amazon S3 on Outposts.</p>
///
/// <p>The following action is related to <code>GetObjectLegalHold</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObjectAttributes.html">GetObjectAttributes</a>
/// </p>
/// </li>
/// </ul>
async fn get_object_legal_hold(&self, _input: GetObjectLegalHoldInput) -> S3Result<GetObjectLegalHoldOutput> {
Err(s3_error!(NotImplemented, "GetObjectLegalHold is not implemented yet"))
}
/// <p>Gets the Object Lock configuration for a bucket. The rule specified in the Object Lock
/// configuration will be applied by default to every new object placed in the specified
/// bucket. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lock.html">Locking
/// Objects</a>.</p>
///
/// <p>The following action is related to <code>GetObjectLockConfiguration</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObjectAttributes.html">GetObjectAttributes</a>
/// </p>
/// </li>
/// </ul>
async fn get_object_lock_configuration(
&self,
_input: GetObjectLockConfigurationInput,
) -> S3Result<GetObjectLockConfigurationOutput> {
Err(s3_error!(NotImplemented, "GetObjectLockConfiguration is not implemented yet"))
}
/// <p>Retrieves an object's retention settings. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lock.html">Locking Objects</a>.</p>
/// <p>This action is not supported by Amazon S3 on Outposts.</p>
///
/// <p>The following action is related to <code>GetObjectRetention</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObjectAttributes.html">GetObjectAttributes</a>
/// </p>
/// </li>
/// </ul>
async fn get_object_retention(&self, _input: GetObjectRetentionInput) -> S3Result<GetObjectRetentionOutput> {
Err(s3_error!(NotImplemented, "GetObjectRetention is not implemented yet"))
}
/// <p>Returns the tag-set of an object. You send the GET request against the tagging
/// subresource associated with the object.</p>
///
/// <p>To use this operation, you must have permission to perform the
/// <code>s3:GetObjectTagging</code> action. By default, the GET action returns
/// information about current version of an object. For a versioned bucket, you can have
/// multiple versions of an object in your bucket. To retrieve tags of any other version, use
/// the versionId query parameter. You also need permission for the
/// <code>s3:GetObjectVersionTagging</code> action.</p>
///
/// <p> By default, the bucket owner has this permission and can grant this permission to
/// others.</p>
///
/// <p> For information about the Amazon S3 object tagging feature, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/object-tagging.html">Object Tagging</a>.</p>
///
/// <p>The following actions are related to <code>GetObjectTagging</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteObjectTagging.html">DeleteObjectTagging</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObjectAttributes.html">GetObjectAttributes</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObjectTagging.html">PutObjectTagging</a>
/// </p>
/// </li>
/// </ul>
async fn get_object_tagging(&self, _input: GetObjectTaggingInput) -> S3Result<GetObjectTaggingOutput> {
Err(s3_error!(NotImplemented, "GetObjectTagging is not implemented yet"))
}
/// <p>Returns torrent files from a bucket. BitTorrent can save you bandwidth when you're
/// distributing large files. For more information about BitTorrent, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/S3Torrent.html">Using BitTorrent with Amazon S3</a>.</p>
/// <note>
/// <p>You can get torrent only for objects that are less than 5 GB in size, and that are
/// not encrypted using server-side encryption with a customer-provided encryption
/// key.</p>
/// </note>
/// <p>To use GET, you must have READ access to the object.</p>
/// <p>This action is not supported by Amazon S3 on Outposts.</p>
/// <p>The following action is related to <code>GetObjectTorrent</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html">GetObject</a>
/// </p>
/// </li>
/// </ul>
async fn get_object_torrent(&self, _input: GetObjectTorrentInput) -> S3Result<GetObjectTorrentOutput> {
Err(s3_error!(NotImplemented, "GetObjectTorrent is not implemented yet"))
}
/// <p>Retrieves the <code>PublicAccessBlock</code> configuration for an Amazon S3 bucket. To use
/// this operation, you must have the <code>s3:GetBucketPublicAccessBlock</code> permission.
/// For more information about Amazon S3 permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/using-with-s3-actions.html">Specifying Permissions in a
/// Policy</a>.</p>
///
/// <important>
/// <p>When Amazon S3 evaluates the <code>PublicAccessBlock</code> configuration for a bucket or
/// an object, it checks the <code>PublicAccessBlock</code> configuration for both the
/// bucket (or the bucket that contains the object) and the bucket owner's account. If the
/// <code>PublicAccessBlock</code> settings are different between the bucket and the
/// account, Amazon S3 uses the most restrictive combination of the bucket-level and
/// account-level settings.</p>
/// </important>
///
/// <p>For more information about when Amazon S3 considers a bucket or an object public, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html#access-control-block-public-access-policy-status">The Meaning of "Public"</a>.</p>
///
/// <p>The following operations are related to <code>GetPublicAccessBlock</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html">Using Amazon S3 Block
/// Public Access</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutPublicAccessBlock.html">PutPublicAccessBlock</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetPublicAccessBlock.html">GetPublicAccessBlock</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeletePublicAccessBlock.html">DeletePublicAccessBlock</a>
/// </p>
/// </li>
/// </ul>
async fn get_public_access_block(&self, _input: GetPublicAccessBlockInput) -> S3Result<GetPublicAccessBlockOutput> {
Err(s3_error!(NotImplemented, "GetPublicAccessBlock is not implemented yet"))
}
/// <p>This action is useful to determine if a bucket exists and you have permission to
/// access it. The action returns a <code>200 OK</code> if the bucket exists and you have
/// permission to access it.</p>
///
///
/// <p>If the bucket does not exist or you do not have permission to access it, the <code>HEAD</code> request
/// returns a generic <code>404 Not Found</code> or <code>403 Forbidden</code> code. A message body is not
/// included, so you cannot determine the exception beyond these error codes.</p>
///
/// <p>To use this operation, you must have permissions to perform the
/// <code>s3:ListBucket</code> action. The bucket owner has this permission by default and
/// can grant this permission to others. For more information about permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources">Permissions Related to Bucket Subresource Operations</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-access-control.html">Managing Access Permissions to Your Amazon S3
/// Resources</a>.</p>
///
///
/// <p>To use this API against an access point, you must provide the alias of the access point in place of the bucket name or specify the access point ARN. When using the access point ARN, you must direct requests to the access point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com. When using the Amazon Web Services SDKs, you provide the ARN in place of the bucket name. For more information see, <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-access-points.html">Using access points</a>.</p>
async fn head_bucket(&self, _input: HeadBucketInput) -> S3Result<HeadBucketOutput> {
Err(s3_error!(NotImplemented, "HeadBucket is not implemented yet"))
}
/// <p>The HEAD action retrieves metadata from an object without returning the object
/// itself. This action is useful if you're only interested in an object's metadata. To use
/// HEAD, you must have READ access to the object.</p>
///
/// <p>A <code>HEAD</code> request has the same options as a <code>GET</code> action on an
/// object. The response is identical to the <code>GET</code> response except that there is no
/// response body. Because of this, if the <code>HEAD</code> request generates an error, it
/// returns a generic <code>404 Not Found</code> or <code>403 Forbidden</code> code. It is not
/// possible to retrieve the exact exception beyond these error codes.</p>
///
/// <p>If you encrypt an object by using server-side encryption with customer-provided
/// encryption keys (SSE-C) when you store the object in Amazon S3, then when you retrieve the
/// metadata from the object, you must use the following headers:</p>
/// <ul>
/// <li>
/// <p>x-amz-server-side-encryption-customer-algorithm</p>
/// </li>
/// <li>
/// <p>x-amz-server-side-encryption-customer-key</p>
/// </li>
/// <li>
/// <p>x-amz-server-side-encryption-customer-key-MD5</p>
/// </li>
/// </ul>
/// <p>For more information about SSE-C, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/ServerSideEncryptionCustomerKeys.html">Server-Side Encryption (Using
/// Customer-Provided Encryption Keys)</a>.</p>
/// <note>
/// <ul>
/// <li>
/// <p>Encryption request headers, like <code>x-amz-server-side-encryption</code>, should
/// not be sent for GET requests if your object uses server-side encryption with KMS keys (SSE-KMS)
/// or server-side encryption with Amazon S3–managed encryption keys
/// (SSE-S3). If your object does use these types of keys, you’ll get an HTTP 400 BadRequest
/// error.</p>
/// </li>
/// <li>
/// <p>
/// The last modified property in this case is the creation date of the object.</p>
/// </li>
/// </ul>
/// </note>
///
///
/// <p>Request headers are limited to 8 KB in size. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/RESTCommonRequestHeaders.html">Common Request
/// Headers</a>.</p>
/// <p>Consider the following when using request headers:</p>
/// <ul>
/// <li>
/// <p> Consideration 1 – If both of the <code>If-Match</code> and
/// <code>If-Unmodified-Since</code> headers are present in the request as
/// follows:</p>
/// <ul>
/// <li>
/// <p>
/// <code>If-Match</code> condition evaluates to <code>true</code>, and;</p>
/// </li>
/// <li>
/// <p>
/// <code>If-Unmodified-Since</code> condition evaluates to
/// <code>false</code>;</p>
/// </li>
/// </ul>
/// <p>Then Amazon S3 returns <code>200 OK</code> and the data requested.</p>
/// </li>
/// <li>
/// <p> Consideration 2 – If both of the <code>If-None-Match</code> and
/// <code>If-Modified-Since</code> headers are present in the request as
/// follows:</p>
/// <ul>
/// <li>
/// <p>
/// <code>If-None-Match</code> condition evaluates to <code>false</code>,
/// and;</p>
/// </li>
/// <li>
/// <p>
/// <code>If-Modified-Since</code> condition evaluates to
/// <code>true</code>;</p>
/// </li>
/// </ul>
/// <p>Then Amazon S3 returns the <code>304 Not Modified</code> response code.</p>
/// </li>
/// </ul>
///
/// <p>For more information about conditional requests, see <a href="https://tools.ietf.org/html/rfc7232">RFC 7232</a>.</p>
///
/// <p>
/// <b>Permissions</b>
/// </p>
/// <p>You need the relevant read object (or version) permission for this operation. For more
/// information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/using-with-s3-actions.html">Specifying Permissions
/// in a Policy</a>. If the object you request does not exist, the error Amazon S3 returns
/// depends on whether you also have the s3:ListBucket permission.</p>
/// <ul>
/// <li>
/// <p>If you have the <code>s3:ListBucket</code> permission on the bucket, Amazon S3 returns
/// an HTTP status code 404 ("no such key") error.</p>
/// </li>
/// <li>
/// <p>If you don’t have the <code>s3:ListBucket</code> permission, Amazon S3 returns an HTTP
/// status code 403 ("access denied") error.</p>
/// </li>
/// </ul>
///
/// <p>The following actions are related to <code>HeadObject</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html">GetObject</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObjectAttributes.html">GetObjectAttributes</a>
/// </p>
/// </li>
/// </ul>
async fn head_object(&self, _input: HeadObjectInput) -> S3Result<HeadObjectOutput> {
Err(s3_error!(NotImplemented, "HeadObject is not implemented yet"))
}
/// <p>Lists the analytics configurations for the bucket. You can have up to 1,000 analytics
/// configurations per bucket.</p>
///
/// <p>This action supports list pagination and does not return more than 100 configurations
/// at a time. You should always check the <code>IsTruncated</code> element in the response. If
/// there are no more configurations to list, <code>IsTruncated</code> is set to false. If
/// there are more configurations to list, <code>IsTruncated</code> is set to true, and there
/// will be a value in <code>NextContinuationToken</code>. You use the
/// <code>NextContinuationToken</code> value to continue the pagination of the list by
/// passing the value in continuation-token in the request to <code>GET</code> the next
/// page.</p>
///
/// <p>To use this operation, you must have permissions to perform the
/// <code>s3:GetAnalyticsConfiguration</code> action. The bucket owner has this permission
/// by default. The bucket owner can grant this permission to others. For more information
/// about permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources">Permissions Related to Bucket Subresource Operations</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-access-control.html">Managing Access Permissions to Your Amazon S3
/// Resources</a>.</p>
///
/// <p>For information about Amazon S3 analytics feature, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/analytics-storage-class.html">Amazon S3 Analytics – Storage Class
/// Analysis</a>. </p>
///
/// <p>The following operations are related to
/// <code>ListBucketAnalyticsConfigurations</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketAnalyticsConfiguration.html">GetBucketAnalyticsConfiguration</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketAnalyticsConfiguration.html">DeleteBucketAnalyticsConfiguration</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketAnalyticsConfiguration.html">PutBucketAnalyticsConfiguration</a>
/// </p>
/// </li>
/// </ul>
async fn list_bucket_analytics_configurations(
&self,
_input: ListBucketAnalyticsConfigurationsInput,
) -> S3Result<ListBucketAnalyticsConfigurationsOutput> {
Err(s3_error!(NotImplemented, "ListBucketAnalyticsConfigurations is not implemented yet"))
}
/// <p>Lists the S3 Intelligent-Tiering configuration from the specified bucket.</p>
/// <p>The S3 Intelligent-Tiering storage class is designed to optimize storage costs by automatically moving data to the most cost-effective storage access tier, without performance impact or operational overhead. S3 Intelligent-Tiering delivers automatic cost savings in three low latency and high throughput access tiers. To get the lowest storage cost on data that can be accessed in minutes to hours, you can choose to activate additional archiving capabilities.</p>
/// <p>The S3 Intelligent-Tiering storage class is the ideal storage class for data with unknown, changing, or unpredictable access patterns, independent of object size or retention period. If the size of an object is less than 128 KB, it is not monitored and not eligible for auto-tiering. Smaller objects can be stored, but they are always charged at the Frequent Access tier rates in the S3 Intelligent-Tiering storage class.</p>
/// <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-class-intro.html#sc-dynamic-data-access">Storage class for automatically optimizing frequently and infrequently accessed objects</a>.</p>
/// <p>Operations related to
/// <code>ListBucketIntelligentTieringConfigurations</code> include: </p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketIntelligentTieringConfiguration.html">DeleteBucketIntelligentTieringConfiguration</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketIntelligentTieringConfiguration.html">PutBucketIntelligentTieringConfiguration</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketIntelligentTieringConfiguration.html">GetBucketIntelligentTieringConfiguration</a>
/// </p>
/// </li>
/// </ul>
async fn list_bucket_intelligent_tiering_configurations(
&self,
_input: ListBucketIntelligentTieringConfigurationsInput,
) -> S3Result<ListBucketIntelligentTieringConfigurationsOutput> {
Err(s3_error!(
NotImplemented,
"ListBucketIntelligentTieringConfigurations is not implemented yet"
))
}
/// <p>Returns a list of inventory configurations for the bucket. You can have up to 1,000
/// analytics configurations per bucket.</p>
///
/// <p>This action supports list pagination and does not return more than 100 configurations
/// at a time. Always check the <code>IsTruncated</code> element in the response. If there are
/// no more configurations to list, <code>IsTruncated</code> is set to false. If there are more
/// configurations to list, <code>IsTruncated</code> is set to true, and there is a value in
/// <code>NextContinuationToken</code>. You use the <code>NextContinuationToken</code> value
/// to continue the pagination of the list by passing the value in continuation-token in the
/// request to <code>GET</code> the next page.</p>
///
/// <p> To use this operation, you must have permissions to perform the
/// <code>s3:GetInventoryConfiguration</code> action. The bucket owner has this permission
/// by default. The bucket owner can grant this permission to others. For more information
/// about permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources">Permissions Related to Bucket Subresource Operations</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-access-control.html">Managing Access Permissions to Your Amazon S3
/// Resources</a>.</p>
///
/// <p>For information about the Amazon S3 inventory feature, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html">Amazon S3 Inventory</a>
/// </p>
///
/// <p>The following operations are related to
/// <code>ListBucketInventoryConfigurations</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketInventoryConfiguration.html">GetBucketInventoryConfiguration</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketInventoryConfiguration.html">DeleteBucketInventoryConfiguration</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketInventoryConfiguration.html">PutBucketInventoryConfiguration</a>
/// </p>
/// </li>
/// </ul>
async fn list_bucket_inventory_configurations(
&self,
_input: ListBucketInventoryConfigurationsInput,
) -> S3Result<ListBucketInventoryConfigurationsOutput> {
Err(s3_error!(NotImplemented, "ListBucketInventoryConfigurations is not implemented yet"))
}
/// <p>Lists the metrics configurations for the bucket. The metrics configurations are only for
/// the request metrics of the bucket and do not provide information on daily storage metrics.
/// You can have up to 1,000 configurations per bucket.</p>
///
/// <p>This action supports list pagination and does not return more than 100 configurations
/// at a time. Always check the <code>IsTruncated</code> element in the response. If there are
/// no more configurations to list, <code>IsTruncated</code> is set to false. If there are more
/// configurations to list, <code>IsTruncated</code> is set to true, and there is a value in
/// <code>NextContinuationToken</code>. You use the <code>NextContinuationToken</code> value
/// to continue the pagination of the list by passing the value in
/// <code>continuation-token</code> in the request to <code>GET</code> the next page.</p>
///
/// <p>To use this operation, you must have permissions to perform the
/// <code>s3:GetMetricsConfiguration</code> action. The bucket owner has this permission by
/// default. The bucket owner can grant this permission to others. For more information about
/// permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources">Permissions Related to Bucket Subresource Operations</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-access-control.html">Managing Access Permissions to Your Amazon S3
/// Resources</a>.</p>
///
/// <p>For more information about metrics configurations and CloudWatch request metrics, see
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/cloudwatch-monitoring.html">Monitoring Metrics with Amazon
/// CloudWatch</a>.</p>
///
/// <p>The following operations are related to
/// <code>ListBucketMetricsConfigurations</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketMetricsConfiguration.html">PutBucketMetricsConfiguration</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketMetricsConfiguration.html">GetBucketMetricsConfiguration</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketMetricsConfiguration.html">DeleteBucketMetricsConfiguration</a>
/// </p>
/// </li>
/// </ul>
async fn list_bucket_metrics_configurations(
&self,
_input: ListBucketMetricsConfigurationsInput,
) -> S3Result<ListBucketMetricsConfigurationsOutput> {
Err(s3_error!(NotImplemented, "ListBucketMetricsConfigurations is not implemented yet"))
}
/// <p>Returns a list of all buckets owned by the authenticated sender of the request. To use
/// this operation, you must have the <code>s3:ListAllMyBuckets</code> permission.</p>
async fn list_buckets(&self, _input: ListBucketsInput) -> S3Result<ListBucketsOutput> {
Err(s3_error!(NotImplemented, "ListBuckets is not implemented yet"))
}
/// <p>This action lists in-progress multipart uploads. An in-progress multipart upload is a
/// multipart upload that has been initiated using the Initiate Multipart Upload request, but
/// has not yet been completed or aborted.</p>
///
/// <p>This action returns at most 1,000 multipart uploads in the response. 1,000 multipart
/// uploads is the maximum number of uploads a response can include, which is also the default
/// value. You can further limit the number of uploads in a response by specifying the
/// <code>max-uploads</code> parameter in the response. If additional multipart uploads
/// satisfy the list criteria, the response will contain an <code>IsTruncated</code> element
/// with the value true. To list the additional multipart uploads, use the
/// <code>key-marker</code> and <code>upload-id-marker</code> request parameters.</p>
///
/// <p>In the response, the uploads are sorted by key. If your application has initiated more
/// than one multipart upload using the same object key, then uploads in the response are first
/// sorted by key. Additionally, uploads are sorted in ascending order within each key by the
/// upload initiation time.</p>
///
/// <p>For more information on multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/uploadobjusingmpu.html">Uploading Objects Using Multipart
/// Upload</a>.</p>
///
/// <p>For information on permissions required to use the multipart upload API, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/mpuAndPermissions.html">Multipart Upload and
/// Permissions</a>.</p>
///
/// <p>The following operations are related to <code>ListMultipartUploads</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateMultipartUpload.html">CreateMultipartUpload</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_UploadPart.html">UploadPart</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_CompleteMultipartUpload.html">CompleteMultipartUpload</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListParts.html">ListParts</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_AbortMultipartUpload.html">AbortMultipartUpload</a>
/// </p>
/// </li>
/// </ul>
async fn list_multipart_uploads(&self, _input: ListMultipartUploadsInput) -> S3Result<ListMultipartUploadsOutput> {
Err(s3_error!(NotImplemented, "ListMultipartUploads is not implemented yet"))
}
/// <p>Returns metadata about all versions of the objects in a bucket. You can also use request
/// parameters as selection criteria to return metadata about a subset of all the object
/// versions.</p>
/// <important>
/// <p>
/// To use this operation, you must have permissions to perform the
/// <code>s3:ListBucketVersions</code> action. Be aware of the name difference.
/// </p>
/// </important>
/// <note>
/// <p> A 200 OK response can contain valid or invalid XML. Make sure to design your
/// application to parse the contents of the response and handle it appropriately.</p>
/// </note>
/// <p>To use this operation, you must have READ access to the bucket.</p>
/// <p>This action is not supported by Amazon S3 on Outposts.</p>
/// <p>The following operations are related to
/// <code>ListObjectVersions</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListObjectsV2.html">ListObjectsV2</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html">GetObject</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObject.html">PutObject</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteObject.html">DeleteObject</a>
/// </p>
/// </li>
/// </ul>
async fn list_object_versions(&self, _input: ListObjectVersionsInput) -> S3Result<ListObjectVersionsOutput> {
Err(s3_error!(NotImplemented, "ListObjectVersions is not implemented yet"))
}
/// <p>Returns some or all (up to 1,000) of the objects in a bucket. You can use the request
/// parameters as selection criteria to return a subset of the objects in a bucket. A 200 OK
/// response can contain valid or invalid XML. Be sure to design your application to parse the
/// contents of the response and handle it appropriately.</p>
/// <important>
/// <p>This action has been revised. We recommend that you use the newer version, <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListObjectsV2.html">ListObjectsV2</a>, when developing applications. For backward compatibility,
/// Amazon S3 continues to support <code>ListObjects</code>.</p>
/// </important>
///
///
/// <p>The following operations are related to <code>ListObjects</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListObjectsV2.html">ListObjectsV2</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html">GetObject</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObject.html">PutObject</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucket.html">CreateBucket</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListBuckets.html">ListBuckets</a>
/// </p>
/// </li>
/// </ul>
async fn list_objects(&self, _input: ListObjectsInput) -> S3Result<ListObjectsOutput> {
Err(s3_error!(NotImplemented, "ListObjects is not implemented yet"))
}
/// <p>Returns some or all (up to 1,000) of the objects in a bucket with each request. You can use
/// the request parameters as selection criteria to return a subset of the objects in a bucket. A
/// <code>200 OK</code> response can contain valid or invalid XML. Make sure to design your
/// application to parse the contents of the response and handle it appropriately.
/// Objects are returned sorted in an ascending order of the respective key names in the list.
/// For more information about listing objects, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/ListingKeysUsingAPIs.html">Listing object keys
/// programmatically</a>
/// </p>
///
/// <p>To use this operation, you must have READ access to the bucket.</p>
///
/// <p>To use this action in an Identity and Access Management (IAM) policy, you must
/// have permissions to perform the <code>s3:ListBucket</code> action. The bucket owner has
/// this permission by default and can grant this permission to others. For more information
/// about permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources">Permissions Related to Bucket Subresource Operations</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-access-control.html">Managing Access Permissions to Your Amazon S3
/// Resources</a>.</p>
/// <important>
/// <p>This section describes the latest revision of this action. We recommend that you use this
/// revised API for application development. For backward compatibility, Amazon S3 continues to
/// support the prior version of this API, <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListObjects.html">ListObjects</a>.</p>
/// </important>
///
/// <p>To get a list of your buckets, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListBuckets.html">ListBuckets</a>.</p>
///
/// <p>The following operations are related to <code>ListObjectsV2</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html">GetObject</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObject.html">PutObject</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucket.html">CreateBucket</a>
/// </p>
/// </li>
/// </ul>
async fn list_objects_v2(&self, _input: ListObjectsV2Input) -> S3Result<ListObjectsV2Output> {
Err(s3_error!(NotImplemented, "ListObjectsV2 is not implemented yet"))
}
/// <p>Lists the parts that have been uploaded for a specific multipart upload. This operation
/// must include the upload ID, which you obtain by sending the initiate multipart upload
/// request (see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateMultipartUpload.html">CreateMultipartUpload</a>).
/// This request returns a maximum of 1,000 uploaded parts. The default number of parts
/// returned is 1,000 parts. You can restrict the number of parts returned by specifying the
/// <code>max-parts</code> request parameter. If your multipart upload consists of more than
/// 1,000 parts, the response returns an <code>IsTruncated</code> field with the value of true,
/// and a <code>NextPartNumberMarker</code> element. In subsequent <code>ListParts</code>
/// requests you can include the part-number-marker query string parameter and set its value to
/// the <code>NextPartNumberMarker</code> field value from the previous response.</p>
/// <p>If the upload was created using a checksum algorithm, you will need to have permission
/// to the <code>kms:Decrypt</code> action for the request to succeed.
/// </p>
///
/// <p>For more information on multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/uploadobjusingmpu.html">Uploading Objects Using Multipart
/// Upload</a>.</p>
///
/// <p>For information on permissions required to use the multipart upload API, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/mpuAndPermissions.html">Multipart Upload and
/// Permissions</a>.</p>
///
/// <p>The following operations are related to <code>ListParts</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateMultipartUpload.html">CreateMultipartUpload</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_UploadPart.html">UploadPart</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_CompleteMultipartUpload.html">CompleteMultipartUpload</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_AbortMultipartUpload.html">AbortMultipartUpload</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObjectAttributes.html">GetObjectAttributes</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListMultipartUploads.html">ListMultipartUploads</a>
/// </p>
/// </li>
/// </ul>
async fn list_parts(&self, _input: ListPartsInput) -> S3Result<ListPartsOutput> {
Err(s3_error!(NotImplemented, "ListParts is not implemented yet"))
}
/// <p>Sets the accelerate configuration of an existing bucket. Amazon S3 Transfer Acceleration is a
/// bucket-level feature that enables you to perform faster data transfers to Amazon S3.</p>
///
/// <p> To use this operation, you must have permission to perform the
/// <code>s3:PutAccelerateConfiguration</code> action. The bucket owner has this permission
/// by default. The bucket owner can grant this permission to others. For more information
/// about permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources">Permissions Related to Bucket Subresource Operations</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-access-control.html">Managing
/// Access Permissions to Your Amazon S3 Resources</a>.</p>
///
/// <p> The Transfer Acceleration state of a bucket can be set to one of the following two
/// values:</p>
/// <ul>
/// <li>
/// <p> Enabled – Enables accelerated data transfers to the bucket.</p>
/// </li>
/// <li>
/// <p> Suspended – Disables accelerated data transfers to the bucket.</p>
/// </li>
/// </ul>
///
///
/// <p>The <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketAccelerateConfiguration.html">GetBucketAccelerateConfiguration</a> action returns the transfer acceleration
/// state of a bucket.</p>
///
/// <p>After setting the Transfer Acceleration state of a bucket to Enabled, it might take up
/// to thirty minutes before the data transfer rates to the bucket increase.</p>
///
/// <p> The name of the bucket used for Transfer Acceleration must be DNS-compliant and must
/// not contain periods (".").</p>
///
/// <p> For more information about transfer acceleration, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/transfer-acceleration.html">Transfer Acceleration</a>.</p>
///
/// <p>The following operations are related to
/// <code>PutBucketAccelerateConfiguration</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketAccelerateConfiguration.html">GetBucketAccelerateConfiguration</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucket.html">CreateBucket</a>
/// </p>
/// </li>
/// </ul>
async fn put_bucket_accelerate_configuration(
&self,
_input: PutBucketAccelerateConfigurationInput,
) -> S3Result<PutBucketAccelerateConfigurationOutput> {
Err(s3_error!(NotImplemented, "PutBucketAccelerateConfiguration is not implemented yet"))
}
/// <p>Sets the permissions on an existing bucket using access control lists (ACL). For more
/// information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/S3_ACLs_UsingACLs.html">Using ACLs</a>. To set
/// the ACL of a bucket, you must have <code>WRITE_ACP</code> permission.</p>
///
/// <p>You can use one of the following two ways to set a bucket's permissions:</p>
/// <ul>
/// <li>
/// <p>Specify the ACL in the request body</p>
/// </li>
/// <li>
/// <p>Specify permissions using request headers</p>
/// </li>
/// </ul>
///
/// <note>
/// <p>You cannot specify access permission using both the body and the request
/// headers.</p>
/// </note>
///
/// <p>Depending on your application needs, you may choose to set the ACL on a bucket using
/// either the request body or the headers. For example, if you have an existing application
/// that updates a bucket ACL using the request body, then you can continue to use that
/// approach.</p>
///
/// <important>
/// <p>If your bucket uses the bucket owner enforced setting for S3 Object Ownership, ACLs are disabled and no longer affect permissions.
/// You must use policies to grant access to your bucket and the objects in it. Requests to set ACLs or update ACLs fail and
/// return the <code>AccessControlListNotSupported</code> error code. Requests to read ACLs are still supported.
/// For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/about-object-ownership.html">Controlling object ownership</a>
/// in the <i>Amazon S3 User Guide</i>.</p>
/// </important>
/// <p>
/// <b>Access Permissions</b>
/// </p>
/// <p>You can set access permissions using one of the following methods:</p>
/// <ul>
/// <li>
/// <p>Specify a canned ACL with the <code>x-amz-acl</code> request header. Amazon S3 supports
/// a set of predefined ACLs, known as <i>canned ACLs</i>. Each canned ACL
/// has a predefined set of grantees and permissions. Specify the canned ACL name as the
/// value of <code>x-amz-acl</code>. If you use this header, you cannot use other access
/// control-specific headers in your request. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html#CannedACL">Canned ACL</a>.</p>
/// </li>
/// <li>
/// <p>Specify access permissions explicitly with the <code>x-amz-grant-read</code>,
/// <code>x-amz-grant-read-acp</code>, <code>x-amz-grant-write-acp</code>, and
/// <code>x-amz-grant-full-control</code> headers. When using these headers, you
/// specify explicit access permissions and grantees (Amazon Web Services accounts or Amazon S3 groups) who
/// will receive the permission. If you use these ACL-specific headers, you cannot use
/// the <code>x-amz-acl</code> header to set a canned ACL. These parameters map to the
/// set of permissions that Amazon S3 supports in an ACL. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html">Access Control List (ACL)
/// Overview</a>.</p>
/// <p>You specify each grantee as a type=value pair, where the type is one of the
/// following:</p>
/// <ul>
/// <li>
/// <p>
/// <code>id</code> – if the value specified is the canonical user ID of an Amazon Web Services account</p>
/// </li>
/// <li>
/// <p>
/// <code>uri</code> – if you are granting permissions to a predefined
/// group</p>
/// </li>
/// <li>
/// <p>
/// <code>emailAddress</code> – if the value specified is the email address of
/// an Amazon Web Services account</p>
/// <note>
/// <p>Using email addresses to specify a grantee is only supported in the following Amazon Web Services Regions: </p>
/// <ul>
/// <li>
/// <p>US East (N. Virginia)</p>
/// </li>
/// <li>
/// <p>US West (N. California)</p>
/// </li>
/// <li>
/// <p> US West (Oregon)</p>
/// </li>
/// <li>
/// <p> Asia Pacific (Singapore)</p>
/// </li>
/// <li>
/// <p>Asia Pacific (Sydney)</p>
/// </li>
/// <li>
/// <p>Asia Pacific (Tokyo)</p>
/// </li>
/// <li>
/// <p>Europe (Ireland)</p>
/// </li>
/// <li>
/// <p>South America (São Paulo)</p>
/// </li>
/// </ul>
/// <p>For a list of all the Amazon S3 supported Regions and endpoints, see <a href="https://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region">Regions and Endpoints</a> in the Amazon Web Services General Reference.</p>
/// </note>
/// </li>
/// </ul>
/// <p>For example, the following <code>x-amz-grant-write</code> header grants create,
/// overwrite, and delete objects permission to LogDelivery group predefined by Amazon S3 and
/// two Amazon Web Services accounts identified by their email addresses.</p>
/// <p>
/// <code>x-amz-grant-write: uri="http://acs.amazonaws.com/groups/s3/LogDelivery",
/// id="111122223333", id="555566667777" </code>
/// </p>
///
/// </li>
/// </ul>
/// <p>You can use either a canned ACL or specify access permissions explicitly. You cannot do
/// both.</p>
/// <p>
/// <b>Grantee Values</b>
/// </p>
/// <p>You can specify the person (grantee) to whom you're assigning access rights (using
/// request elements) in the following ways:</p>
/// <ul>
/// <li>
/// <p>By the person's ID:</p>
/// <p>
/// <code><Grantee xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
/// xsi:type="CanonicalUser"><ID><>ID<></ID><DisplayName><>GranteesEmail<></DisplayName>
/// </Grantee></code>
/// </p>
/// <p>DisplayName is optional and ignored in the request</p>
/// </li>
/// <li>
/// <p>By URI:</p>
/// <p>
/// <code><Grantee xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
/// xsi:type="Group"><URI><>http://acs.amazonaws.com/groups/global/AuthenticatedUsers<></URI></Grantee></code>
/// </p>
/// </li>
/// <li>
/// <p>By Email address:</p>
/// <p>
/// <code><Grantee xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
/// xsi:type="AmazonCustomerByEmail"><EmailAddress><>Grantees@email.com<></EmailAddress>lt;/Grantee></code>
/// </p>
/// <p>The grantee is resolved to the CanonicalUser and, in a response to a GET Object
/// acl request, appears as the CanonicalUser. </p>
/// <note>
/// <p>Using email addresses to specify a grantee is only supported in the following Amazon Web Services Regions: </p>
/// <ul>
/// <li>
/// <p>US East (N. Virginia)</p>
/// </li>
/// <li>
/// <p>US West (N. California)</p>
/// </li>
/// <li>
/// <p> US West (Oregon)</p>
/// </li>
/// <li>
/// <p> Asia Pacific (Singapore)</p>
/// </li>
/// <li>
/// <p>Asia Pacific (Sydney)</p>
/// </li>
/// <li>
/// <p>Asia Pacific (Tokyo)</p>
/// </li>
/// <li>
/// <p>Europe (Ireland)</p>
/// </li>
/// <li>
/// <p>South America (São Paulo)</p>
/// </li>
/// </ul>
/// <p>For a list of all the Amazon S3 supported Regions and endpoints, see <a href="https://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region">Regions and Endpoints</a> in the Amazon Web Services General Reference.</p>
/// </note>
/// </li>
/// </ul>
///
///
/// <p class="title">
/// <b>Related Resources</b>
/// </p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucket.html">CreateBucket</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucket.html">DeleteBucket</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObjectAcl.html">GetObjectAcl</a>
/// </p>
/// </li>
/// </ul>
async fn put_bucket_acl(&self, _input: PutBucketAclInput) -> S3Result<PutBucketAclOutput> {
Err(s3_error!(NotImplemented, "PutBucketAcl is not implemented yet"))
}
/// <p>Sets an analytics configuration for the bucket (specified by the analytics configuration
/// ID). You can have up to 1,000 analytics configurations per bucket.</p>
///
/// <p>You can choose to have storage class analysis export analysis reports sent to a
/// comma-separated values (CSV) flat file. See the <code>DataExport</code> request element.
/// Reports are updated daily and are based on the object filters that you configure. When
/// selecting data export, you specify a destination bucket and an optional destination prefix
/// where the file is written. You can export the data to a destination bucket in a different
/// account. However, the destination bucket must be in the same Region as the bucket that you
/// are making the PUT analytics configuration to. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/analytics-storage-class.html">Amazon S3 Analytics – Storage Class
/// Analysis</a>. </p>
///
/// <important>
/// <p>You must create a bucket policy on the destination bucket where the exported file is
/// written to grant permissions to Amazon S3 to write objects to the bucket. For an example
/// policy, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/example-bucket-policies.html#example-bucket-policies-use-case-9">Granting Permissions for Amazon S3 Inventory and Storage Class Analysis</a>.</p>
/// </important>
///
/// <p>To use this operation, you must have permissions to perform the
/// <code>s3:PutAnalyticsConfiguration</code> action. The bucket owner has this permission
/// by default. The bucket owner can grant this permission to others. For more information
/// about permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources">Permissions Related to Bucket Subresource Operations</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-access-control.html">Managing Access Permissions to Your Amazon S3
/// Resources</a>.</p>
///
///
/// <p class="title">
/// <b>Special Errors</b>
/// </p>
/// <ul>
/// <li>
/// <ul>
/// <li>
/// <p>
/// <i>HTTP Error: HTTP 400 Bad Request</i>
/// </p>
/// </li>
/// <li>
/// <p>
/// <i>Code: InvalidArgument</i>
/// </p>
/// </li>
/// <li>
/// <p>
/// <i>Cause: Invalid argument.</i>
/// </p>
/// </li>
/// </ul>
/// </li>
/// <li>
/// <ul>
/// <li>
/// <p>
/// <i>HTTP Error: HTTP 400 Bad Request</i>
/// </p>
/// </li>
/// <li>
/// <p>
/// <i>Code: TooManyConfigurations</i>
/// </p>
/// </li>
/// <li>
/// <p>
/// <i>Cause: You are attempting to create a new configuration but have
/// already reached the 1,000-configuration limit.</i>
/// </p>
/// </li>
/// </ul>
/// </li>
/// <li>
/// <ul>
/// <li>
/// <p>
/// <i>HTTP Error: HTTP 403 Forbidden</i>
/// </p>
/// </li>
/// <li>
/// <p>
/// <i>Code: AccessDenied</i>
/// </p>
/// </li>
/// <li>
/// <p>
/// <i>Cause: You are not the owner of the specified bucket, or you do
/// not have the s3:PutAnalyticsConfiguration bucket permission to set the
/// configuration on the bucket.</i>
/// </p>
/// </li>
/// </ul>
/// </li>
/// </ul>
///
///
///
///
///
///
/// <p class="title">
/// <b>Related Resources</b>
/// </p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketAnalyticsConfiguration.html">GetBucketAnalyticsConfiguration</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketAnalyticsConfiguration.html">DeleteBucketAnalyticsConfiguration</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListBucketAnalyticsConfigurations.html">ListBucketAnalyticsConfigurations</a>
/// </p>
/// </li>
/// </ul>
async fn put_bucket_analytics_configuration(
&self,
_input: PutBucketAnalyticsConfigurationInput,
) -> S3Result<PutBucketAnalyticsConfigurationOutput> {
Err(s3_error!(NotImplemented, "PutBucketAnalyticsConfiguration is not implemented yet"))
}
/// <p>Sets the <code>cors</code> configuration for your bucket. If the configuration exists,
/// Amazon S3 replaces it.</p>
/// <p>To use this operation, you must be allowed to perform the <code>s3:PutBucketCORS</code>
/// action. By default, the bucket owner has this permission and can grant it to others.</p>
/// <p>You set this configuration on a bucket so that the bucket can service cross-origin
/// requests. For example, you might want to enable a request whose origin is
/// <code>http://www.example.com</code> to access your Amazon S3 bucket at
/// <code>my.example.bucket.com</code> by using the browser's <code>XMLHttpRequest</code>
/// capability.</p>
/// <p>To enable cross-origin resource sharing (CORS) on a bucket, you add the
/// <code>cors</code> subresource to the bucket. The <code>cors</code> subresource is an XML
/// document in which you configure rules that identify origins and the HTTP methods that can
/// be executed on your bucket. The document is limited to 64 KB in size. </p>
/// <p>When Amazon S3 receives a cross-origin request (or a pre-flight OPTIONS request) against a
/// bucket, it evaluates the <code>cors</code> configuration on the bucket and uses the first
/// <code>CORSRule</code> rule that matches the incoming browser request to enable a
/// cross-origin request. For a rule to match, the following conditions must be met:</p>
/// <ul>
/// <li>
/// <p>The request's <code>Origin</code> header must match <code>AllowedOrigin</code>
/// elements.</p>
/// </li>
/// <li>
/// <p>The request method (for example, GET, PUT, HEAD, and so on) or the
/// <code>Access-Control-Request-Method</code> header in case of a pre-flight
/// <code>OPTIONS</code> request must be one of the <code>AllowedMethod</code>
/// elements. </p>
/// </li>
/// <li>
/// <p>Every header specified in the <code>Access-Control-Request-Headers</code> request
/// header of a pre-flight request must match an <code>AllowedHeader</code> element.
/// </p>
/// </li>
/// </ul>
/// <p> For more information about CORS, go to <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/cors.html">Enabling
/// Cross-Origin Resource Sharing</a> in the <i>Amazon S3 User Guide</i>.</p>
///
/// <p class="title">
/// <b>Related Resources</b>
/// </p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketCors.html">GetBucketCors</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketCors.html">DeleteBucketCors</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/RESTOPTIONSobject.html">RESTOPTIONSobject</a>
/// </p>
/// </li>
/// </ul>
async fn put_bucket_cors(&self, _input: PutBucketCorsInput) -> S3Result<PutBucketCorsOutput> {
Err(s3_error!(NotImplemented, "PutBucketCors is not implemented yet"))
}
/// <p>This action uses the <code>encryption</code> subresource to configure default
/// encryption and Amazon S3 Bucket Key for an existing bucket.</p>
/// <p>Default encryption for a bucket can use server-side encryption with Amazon S3-managed keys
/// (SSE-S3) or customer managed keys (SSE-KMS). If you specify default encryption
/// using SSE-KMS, you can also configure Amazon S3 Bucket Key. When the default encryption is SSE-KMS, if
/// you upload an object to the bucket and do not specify the KMS key to use for encryption, Amazon S3
/// uses the default Amazon Web Services managed KMS key for your account. For information about default
/// encryption, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/bucket-encryption.html">Amazon S3 default bucket encryption</a>
/// in the <i>Amazon S3 User Guide</i>. For more information about S3 Bucket Keys,
/// see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/bucket-key.html">Amazon S3 Bucket Keys</a> in the <i>Amazon S3 User Guide</i>.</p>
/// <important>
/// <p>This action requires Amazon Web Services Signature Version 4. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/sig-v4-authenticating-requests.html"> Authenticating Requests (Amazon Web Services Signature
/// Version 4)</a>. </p>
/// </important>
/// <p>To use this operation, you must have permissions to perform the
/// <code>s3:PutEncryptionConfiguration</code> action. The bucket owner has this permission
/// by default. The bucket owner can grant this permission to others. For more information
/// about permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources">Permissions Related to Bucket Subresource Operations</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-access-control.html">Managing Access Permissions to Your Amazon S3
/// Resources</a> in the Amazon S3 User Guide. </p>
///
/// <p class="title">
/// <b>Related Resources</b>
/// </p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketEncryption.html">GetBucketEncryption</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketEncryption.html">DeleteBucketEncryption</a>
/// </p>
/// </li>
/// </ul>
async fn put_bucket_encryption(&self, _input: PutBucketEncryptionInput) -> S3Result<PutBucketEncryptionOutput> {
Err(s3_error!(NotImplemented, "PutBucketEncryption is not implemented yet"))
}
/// <p>Puts a S3 Intelligent-Tiering configuration to the specified bucket.
/// You can have up to 1,000 S3 Intelligent-Tiering configurations per bucket.</p>
/// <p>The S3 Intelligent-Tiering storage class is designed to optimize storage costs by automatically moving data to the most cost-effective storage access tier, without performance impact or operational overhead. S3 Intelligent-Tiering delivers automatic cost savings in three low latency and high throughput access tiers. To get the lowest storage cost on data that can be accessed in minutes to hours, you can choose to activate additional archiving capabilities.</p>
/// <p>The S3 Intelligent-Tiering storage class is the ideal storage class for data with unknown, changing, or unpredictable access patterns, independent of object size or retention period. If the size of an object is less than 128 KB, it is not monitored and not eligible for auto-tiering. Smaller objects can be stored, but they are always charged at the Frequent Access tier rates in the S3 Intelligent-Tiering storage class.</p>
/// <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-class-intro.html#sc-dynamic-data-access">Storage class for automatically optimizing frequently and infrequently accessed objects</a>.</p>
/// <p>Operations related to
/// <code>PutBucketIntelligentTieringConfiguration</code> include: </p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketIntelligentTieringConfiguration.html">DeleteBucketIntelligentTieringConfiguration</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketIntelligentTieringConfiguration.html">GetBucketIntelligentTieringConfiguration</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListBucketIntelligentTieringConfigurations.html">ListBucketIntelligentTieringConfigurations</a>
/// </p>
/// </li>
/// </ul>
/// <note>
/// <p>You only need S3 Intelligent-Tiering enabled on a bucket if you want to automatically
/// move objects stored in the S3 Intelligent-Tiering storage class to the
/// Archive Access or Deep Archive Access tier.</p>
/// </note>
///
/// <p class="title">
/// <b>Special Errors</b>
/// </p>
/// <ul>
/// <li>
/// <p class="title">
/// <b>HTTP 400 Bad Request Error</b>
/// </p>
/// <ul>
/// <li>
/// <p>
/// <i>Code:</i> InvalidArgument</p>
/// </li>
/// <li>
/// <p>
/// <i>Cause:</i> Invalid Argument</p>
/// </li>
/// </ul>
/// </li>
/// <li>
/// <p class="title">
/// <b>HTTP 400 Bad Request Error</b>
/// </p>
/// <ul>
/// <li>
/// <p>
/// <i>Code:</i> TooManyConfigurations</p>
/// </li>
/// <li>
/// <p>
/// <i>Cause:</i> You are attempting to create a new configuration
/// but have already reached the 1,000-configuration limit. </p>
/// </li>
/// </ul>
/// </li>
/// <li>
/// <p class="title">
/// <b>HTTP 403 Forbidden Error</b>
/// </p>
/// <ul>
/// <li>
/// <p>
/// <i>Code:</i> AccessDenied</p>
/// </li>
/// <li>
/// <p>
/// <i>Cause:</i> You are not the owner of the specified bucket,
/// or you do not have the <code>s3:PutIntelligentTieringConfiguration</code> bucket
/// permission to set the configuration on the bucket. </p>
/// </li>
/// </ul>
/// </li>
/// </ul>
async fn put_bucket_intelligent_tiering_configuration(
&self,
_input: PutBucketIntelligentTieringConfigurationInput,
) -> S3Result<PutBucketIntelligentTieringConfigurationOutput> {
Err(s3_error!(
NotImplemented,
"PutBucketIntelligentTieringConfiguration is not implemented yet"
))
}
/// <p>This implementation of the <code>PUT</code> action adds an inventory configuration
/// (identified by the inventory ID) to the bucket. You can have up to 1,000 inventory
/// configurations per bucket. </p>
/// <p>Amazon S3 inventory generates inventories of the objects in the bucket on a daily or weekly
/// basis, and the results are published to a flat file. The bucket that is inventoried is
/// called the <i>source</i> bucket, and the bucket where the inventory flat file
/// is stored is called the <i>destination</i> bucket. The
/// <i>destination</i> bucket must be in the same Amazon Web Services Region as the
/// <i>source</i> bucket. </p>
/// <p>When you configure an inventory for a <i>source</i> bucket, you specify
/// the <i>destination</i> bucket where you want the inventory to be stored, and
/// whether to generate the inventory daily or weekly. You can also configure what object
/// metadata to include and whether to inventory all object versions or only current versions.
/// For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html">Amazon S3
/// Inventory</a> in the Amazon S3 User Guide.</p>
/// <important>
/// <p>You must create a bucket policy on the <i>destination</i> bucket to
/// grant permissions to Amazon S3 to write objects to the bucket in the defined location. For an
/// example policy, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/example-bucket-policies.html#example-bucket-policies-use-case-9">
/// Granting Permissions for Amazon S3 Inventory and Storage Class Analysis</a>.</p>
/// </important>
/// <p>To use this operation, you must have permissions to perform the
/// <code>s3:PutInventoryConfiguration</code> action. The bucket owner has this permission
/// by default and can grant this permission to others. For more information about permissions,
/// see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources">Permissions Related to Bucket Subresource Operations</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-access-control.html">Managing Access Permissions to Your Amazon S3
/// Resources</a> in the Amazon S3 User Guide.</p>
///
/// <p class="title">
/// <b>Special Errors</b>
/// </p>
/// <ul>
/// <li>
/// <p class="title">
/// <b>HTTP 400 Bad Request Error</b>
/// </p>
/// <ul>
/// <li>
/// <p>
/// <i>Code:</i> InvalidArgument</p>
/// </li>
/// <li>
/// <p>
/// <i>Cause:</i> Invalid Argument</p>
/// </li>
/// </ul>
/// </li>
/// <li>
/// <p class="title">
/// <b>HTTP 400 Bad Request Error</b>
/// </p>
/// <ul>
/// <li>
/// <p>
/// <i>Code:</i> TooManyConfigurations</p>
/// </li>
/// <li>
/// <p>
/// <i>Cause:</i> You are attempting to create a new configuration
/// but have already reached the 1,000-configuration limit. </p>
/// </li>
/// </ul>
/// </li>
/// <li>
/// <p class="title">
/// <b>HTTP 403 Forbidden Error</b>
/// </p>
/// <ul>
/// <li>
/// <p>
/// <i>Code:</i> AccessDenied</p>
/// </li>
/// <li>
/// <p>
/// <i>Cause:</i> You are not the owner of the specified bucket,
/// or you do not have the <code>s3:PutInventoryConfiguration</code> bucket
/// permission to set the configuration on the bucket. </p>
/// </li>
/// </ul>
/// </li>
/// </ul>
///
/// <p class="title">
/// <b>Related Resources</b>
/// </p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketInventoryConfiguration.html">GetBucketInventoryConfiguration</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketInventoryConfiguration.html">DeleteBucketInventoryConfiguration</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListBucketInventoryConfigurations.html">ListBucketInventoryConfigurations</a>
/// </p>
/// </li>
/// </ul>
async fn put_bucket_inventory_configuration(
&self,
_input: PutBucketInventoryConfigurationInput,
) -> S3Result<PutBucketInventoryConfigurationOutput> {
Err(s3_error!(NotImplemented, "PutBucketInventoryConfiguration is not implemented yet"))
}
/// <p>Creates a new lifecycle configuration for the bucket or replaces an existing lifecycle
/// configuration. Keep in mind that this will overwrite an existing lifecycle configuration, so if
/// you want to retain any configuration details, they must be included in the new lifecycle
/// configuration. For information about lifecycle configuration, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-lifecycle-mgmt.html">Managing your storage
/// lifecycle</a>.</p>
///
/// <note>
/// <p>Bucket lifecycle configuration now supports specifying a lifecycle rule using an
/// object key name prefix, one or more object tags, or a combination of both. Accordingly,
/// this section describes the latest API. The previous version of the API supported
/// filtering based only on an object key name prefix, which is supported for backward
/// compatibility. For the related API description, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketLifecycle.html">PutBucketLifecycle</a>.</p>
/// </note>
///
///
///
/// <p>
/// <b>Rules</b>
/// </p>
/// <p>You specify the lifecycle configuration in your request body. The lifecycle
/// configuration is specified as XML consisting of one or more rules. An Amazon S3 Lifecycle
/// configuration can have up to 1,000 rules. This limit is not adjustable. Each rule consists
/// of the following:</p>
///
/// <ul>
/// <li>
/// <p>Filter identifying a subset of objects to which the rule applies. The filter can
/// be based on a key name prefix, object tags, or a combination of both.</p>
/// </li>
/// <li>
/// <p>Status whether the rule is in effect.</p>
/// </li>
/// <li>
/// <p>One or more lifecycle transition and expiration actions that you want Amazon S3 to
/// perform on the objects identified by the filter. If the state of your bucket is
/// versioning-enabled or versioning-suspended, you can have many versions of the same
/// object (one current version and zero or more noncurrent versions). Amazon S3 provides
/// predefined actions that you can specify for current and noncurrent object
/// versions.</p>
/// </li>
/// </ul>
///
/// <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lifecycle-mgmt.html">Object
/// Lifecycle Management</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/intro-lifecycle-rules.html">Lifecycle Configuration Elements</a>.</p>
///
///
/// <p>
/// <b>Permissions</b>
/// </p>
///
///
/// <p>By default, all Amazon S3 resources are private, including buckets, objects, and related
/// subresources (for example, lifecycle configuration and website configuration). Only the
/// resource owner (that is, the Amazon Web Services account that created it) can access the resource. The
/// resource owner can optionally grant access permissions to others by writing an access
/// policy. For this operation, a user must get the <code>s3:PutLifecycleConfiguration</code>
/// permission.</p>
///
/// <p>You can also explicitly deny permissions. Explicit deny also supersedes any other
/// permissions. If you want to block users or accounts from removing or deleting objects from
/// your bucket, you must deny them permissions for the following actions:</p>
///
/// <ul>
/// <li>
/// <p>
/// <code>s3:DeleteObject</code>
/// </p>
/// </li>
/// <li>
/// <p>
/// <code>s3:DeleteObjectVersion</code>
/// </p>
/// </li>
/// <li>
/// <p>
/// <code>s3:PutLifecycleConfiguration</code>
/// </p>
/// </li>
/// </ul>
///
///
/// <p>For more information about permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-access-control.html">Managing Access Permissions to Your Amazon S3
/// Resources</a>.</p>
///
/// <p>The following are related to <code>PutBucketLifecycleConfiguration</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/lifecycle-configuration-examples.html">Examples of
/// Lifecycle Configuration</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketLifecycleConfiguration.html">GetBucketLifecycleConfiguration</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketLifecycle.html">DeleteBucketLifecycle</a>
/// </p>
/// </li>
/// </ul>
async fn put_bucket_lifecycle_configuration(
&self,
_input: PutBucketLifecycleConfigurationInput,
) -> S3Result<PutBucketLifecycleConfigurationOutput> {
Err(s3_error!(NotImplemented, "PutBucketLifecycleConfiguration is not implemented yet"))
}
/// <p>Set the logging parameters for a bucket and to specify permissions for who can view and
/// modify the logging parameters. All logs are saved to buckets in the same Amazon Web Services Region as the
/// source bucket. To set the logging status of a bucket, you must be the bucket owner.</p>
///
/// <p>The bucket owner is automatically granted FULL_CONTROL to all logs. You use the <code>Grantee</code> request element to grant access to other people. The
/// <code>Permissions</code> request element specifies the kind of access the grantee has to
/// the logs.</p>
/// <important>
/// <p>If the target bucket for log delivery uses the bucket owner enforced
/// setting for S3 Object Ownership, you can't use the <code>Grantee</code> request element
/// to grant access to others. Permissions can only be granted using policies. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/enable-server-access-logging.html#grant-log-delivery-permissions-general">Permissions for server access log delivery</a> in the
/// <i>Amazon S3 User Guide</i>.</p>
/// </important>
///
/// <p>
/// <b>Grantee Values</b>
/// </p>
/// <p>You can specify the person (grantee) to whom you're assigning access rights (using
/// request elements) in the following ways:</p>
///
/// <ul>
/// <li>
/// <p>By the person's ID:</p>
/// <p>
/// <code><Grantee xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
/// xsi:type="CanonicalUser"><ID><>ID<></ID><DisplayName><>GranteesEmail<></DisplayName>
/// </Grantee></code>
/// </p>
/// <p>DisplayName is optional and ignored in the request.</p>
/// </li>
/// <li>
/// <p>By Email address:</p>
/// <p>
/// <code> <Grantee xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
/// xsi:type="AmazonCustomerByEmail"><EmailAddress><>Grantees@email.com<></EmailAddress></Grantee></code>
/// </p>
/// <p>The grantee is resolved to the CanonicalUser and, in a response to a GET Object
/// acl request, appears as the CanonicalUser.</p>
/// </li>
/// <li>
/// <p>By URI:</p>
/// <p>
/// <code><Grantee xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
/// xsi:type="Group"><URI><>http://acs.amazonaws.com/groups/global/AuthenticatedUsers<></URI></Grantee></code>
/// </p>
/// </li>
/// </ul>
///
///
/// <p>To enable logging, you use LoggingEnabled and its children request elements. To disable
/// logging, you use an empty BucketLoggingStatus request element:</p>
///
/// <p>
/// <code><BucketLoggingStatus xmlns="http://doc.s3.amazonaws.com/2006-03-01"
/// /></code>
/// </p>
///
/// <p>For more information about server access logging, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/ServerLogs.html">Server Access Logging</a> in the <i>Amazon S3 User Guide</i>. </p>
///
/// <p>For more information about creating a bucket, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucket.html">CreateBucket</a>. For more
/// information about returning the logging status of a bucket, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketLogging.html">GetBucketLogging</a>.</p>
///
/// <p>The following operations are related to <code>PutBucketLogging</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObject.html">PutObject</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucket.html">DeleteBucket</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucket.html">CreateBucket</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketLogging.html">GetBucketLogging</a>
/// </p>
/// </li>
/// </ul>
async fn put_bucket_logging(&self, _input: PutBucketLoggingInput) -> S3Result<PutBucketLoggingOutput> {
Err(s3_error!(NotImplemented, "PutBucketLogging is not implemented yet"))
}
/// <p>Sets a metrics configuration (specified by the metrics configuration ID) for the bucket.
/// You can have up to 1,000 metrics configurations per bucket. If you're updating an existing
/// metrics configuration, note that this is a full replacement of the existing metrics
/// configuration. If you don't include the elements you want to keep, they are erased.</p>
///
/// <p>To use this operation, you must have permissions to perform the
/// <code>s3:PutMetricsConfiguration</code> action. The bucket owner has this permission by
/// default. The bucket owner can grant this permission to others. For more information about
/// permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources">Permissions Related to Bucket Subresource Operations</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-access-control.html">Managing Access Permissions to Your Amazon S3
/// Resources</a>.</p>
///
/// <p>For information about CloudWatch request metrics for Amazon S3, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/cloudwatch-monitoring.html">Monitoring Metrics with Amazon
/// CloudWatch</a>.</p>
///
/// <p>The following operations are related to
/// <code>PutBucketMetricsConfiguration</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketMetricsConfiguration.html">DeleteBucketMetricsConfiguration</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketMetricsConfiguration.html">GetBucketMetricsConfiguration</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListBucketMetricsConfigurations.html">ListBucketMetricsConfigurations</a>
/// </p>
/// </li>
/// </ul>
///
/// <p>
/// <code>GetBucketLifecycle</code> has the following special error:</p>
/// <ul>
/// <li>
/// <p>Error code: <code>TooManyConfigurations</code>
/// </p>
/// <ul>
/// <li>
/// <p>Description: You are attempting to create a new configuration but have
/// already reached the 1,000-configuration limit.</p>
/// </li>
/// <li>
/// <p>HTTP Status Code: HTTP 400 Bad Request</p>
/// </li>
/// </ul>
/// </li>
/// </ul>
async fn put_bucket_metrics_configuration(
&self,
_input: PutBucketMetricsConfigurationInput,
) -> S3Result<PutBucketMetricsConfigurationOutput> {
Err(s3_error!(NotImplemented, "PutBucketMetricsConfiguration is not implemented yet"))
}
/// <p>Enables notifications of specified events for a bucket. For more information about event
/// notifications, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/NotificationHowTo.html">Configuring Event
/// Notifications</a>.</p>
///
/// <p>Using this API, you can replace an existing notification configuration. The
/// configuration is an XML file that defines the event types that you want Amazon S3 to publish and
/// the destination where you want Amazon S3 to publish an event notification when it detects an
/// event of the specified type.</p>
///
/// <p>By default, your bucket has no event notifications configured. That is, the notification
/// configuration will be an empty <code>NotificationConfiguration</code>.</p>
///
/// <p>
/// <code><NotificationConfiguration></code>
/// </p>
/// <p>
/// <code></NotificationConfiguration></code>
/// </p>
/// <p>This action replaces the existing notification configuration with the configuration
/// you include in the request body.</p>
///
/// <p>After Amazon S3 receives this request, it first verifies that any Amazon Simple Notification
/// Service (Amazon SNS) or Amazon Simple Queue Service (Amazon SQS) destination exists, and
/// that the bucket owner has permission to publish to it by sending a test notification. In
/// the case of Lambda destinations, Amazon S3 verifies that the Lambda function permissions
/// grant Amazon S3 permission to invoke the function from the Amazon S3 bucket. For more information,
/// see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/NotificationHowTo.html">Configuring Notifications for Amazon S3
/// Events</a>.</p>
///
/// <p>You can disable notifications by adding the empty NotificationConfiguration
/// element.</p>
/// <p>For more information about the number of event notification configurations that you can create per bucket, see
/// <a href="https://docs.aws.amazon.com/general/latest/gr/s3.html#limits_s3">Amazon S3 service quotas</a> in <i>Amazon Web Services General Reference</i>.</p>
/// <p>By default, only the bucket owner can configure notifications on a bucket. However,
/// bucket owners can use a bucket policy to grant permission to other users to set this
/// configuration with <code>s3:PutBucketNotification</code> permission.</p>
///
/// <note>
/// <p>The PUT notification is an atomic operation. For example, suppose your notification
/// configuration includes SNS topic, SQS queue, and Lambda function configurations. When
/// you send a PUT request with this configuration, Amazon S3 sends test messages to your SNS
/// topic. If the message fails, the entire PUT action will fail, and Amazon S3 will not add
/// the configuration to your bucket.</p>
/// </note>
///
/// <p>
/// <b>Responses</b>
/// </p>
/// <p>If the configuration in the request body includes only one
/// <code>TopicConfiguration</code> specifying only the
/// <code>s3:ReducedRedundancyLostObject</code> event type, the response will also include
/// the <code>x-amz-sns-test-message-id</code> header containing the message ID of the test
/// notification sent to the topic.</p>
///
/// <p>The following action is related to
/// <code>PutBucketNotificationConfiguration</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketNotificationConfiguration.html">GetBucketNotificationConfiguration</a>
/// </p>
/// </li>
/// </ul>
async fn put_bucket_notification_configuration(
&self,
_input: PutBucketNotificationConfigurationInput,
) -> S3Result<PutBucketNotificationConfigurationOutput> {
Err(s3_error!(NotImplemented, "PutBucketNotificationConfiguration is not implemented yet"))
}
/// <p>Creates or modifies <code>OwnershipControls</code> for an Amazon S3 bucket. To use this
/// operation, you must have the <code>s3:PutBucketOwnershipControls</code> permission. For
/// more information about Amazon S3 permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/user-guide/using-with-s3-actions.html">Specifying permissions in a policy</a>. </p>
/// <p>For information about Amazon S3 Object Ownership, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/user-guide/about-object-ownership.html">Using object ownership</a>. </p>
/// <p>The following operations are related to <code>PutBucketOwnershipControls</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a>GetBucketOwnershipControls</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a>DeleteBucketOwnershipControls</a>
/// </p>
/// </li>
/// </ul>
async fn put_bucket_ownership_controls(
&self,
_input: PutBucketOwnershipControlsInput,
) -> S3Result<PutBucketOwnershipControlsOutput> {
Err(s3_error!(NotImplemented, "PutBucketOwnershipControls is not implemented yet"))
}
/// <p>Applies an Amazon S3 bucket policy to an Amazon S3 bucket. If you are using an identity other than
/// the root user of the Amazon Web Services account that owns the bucket, the calling identity must have the
/// <code>PutBucketPolicy</code> permissions on the specified bucket and belong to the
/// bucket owner's account in order to use this operation.</p>
///
/// <p>If you don't have <code>PutBucketPolicy</code> permissions, Amazon S3 returns a <code>403
/// Access Denied</code> error. If you have the correct permissions, but you're not using an
/// identity that belongs to the bucket owner's account, Amazon S3 returns a <code>405 Method Not
/// Allowed</code> error.</p>
///
/// <important>
/// <p> As a security precaution, the root user of the Amazon Web Services account that owns a bucket can
/// always use this operation, even if the policy explicitly denies the root user the
/// ability to perform this action. </p>
/// </important>
/// <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/example-bucket-policies.html">Bucket policy examples</a>.</p>
///
/// <p>The following operations are related to <code>PutBucketPolicy</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucket.html">CreateBucket</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucket.html">DeleteBucket</a>
/// </p>
/// </li>
/// </ul>
async fn put_bucket_policy(&self, _input: PutBucketPolicyInput) -> S3Result<PutBucketPolicyOutput> {
Err(s3_error!(NotImplemented, "PutBucketPolicy is not implemented yet"))
}
/// <p> Creates a replication configuration or replaces an existing one. For more information,
/// see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/replication.html">Replication</a> in the <i>Amazon S3 User Guide</i>. </p>
///
/// <p>Specify the replication configuration in the request body. In the replication
/// configuration, you provide the name of the destination bucket or buckets where you want
/// Amazon S3 to replicate objects, the IAM role that Amazon S3 can assume to replicate objects on your
/// behalf, and other relevant information.</p>
///
///
/// <p>A replication configuration must include at least one rule, and can contain a maximum of
/// 1,000. Each rule identifies a subset of objects to replicate by filtering the objects in
/// the source bucket. To choose additional subsets of objects to replicate, add a rule for
/// each subset.</p>
///
/// <p>To specify a subset of the objects in the source bucket to apply a replication rule to,
/// add the Filter element as a child of the Rule element. You can filter objects based on an
/// object key prefix, one or more object tags, or both. When you add the Filter element in the
/// configuration, you must also add the following elements:
/// <code>DeleteMarkerReplication</code>, <code>Status</code>, and
/// <code>Priority</code>.</p>
/// <note>
/// <p>If you are using an earlier version of the replication configuration, Amazon S3 handles
/// replication of delete markers differently. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/replication-add-config.html#replication-backward-compat-considerations">Backward Compatibility</a>.</p>
/// </note>
/// <p>For information about enabling versioning on a bucket, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/Versioning.html">Using Versioning</a>.</p>
///
/// <p>
/// <b>Handling Replication of Encrypted Objects</b>
/// </p>
/// <p>By default, Amazon S3 doesn't replicate objects that are stored at rest using server-side
/// encryption with KMS keys. To replicate Amazon Web Services KMS-encrypted objects, add the
/// following: <code>SourceSelectionCriteria</code>, <code>SseKmsEncryptedObjects</code>,
/// <code>Status</code>, <code>EncryptionConfiguration</code>, and
/// <code>ReplicaKmsKeyID</code>. For information about replication configuration, see
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/replication-config-for-kms-objects.html">Replicating Objects
/// Created with SSE Using KMS keys</a>.</p>
///
/// <p>For information on <code>PutBucketReplication</code> errors, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html#ReplicationErrorCodeList">List of
/// replication-related error codes</a>
/// </p>
///
/// <p>
/// <b>Permissions</b>
/// </p>
/// <p>To create a <code>PutBucketReplication</code> request, you must have <code>s3:PutReplicationConfiguration</code>
/// permissions for the bucket.
/// </p>
/// <p>By default, a resource owner, in this case the Amazon Web Services account that created the bucket, can
/// perform this operation. The resource owner can also grant others permissions to perform the
/// operation. For more information about permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/using-with-s3-actions.html">Specifying Permissions in a Policy</a>
/// and <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-access-control.html">Managing Access Permissions to Your
/// Amazon S3 Resources</a>.</p>
/// <note>
/// <p>To perform this operation, the user or role performing the action must have the
/// <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use_passrole.html">iam:PassRole</a> permission.</p>
/// </note>
///
/// <p>The following operations are related to <code>PutBucketReplication</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketReplication.html">GetBucketReplication</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketReplication.html">DeleteBucketReplication</a>
/// </p>
/// </li>
/// </ul>
async fn put_bucket_replication(&self, _input: PutBucketReplicationInput) -> S3Result<PutBucketReplicationOutput> {
Err(s3_error!(NotImplemented, "PutBucketReplication is not implemented yet"))
}
/// <p>Sets the request payment configuration for a bucket. By default, the bucket owner pays
/// for downloads from the bucket. This configuration parameter enables the bucket owner (only)
/// to specify that the person requesting the download will be charged for the download. For
/// more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/RequesterPaysBuckets.html">Requester Pays
/// Buckets</a>.</p>
///
/// <p>The following operations are related to <code>PutBucketRequestPayment</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucket.html">CreateBucket</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketRequestPayment.html">GetBucketRequestPayment</a>
/// </p>
/// </li>
/// </ul>
async fn put_bucket_request_payment(&self, _input: PutBucketRequestPaymentInput) -> S3Result<PutBucketRequestPaymentOutput> {
Err(s3_error!(NotImplemented, "PutBucketRequestPayment is not implemented yet"))
}
/// <p>Sets the tags for a bucket.</p>
/// <p>Use tags to organize your Amazon Web Services bill to reflect your own cost structure. To do this, sign
/// up to get your Amazon Web Services account bill with tag key values included. Then, to see the cost of
/// combined resources, organize your billing information according to resources with the same
/// tag key values. For example, you can tag several resources with a specific application
/// name, and then organize your billing information to see the total cost of that application
/// across several services. For more information, see <a href="https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html">Cost Allocation
/// and Tagging</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/CostAllocTagging.html">Using Cost Allocation in Amazon S3 Bucket
/// Tags</a>.</p>
///
/// <note>
/// <p>
/// When this operation sets the tags for a bucket, it will overwrite any current tags the
/// bucket already has. You cannot use this operation to add tags to an existing list of tags.</p>
/// </note>
/// <p>To use this operation, you must have permissions to perform the
/// <code>s3:PutBucketTagging</code> action. The bucket owner has this permission by default
/// and can grant this permission to others. For more information about permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources">Permissions Related to Bucket Subresource Operations</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-access-control.html">Managing Access Permissions to Your Amazon S3
/// Resources</a>.</p>
///
/// <p>
/// <code>PutBucketTagging</code> has the following special errors:</p>
/// <ul>
/// <li>
/// <p>Error code: <code>InvalidTagError</code>
/// </p>
/// <ul>
/// <li>
/// <p>Description: The tag provided was not a valid tag. This error can occur if
/// the tag did not pass input validation. For information about tag restrictions,
/// see <a href="https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/allocation-tag-restrictions.html">User-Defined Tag Restrictions</a> and <a href="https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/aws-tag-restrictions.html">Amazon Web Services-Generated Cost Allocation Tag Restrictions</a>.</p>
/// </li>
/// </ul>
/// </li>
/// <li>
/// <p>Error code: <code>MalformedXMLError</code>
/// </p>
/// <ul>
/// <li>
/// <p>Description: The XML provided does not match the schema.</p>
/// </li>
/// </ul>
/// </li>
/// <li>
/// <p>Error code: <code>OperationAbortedError </code>
/// </p>
/// <ul>
/// <li>
/// <p>Description: A conflicting conditional action is currently in progress
/// against this resource. Please try again.</p>
/// </li>
/// </ul>
/// </li>
/// <li>
/// <p>Error code: <code>InternalError</code>
/// </p>
/// <ul>
/// <li>
/// <p>Description: The service was unable to apply the provided tag to the
/// bucket.</p>
/// </li>
/// </ul>
/// </li>
/// </ul>
///
///
/// <p>The following operations are related to <code>PutBucketTagging</code>:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketTagging.html">GetBucketTagging</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketTagging.html">DeleteBucketTagging</a>
/// </p>
/// </li>
/// </ul>
async fn put_bucket_tagging(&self, _input: PutBucketTaggingInput) -> S3Result<PutBucketTaggingOutput> {
Err(s3_error!(NotImplemented, "PutBucketTagging is not implemented yet"))
}
/// <p>Sets the versioning state of an existing bucket.</p>
/// <p>You can set the versioning state with one of the following values:</p>
///
/// <p>
/// <b>Enabled</b>—Enables versioning for the objects in the
/// bucket. All objects added to the bucket receive a unique version ID.</p>
///
/// <p>
/// <b>Suspended</b>—Disables versioning for the objects in the
/// bucket. All objects added to the bucket receive the version ID null.</p>
///
/// <p>If the versioning state has never been set on a bucket, it has no versioning state; a
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketVersioning.html">GetBucketVersioning</a> request does not return a versioning state value.</p>
///
/// <p>In order to enable MFA Delete, you must be the bucket owner. If you are the bucket owner
/// and want to enable MFA Delete in the bucket versioning configuration, you must
/// include the <code>x-amz-mfa request</code> header and the
/// <code>Status</code> and the <code>MfaDelete</code> request elements in a request to set
/// the versioning state of the bucket.</p>
///
/// <important>
/// <p>If you have an object expiration lifecycle policy in your non-versioned bucket and
/// you want to maintain the same permanent delete behavior when you enable versioning, you
/// must add a noncurrent expiration policy. The noncurrent expiration lifecycle policy will
/// manage the deletes of the noncurrent object versions in the version-enabled bucket. (A
/// version-enabled bucket maintains one current and zero or more noncurrent object
/// versions.) For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lifecycle-mgmt.html#lifecycle-and-other-bucket-config">Lifecycle and Versioning</a>.</p>
/// </important>
///
/// <p class="title">
/// <b>Related Resources</b>
/// </p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucket.html">CreateBucket</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucket.html">DeleteBucket</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketVersioning.html">GetBucketVersioning</a>
/// </p>
/// </li>
/// </ul>
async fn put_bucket_versioning(&self, _input: PutBucketVersioningInput) -> S3Result<PutBucketVersioningOutput> {
Err(s3_error!(NotImplemented, "PutBucketVersioning is not implemented yet"))
}
/// <p>Sets the configuration of the website that is specified in the <code>website</code>
/// subresource. To configure a bucket as a website, you can add this subresource on the bucket
/// with website configuration information such as the file name of the index document and any
/// redirect rules. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/WebsiteHosting.html">Hosting Websites on Amazon S3</a>.</p>
///
/// <p>This PUT action requires the <code>S3:PutBucketWebsite</code> permission. By default,
/// only the bucket owner can configure the website attached to a bucket; however, bucket
/// owners can allow other users to set the website configuration by writing a bucket policy
/// that grants them the <code>S3:PutBucketWebsite</code> permission.</p>
///
/// <p>To redirect all website requests sent to the bucket's website endpoint, you add a
/// website configuration with the following elements. Because all requests are sent to another
/// website, you don't need to provide index document name for the bucket.</p>
/// <ul>
/// <li>
/// <p>
/// <code>WebsiteConfiguration</code>
/// </p>
/// </li>
/// <li>
/// <p>
/// <code>RedirectAllRequestsTo</code>
/// </p>
/// </li>
/// <li>
/// <p>
/// <code>HostName</code>
/// </p>
/// </li>
/// <li>
/// <p>
/// <code>Protocol</code>
/// </p>
/// </li>
/// </ul>
///
/// <p>If you want granular control over redirects, you can use the following elements to add
/// routing rules that describe conditions for redirecting requests and information about the
/// redirect destination. In this case, the website configuration must provide an index
/// document for the bucket, because some requests might not be redirected. </p>
/// <ul>
/// <li>
/// <p>
/// <code>WebsiteConfiguration</code>
/// </p>
/// </li>
/// <li>
/// <p>
/// <code>IndexDocument</code>
/// </p>
/// </li>
/// <li>
/// <p>
/// <code>Suffix</code>
/// </p>
/// </li>
/// <li>
/// <p>
/// <code>ErrorDocument</code>
/// </p>
/// </li>
/// <li>
/// <p>
/// <code>Key</code>
/// </p>
/// </li>
/// <li>
/// <p>
/// <code>RoutingRules</code>
/// </p>
/// </li>
/// <li>
/// <p>
/// <code>RoutingRule</code>
/// </p>
/// </li>
/// <li>
/// <p>
/// <code>Condition</code>
/// </p>
/// </li>
/// <li>
/// <p>
/// <code>HttpErrorCodeReturnedEquals</code>
/// </p>
/// </li>
/// <li>
/// <p>
/// <code>KeyPrefixEquals</code>
/// </p>
/// </li>
/// <li>
/// <p>
/// <code>Redirect</code>
/// </p>
/// </li>
/// <li>
/// <p>
/// <code>Protocol</code>
/// </p>
/// </li>
/// <li>
/// <p>
/// <code>HostName</code>
/// </p>
/// </li>
/// <li>
/// <p>
/// <code>ReplaceKeyPrefixWith</code>
/// </p>
/// </li>
/// <li>
/// <p>
/// <code>ReplaceKeyWith</code>
/// </p>
/// </li>
/// <li>
/// <p>
/// <code>HttpRedirectCode</code>
/// </p>
/// </li>
/// </ul>
///
/// <p>Amazon S3 has a limitation of 50 routing rules per website configuration. If you require more
/// than 50 routing rules, you can use object redirect. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/how-to-page-redirect.html">Configuring an
/// Object Redirect</a> in the <i>Amazon S3 User Guide</i>.</p>
async fn put_bucket_website(&self, _input: PutBucketWebsiteInput) -> S3Result<PutBucketWebsiteOutput> {
Err(s3_error!(NotImplemented, "PutBucketWebsite is not implemented yet"))
}
/// <p>Adds an object to a bucket. You must have WRITE permissions on a bucket to add an object
/// to it.</p>
///
///
/// <p>Amazon S3 never adds partial objects; if you receive a success response, Amazon S3 added the
/// entire object to the bucket.</p>
///
/// <p>Amazon S3 is a distributed system. If it receives multiple write requests for the same object
/// simultaneously, it overwrites all but the last object written. Amazon S3 does not provide object
/// locking; if you need this, make sure to build it into your application layer or use
/// versioning instead.</p>
///
/// <p>To ensure that data is not corrupted traversing the network, use the
/// <code>Content-MD5</code> header. When you use this header, Amazon S3 checks the object
/// against the provided MD5 value and, if they do not match, returns an error. Additionally,
/// you can calculate the MD5 while putting an object to Amazon S3 and compare the returned ETag to
/// the calculated MD5 value.</p>
/// <note>
/// <ul>
/// <li>
/// <p>To successfully complete the <code>PutObject</code> request, you must have the
/// <code>s3:PutObject</code> in your IAM permissions.</p>
/// </li>
/// <li>
/// <p>To successfully change the objects acl of your <code>PutObject</code> request,
/// you must have the <code>s3:PutObjectAcl</code> in your IAM permissions.</p>
/// </li>
/// <li>
/// <p> The <code>Content-MD5</code> header is required for any request to upload an object
/// with a retention period configured using Amazon S3 Object Lock. For more information about
/// Amazon S3 Object Lock, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lock-overview.html">Amazon S3 Object Lock Overview</a>
/// in the <i>Amazon S3 User Guide</i>. </p>
/// </li>
/// </ul>
/// </note>
/// <p>
/// <b>Server-side Encryption</b>
/// </p>
/// <p>You can optionally request server-side encryption. With server-side encryption, Amazon S3 encrypts
/// your data as it writes it to disks in its data centers and decrypts the data
/// when you access it. You have the option to provide your own encryption key or use Amazon Web Services
/// managed encryption keys (SSE-S3 or SSE-KMS). For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingServerSideEncryption.html">Using Server-Side
/// Encryption</a>.</p>
/// <p>If you request server-side encryption using Amazon Web Services Key Management Service (SSE-KMS), you can enable
/// an S3 Bucket Key at the object-level. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/bucket-key.html">Amazon S3 Bucket Keys</a> in the
/// <i>Amazon S3 User Guide</i>.</p>
/// <p>
/// <b>Access Control List (ACL)-Specific Request
/// Headers</b>
/// </p>
/// <p>You can use headers to grant ACL- based permissions. By default, all objects are
/// private. Only the owner has full access control. When adding a new object, you can grant
/// permissions to individual Amazon Web Services accounts or to predefined groups defined by Amazon S3. These
/// permissions are then added to the ACL on the object. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html">Access Control List
/// (ACL) Overview</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-using-rest-api.html">Managing ACLs Using the REST
/// API</a>. </p>
/// <p>If the bucket that you're uploading objects to uses the bucket owner enforced setting
/// for S3 Object Ownership, ACLs are disabled and no longer affect permissions. Buckets that
/// use this setting only accept PUT requests that don't specify an ACL or PUT requests that
/// specify bucket owner full control ACLs, such as the <code>bucket-owner-full-control</code> canned
/// ACL or an equivalent form of this ACL expressed in the XML format. PUT requests that contain other
/// ACLs (for example, custom grants to certain Amazon Web Services accounts) fail and return a
/// <code>400</code> error with the error code
/// <code>AccessControlListNotSupported</code>.</p>
/// <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/about-object-ownership.html"> Controlling ownership of
/// objects and disabling ACLs</a> in the <i>Amazon S3 User Guide</i>.</p>
/// <note>
/// <p>If your bucket uses the bucket owner enforced setting for Object Ownership,
/// all objects written to the bucket by any account will be owned by the bucket owner.</p>
/// </note>
/// <p>
/// <b>Storage Class Options</b>
/// </p>
/// <p>By default, Amazon S3 uses the STANDARD Storage Class to store newly created objects. The
/// STANDARD storage class provides high durability and high availability. Depending on
/// performance needs, you can specify a different Storage Class. Amazon S3 on Outposts only uses
/// the OUTPOSTS Storage Class. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-class-intro.html">Storage Classes</a> in the
/// <i>Amazon S3 User Guide</i>.</p>
///
///
/// <p>
/// <b>Versioning</b>
/// </p>
/// <p>If you enable versioning for a bucket, Amazon S3 automatically generates a unique version ID
/// for the object being stored. Amazon S3 returns this ID in the response. When you enable
/// versioning for a bucket, if Amazon S3 receives multiple write requests for the same object
/// simultaneously, it stores all of the objects.</p>
/// <p>For more information about versioning, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/AddingObjectstoVersioningEnabledBuckets.html">Adding Objects to
/// Versioning Enabled Buckets</a>. For information about returning the versioning state
/// of a bucket, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketVersioning.html">GetBucketVersioning</a>. </p>
///
///
/// <p class="title">
/// <b>Related Resources</b>
/// </p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_CopyObject.html">CopyObject</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteObject.html">DeleteObject</a>
/// </p>
/// </li>
/// </ul>
async fn put_object(&self, _input: PutObjectInput) -> S3Result<PutObjectOutput> {
Err(s3_error!(NotImplemented, "PutObject is not implemented yet"))
}
/// <p>Uses the <code>acl</code> subresource to set the access control list (ACL) permissions
/// for a new or existing object in an S3 bucket. You must have <code>WRITE_ACP</code>
/// permission to set the ACL of an object. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html#permissions">What
/// permissions can I grant?</a> in the <i>Amazon S3 User Guide</i>.</p>
/// <p>This action is not supported by Amazon S3 on Outposts.</p>
/// <p>Depending on your application needs, you can choose to set
/// the ACL on an object using either the request body or the headers. For example, if you have
/// an existing application that updates a bucket ACL using the request body, you can continue
/// to use that approach. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html">Access Control List (ACL) Overview</a> in the <i>Amazon S3 User Guide</i>.</p>
/// <important>
/// <p>If your bucket uses the bucket owner enforced setting for S3 Object Ownership, ACLs are disabled and no longer affect permissions.
/// You must use policies to grant access to your bucket and the objects in it. Requests to set ACLs or update ACLs fail and
/// return the <code>AccessControlListNotSupported</code> error code. Requests to read ACLs are still supported.
/// For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/about-object-ownership.html">Controlling object ownership</a>
/// in the <i>Amazon S3 User Guide</i>.</p>
/// </important>
///
/// <p>
/// <b>Access Permissions</b>
/// </p>
/// <p>You can set access permissions using one of the following methods:</p>
/// <ul>
/// <li>
/// <p>Specify a canned ACL with the <code>x-amz-acl</code> request header. Amazon S3 supports
/// a set of predefined ACLs, known as canned ACLs. Each canned ACL has a predefined set
/// of grantees and permissions. Specify the canned ACL name as the value of
/// <code>x-amz-ac</code>l. If you use this header, you cannot use other access
/// control-specific headers in your request. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html#CannedACL">Canned ACL</a>.</p>
/// </li>
/// <li>
/// <p>Specify access permissions explicitly with the <code>x-amz-grant-read</code>,
/// <code>x-amz-grant-read-acp</code>, <code>x-amz-grant-write-acp</code>, and
/// <code>x-amz-grant-full-control</code> headers. When using these headers, you
/// specify explicit access permissions and grantees (Amazon Web Services accounts or Amazon S3 groups) who
/// will receive the permission. If you use these ACL-specific headers, you cannot use
/// <code>x-amz-acl</code> header to set a canned ACL. These parameters map to the set
/// of permissions that Amazon S3 supports in an ACL. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html">Access Control List (ACL)
/// Overview</a>.</p>
///
/// <p>You specify each grantee as a type=value pair, where the type is one of the
/// following:</p>
/// <ul>
/// <li>
/// <p>
/// <code>id</code> – if the value specified is the canonical user ID of an Amazon Web Services account</p>
/// </li>
/// <li>
/// <p>
/// <code>uri</code> – if you are granting permissions to a predefined
/// group</p>
/// </li>
/// <li>
/// <p>
/// <code>emailAddress</code> – if the value specified is the email address of
/// an Amazon Web Services account</p>
/// <note>
/// <p>Using email addresses to specify a grantee is only supported in the following Amazon Web Services Regions: </p>
/// <ul>
/// <li>
/// <p>US East (N. Virginia)</p>
/// </li>
/// <li>
/// <p>US West (N. California)</p>
/// </li>
/// <li>
/// <p> US West (Oregon)</p>
/// </li>
/// <li>
/// <p> Asia Pacific (Singapore)</p>
/// </li>
/// <li>
/// <p>Asia Pacific (Sydney)</p>
/// </li>
/// <li>
/// <p>Asia Pacific (Tokyo)</p>
/// </li>
/// <li>
/// <p>Europe (Ireland)</p>
/// </li>
/// <li>
/// <p>South America (São Paulo)</p>
/// </li>
/// </ul>
/// <p>For a list of all the Amazon S3 supported Regions and endpoints, see <a href="https://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region">Regions and Endpoints</a> in the Amazon Web Services General Reference.</p>
/// </note>
/// </li>
/// </ul>
/// <p>For example, the following <code>x-amz-grant-read</code> header grants list
/// objects permission to the two Amazon Web Services accounts identified by their email
/// addresses.</p>
/// <p>
/// <code>x-amz-grant-read: emailAddress="xyz@amazon.com",
/// emailAddress="abc@amazon.com" </code>
/// </p>
///
/// </li>
/// </ul>
/// <p>You can use either a canned ACL or specify access permissions explicitly. You cannot do
/// both.</p>
/// <p>
/// <b>Grantee Values</b>
/// </p>
/// <p>You can specify the person (grantee) to whom you're assigning access rights (using
/// request elements) in the following ways:</p>
/// <ul>
/// <li>
/// <p>By the person's ID:</p>
/// <p>
/// <code><Grantee xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
/// xsi:type="CanonicalUser"><ID><>ID<></ID><DisplayName><>GranteesEmail<></DisplayName>
/// </Grantee></code>
/// </p>
/// <p>DisplayName is optional and ignored in the request.</p>
/// </li>
/// <li>
/// <p>By URI:</p>
/// <p>
/// <code><Grantee xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
/// xsi:type="Group"><URI><>http://acs.amazonaws.com/groups/global/AuthenticatedUsers<></URI></Grantee></code>
/// </p>
/// </li>
/// <li>
/// <p>By Email address:</p>
/// <p>
/// <code><Grantee xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
/// xsi:type="AmazonCustomerByEmail"><EmailAddress><>Grantees@email.com<></EmailAddress>lt;/Grantee></code>
/// </p>
/// <p>The grantee is resolved to the CanonicalUser and, in a response to a GET Object
/// acl request, appears as the CanonicalUser.</p>
/// <note>
/// <p>Using email addresses to specify a grantee is only supported in the following Amazon Web Services Regions: </p>
/// <ul>
/// <li>
/// <p>US East (N. Virginia)</p>
/// </li>
/// <li>
/// <p>US West (N. California)</p>
/// </li>
/// <li>
/// <p> US West (Oregon)</p>
/// </li>
/// <li>
/// <p> Asia Pacific (Singapore)</p>
/// </li>
/// <li>
/// <p>Asia Pacific (Sydney)</p>
/// </li>
/// <li>
/// <p>Asia Pacific (Tokyo)</p>
/// </li>
/// <li>
/// <p>Europe (Ireland)</p>
/// </li>
/// <li>
/// <p>South America (São Paulo)</p>
/// </li>
/// </ul>
/// <p>For a list of all the Amazon S3 supported Regions and endpoints, see <a href="https://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region">Regions and Endpoints</a> in the Amazon Web Services General Reference.</p>
/// </note>
/// </li>
/// </ul>
/// <p>
/// <b>Versioning</b>
/// </p>
/// <p>The ACL of an object is set at the object version level. By default, PUT sets the ACL of
/// the current version of an object. To set the ACL of a different version, use the
/// <code>versionId</code> subresource.</p>
/// <p class="title">
/// <b>Related Resources</b>
/// </p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_CopyObject.html">CopyObject</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html">GetObject</a>
/// </p>
/// </li>
/// </ul>
async fn put_object_acl(&self, _input: PutObjectAclInput) -> S3Result<PutObjectAclOutput> {
Err(s3_error!(NotImplemented, "PutObjectAcl is not implemented yet"))
}
/// <p>Applies a legal hold configuration to the specified object. For more information, see
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lock.html">Locking
/// Objects</a>.</p>
/// <p>This action is not supported by Amazon S3 on Outposts.</p>
async fn put_object_legal_hold(&self, _input: PutObjectLegalHoldInput) -> S3Result<PutObjectLegalHoldOutput> {
Err(s3_error!(NotImplemented, "PutObjectLegalHold is not implemented yet"))
}
/// <p>Places an Object Lock configuration on the specified bucket. The rule specified in the
/// Object Lock configuration will be applied by default to every new object placed in the
/// specified bucket. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lock.html">Locking Objects</a>.
/// </p>
/// <note>
/// <ul>
/// <li>
/// <p>The <code>DefaultRetention</code> settings require both a mode and a
/// period.</p>
/// </li>
/// <li>
/// <p>The <code>DefaultRetention</code> period can be either <code>Days</code>
/// or <code>Years</code> but you must select one. You cannot specify <code>Days</code>
/// and <code>Years</code> at the same time.</p>
/// </li>
/// <li>
/// <p>You can only enable Object Lock for new buckets. If you want to turn on
/// Object Lock for an existing bucket, contact Amazon Web Services Support.</p>
/// </li>
/// </ul>
/// </note>
async fn put_object_lock_configuration(
&self,
_input: PutObjectLockConfigurationInput,
) -> S3Result<PutObjectLockConfigurationOutput> {
Err(s3_error!(NotImplemented, "PutObjectLockConfiguration is not implemented yet"))
}
/// <p>Places an Object Retention configuration on an object. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lock.html">Locking Objects</a>.
/// Users or accounts require the <code>s3:PutObjectRetention</code> permission in order to place
/// an Object Retention configuration on objects. Bypassing a Governance Retention configuration
/// requires the <code>s3:BypassGovernanceRetention</code> permission.
/// </p>
/// <p>This action is not supported by Amazon S3 on Outposts.</p>
async fn put_object_retention(&self, _input: PutObjectRetentionInput) -> S3Result<PutObjectRetentionOutput> {
Err(s3_error!(NotImplemented, "PutObjectRetention is not implemented yet"))
}
/// <p>Sets the supplied tag-set to an object that already exists in a bucket.</p>
/// <p>A tag is a key-value pair. You can associate tags with an object by sending a PUT
/// request against the tagging subresource that is associated with the object. You can
/// retrieve tags by sending a GET request. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObjectTagging.html">GetObjectTagging</a>.</p>
///
/// <p>For tagging-related restrictions related to characters and encodings, see <a href="https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/allocation-tag-restrictions.html">Tag
/// Restrictions</a>. Note that Amazon S3 limits the maximum number of tags to 10 tags per
/// object.</p>
///
/// <p>To use this operation, you must have permission to perform the
/// <code>s3:PutObjectTagging</code> action. By default, the bucket owner has this
/// permission and can grant this permission to others.</p>
///
/// <p>To put tags of any other version, use the <code>versionId</code> query parameter. You
/// also need permission for the <code>s3:PutObjectVersionTagging</code> action.</p>
///
/// <p>For information about the Amazon S3 object tagging feature, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/object-tagging.html">Object Tagging</a>.</p>
///
///
/// <p class="title">
/// <b>Special Errors</b>
/// </p>
/// <ul>
/// <li>
/// <ul>
/// <li>
/// <p>
/// <i>Code: InvalidTagError </i>
/// </p>
/// </li>
/// <li>
/// <p>
/// <i>Cause: The tag provided was not a valid tag. This error can occur
/// if the tag did not pass input validation. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/object-tagging.html">Object Tagging</a>.</i>
/// </p>
/// </li>
/// </ul>
/// </li>
/// <li>
/// <ul>
/// <li>
/// <p>
/// <i>Code: MalformedXMLError </i>
/// </p>
/// </li>
/// <li>
/// <p>
/// <i>Cause: The XML provided does not match the schema.</i>
/// </p>
/// </li>
/// </ul>
/// </li>
/// <li>
/// <ul>
/// <li>
/// <p>
/// <i>Code: OperationAbortedError </i>
/// </p>
/// </li>
/// <li>
/// <p>
/// <i>Cause: A conflicting conditional action is currently in
/// progress against this resource. Please try again.</i>
/// </p>
/// </li>
/// </ul>
/// </li>
/// <li>
/// <ul>
/// <li>
/// <p>
/// <i>Code: InternalError</i>
/// </p>
/// </li>
/// <li>
/// <p>
/// <i>Cause: The service was unable to apply the provided tag to the
/// object.</i>
/// </p>
/// </li>
/// </ul>
/// </li>
/// </ul>
///
///
///
///
///
///
/// <p class="title">
/// <b>Related Resources</b>
/// </p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObjectTagging.html">GetObjectTagging</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteObjectTagging.html">DeleteObjectTagging</a>
/// </p>
/// </li>
/// </ul>
async fn put_object_tagging(&self, _input: PutObjectTaggingInput) -> S3Result<PutObjectTaggingOutput> {
Err(s3_error!(NotImplemented, "PutObjectTagging is not implemented yet"))
}
/// <p>Creates or modifies the <code>PublicAccessBlock</code> configuration for an Amazon S3 bucket.
/// To use this operation, you must have the <code>s3:PutBucketPublicAccessBlock</code>
/// permission. For more information about Amazon S3 permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/using-with-s3-actions.html">Specifying Permissions in a
/// Policy</a>.</p>
///
/// <important>
/// <p>When Amazon S3 evaluates the <code>PublicAccessBlock</code> configuration for a bucket or
/// an object, it checks the <code>PublicAccessBlock</code> configuration for both the
/// bucket (or the bucket that contains the object) and the bucket owner's account. If the
/// <code>PublicAccessBlock</code> configurations are different between the bucket and
/// the account, Amazon S3 uses the most restrictive combination of the bucket-level and
/// account-level settings.</p>
/// </important>
///
///
/// <p>For more information about when Amazon S3 considers a bucket or an object public, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html#access-control-block-public-access-policy-status">The Meaning of "Public"</a>.</p>
///
///
///
/// <p class="title">
/// <b>Related Resources</b>
/// </p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetPublicAccessBlock.html">GetPublicAccessBlock</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeletePublicAccessBlock.html">DeletePublicAccessBlock</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketPolicyStatus.html">GetBucketPolicyStatus</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html">Using Amazon S3 Block
/// Public Access</a>
/// </p>
/// </li>
/// </ul>
async fn put_public_access_block(&self, _input: PutPublicAccessBlockInput) -> S3Result<PutPublicAccessBlockOutput> {
Err(s3_error!(NotImplemented, "PutPublicAccessBlock is not implemented yet"))
}
/// <p>Restores an archived copy of an object back into Amazon S3</p>
/// <p>This action is not supported by Amazon S3 on Outposts.</p>
/// <p>This action performs the following types of requests: </p>
/// <ul>
/// <li>
/// <p>
/// <code>select</code> - Perform a select query on an archived object</p>
/// </li>
/// <li>
/// <p>
/// <code>restore an archive</code> - Restore an archived object</p>
/// </li>
/// </ul>
/// <p>To use this operation, you must have permissions to perform the
/// <code>s3:RestoreObject</code> action. The bucket owner has this permission by default
/// and can grant this permission to others. For more information about permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources">Permissions Related to Bucket Subresource Operations</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-access-control.html">Managing Access Permissions to Your Amazon S3
/// Resources</a> in the <i>Amazon S3 User Guide</i>.</p>
/// <p>
/// <b>Querying Archives with Select Requests</b>
/// </p>
/// <p>You use a select type of request to perform SQL queries on archived objects. The
/// archived objects that are being queried by the select request must be formatted as
/// uncompressed comma-separated values (CSV) files. You can run queries and custom analytics
/// on your archived data without having to restore your data to a hotter Amazon S3 tier. For an
/// overview about select requests, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/querying-glacier-archives.html">Querying Archived Objects</a> in the <i>Amazon S3 User Guide</i>.</p>
/// <p>When making a select request, do the following:</p>
/// <ul>
/// <li>
/// <p>Define an output location for the select query's output. This must be an Amazon S3
/// bucket in the same Amazon Web Services Region as the bucket that contains the archive object that is
/// being queried. The Amazon Web Services account that initiates the job must have permissions to write
/// to the S3 bucket. You can specify the storage class and encryption for the output
/// objects stored in the bucket. For more information about output, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/querying-glacier-archives.html">Querying Archived Objects</a>
/// in the <i>Amazon S3 User Guide</i>.</p>
/// <p>For more information about the <code>S3</code> structure in the request body, see
/// the following:</p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObject.html">PutObject</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/S3_ACLs_UsingACLs.html">Managing Access with
/// ACLs</a> in the <i>Amazon S3 User Guide</i>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/serv-side-encryption.html">Protecting Data Using
/// Server-Side Encryption</a> in the
/// <i>Amazon S3 User Guide</i>
/// </p>
/// </li>
/// </ul>
/// </li>
/// <li>
/// <p>Define the SQL expression for the <code>SELECT</code> type of restoration for your
/// query in the request body's <code>SelectParameters</code> structure. You can use
/// expressions like the following examples.</p>
/// <ul>
/// <li>
/// <p>The following expression returns all records from the specified
/// object.</p>
/// <p>
/// <code>SELECT * FROM Object</code>
/// </p>
/// </li>
/// <li>
/// <p>Assuming that you are not using any headers for data stored in the object,
/// you can specify columns with positional headers.</p>
/// <p>
/// <code>SELECT s._1, s._2 FROM Object s WHERE s._3 > 100</code>
/// </p>
/// </li>
/// <li>
/// <p>If you have headers and you set the <code>fileHeaderInfo</code> in the
/// <code>CSV</code> structure in the request body to <code>USE</code>, you can
/// specify headers in the query. (If you set the <code>fileHeaderInfo</code> field
/// to <code>IGNORE</code>, the first row is skipped for the query.) You cannot mix
/// ordinal positions with header column names. </p>
/// <p>
/// <code>SELECT s.Id, s.FirstName, s.SSN FROM S3Object s</code>
/// </p>
/// </li>
/// </ul>
/// </li>
/// </ul>
/// <p>For more information about using SQL with S3 Glacier Select restore, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/s3-glacier-select-sql-reference.html">SQL Reference for Amazon S3 Select and
/// S3 Glacier Select</a> in the <i>Amazon S3 User Guide</i>. </p>
/// <p>When making a select request, you can also do the following:</p>
/// <ul>
/// <li>
/// <p>To expedite your queries, specify the <code>Expedited</code> tier. For more
/// information about tiers, see "Restoring Archives," later in this topic.</p>
/// </li>
/// <li>
/// <p>Specify details about the data serialization format of both the input object that
/// is being queried and the serialization of the CSV-encoded query results.</p>
/// </li>
/// </ul>
/// <p>The following are additional important facts about the select feature:</p>
/// <ul>
/// <li>
/// <p>The output results are new Amazon S3 objects. Unlike archive retrievals, they are
/// stored until explicitly deleted-manually or through a lifecycle policy.</p>
/// </li>
/// <li>
/// <p>You can issue more than one select request on the same Amazon S3 object. Amazon S3 doesn't
/// deduplicate requests, so avoid issuing duplicate requests.</p>
/// </li>
/// <li>
/// <p> Amazon S3 accepts a select request even if the object has already been restored. A
/// select request doesn’t return error response <code>409</code>.</p>
/// </li>
/// </ul>
/// <p>
/// <b>Restoring objects</b>
/// </p>
/// <p>Objects that you archive to the S3 Glacier or
/// S3 Glacier Deep Archive storage class, and S3 Intelligent-Tiering Archive or
/// S3 Intelligent-Tiering Deep Archive tiers are not accessible in real time. For objects in
/// Archive Access or Deep Archive Access tiers you must first initiate a restore request, and
/// then wait until the object is moved into the Frequent Access tier. For objects in
/// S3 Glacier or S3 Glacier Deep Archive storage classes you must
/// first initiate a restore request, and then wait until a temporary copy of the object is
/// available. To access an archived object, you must restore the object for the duration
/// (number of days) that you specify.</p>
/// <p>To restore a specific object version, you can provide a version ID. If you don't provide
/// a version ID, Amazon S3 restores the current version.</p>
/// <p>When restoring an archived object (or using a select request), you can specify one of
/// the following data access tier options in the <code>Tier</code> element of the request
/// body: </p>
/// <ul>
/// <li>
/// <p>
/// <code>Expedited</code> - Expedited retrievals allow you to quickly access your
/// data stored in the S3 Glacier storage class or S3 Intelligent-Tiering Archive
/// tier when occasional urgent requests for a subset of archives are required. For all
/// but the largest archived objects (250 MB+), data accessed using Expedited retrievals
/// is typically made available within 1–5 minutes. Provisioned capacity ensures that
/// retrieval capacity for Expedited retrievals is available when you need it. Expedited
/// retrievals and provisioned capacity are not available for objects stored in the
/// S3 Glacier Deep Archive storage class or S3 Intelligent-Tiering Deep Archive tier.</p>
/// </li>
/// <li>
/// <p>
/// <code>Standard</code> - Standard retrievals allow you to access any of your
/// archived objects within several hours. This is the default option for retrieval
/// requests that do not specify the retrieval option. Standard retrievals typically
/// finish within 3–5 hours for objects stored in the S3 Glacier storage
/// class or S3 Intelligent-Tiering Archive tier. They typically finish within 12 hours for
/// objects stored in the S3 Glacier Deep Archive storage class or
/// S3 Intelligent-Tiering Deep Archive tier. Standard retrievals are free for objects stored in
/// S3 Intelligent-Tiering.</p>
/// </li>
/// <li>
/// <p>
/// <code>Bulk</code> - Bulk retrievals are the lowest-cost retrieval option in
/// S3 Glacier, enabling you to retrieve large amounts, even petabytes, of data
/// inexpensively. Bulk retrievals typically finish within 5–12 hours for objects stored
/// in the S3 Glacier storage class or S3 Intelligent-Tiering Archive tier. They
/// typically finish within 48 hours for objects stored in the
/// S3 Glacier Deep Archive storage class or S3 Intelligent-Tiering Deep Archive tier. Bulk
/// retrievals are free for objects stored in S3 Intelligent-Tiering.</p>
/// </li>
/// </ul>
/// <p>For more information about archive retrieval options and provisioned capacity for
/// <code>Expedited</code> data access, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/restoring-objects.html">Restoring Archived Objects</a> in the <i>Amazon S3 User Guide</i>. </p>
/// <p>You can use Amazon S3 restore speed upgrade to change the restore speed to a faster speed
/// while it is in progress. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/restoring-objects.html#restoring-objects-upgrade-tier.title.html">
/// Upgrading the speed of an in-progress restore</a> in the
/// <i>Amazon S3 User Guide</i>. </p>
/// <p>To get the status of object restoration, you can send a <code>HEAD</code> request.
/// Operations return the <code>x-amz-restore</code> header, which provides information about
/// the restoration status, in the response. You can use Amazon S3 event notifications to notify you
/// when a restore is initiated or completed. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/NotificationHowTo.html">Configuring Amazon S3 Event Notifications</a> in
/// the <i>Amazon S3 User Guide</i>.</p>
/// <p>After restoring an archived object, you can update the restoration period by reissuing
/// the request with a new period. Amazon S3 updates the restoration period relative to the current
/// time and charges only for the request-there are no data transfer charges. You cannot
/// update the restoration period when Amazon S3 is actively processing your current restore request
/// for the object.</p>
/// <p>If your bucket has a lifecycle configuration with a rule that includes an expiration
/// action, the object expiration overrides the life span that you specify in a restore
/// request. For example, if you restore an object copy for 10 days, but the object is
/// scheduled to expire in 3 days, Amazon S3 deletes the object in 3 days. For more information
/// about lifecycle configuration, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketLifecycleConfiguration.html">PutBucketLifecycleConfiguration</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lifecycle-mgmt.html">Object Lifecycle Management</a> in
/// <i>Amazon S3 User Guide</i>.</p>
/// <p>
/// <b>Responses</b>
/// </p>
/// <p>A successful action returns either the <code>200 OK</code> or <code>202
/// Accepted</code> status code. </p>
/// <ul>
/// <li>
/// <p>If the object is not previously restored, then Amazon S3 returns <code>202
/// Accepted</code> in the response. </p>
/// </li>
/// <li>
/// <p>If the object is previously restored, Amazon S3 returns <code>200 OK</code> in the
/// response. </p>
/// </li>
/// </ul>
/// <p class="title">
/// <b>Special Errors</b>
/// </p>
/// <ul>
/// <li>
/// <ul>
/// <li>
/// <p>
/// <i>Code: RestoreAlreadyInProgress</i>
/// </p>
/// </li>
/// <li>
/// <p>
/// <i>Cause: Object restore is already in progress. (This error does not
/// apply to SELECT type requests.)</i>
/// </p>
/// </li>
/// <li>
/// <p>
/// <i>HTTP Status Code: 409 Conflict</i>
/// </p>
/// </li>
/// <li>
/// <p>
/// <i>SOAP Fault Code Prefix: Client</i>
/// </p>
/// </li>
/// </ul>
/// </li>
/// <li>
/// <ul>
/// <li>
/// <p>
/// <i>Code: GlacierExpeditedRetrievalNotAvailable</i>
/// </p>
/// </li>
/// <li>
/// <p>
/// <i>Cause: expedited retrievals are currently not available. Try again
/// later. (Returned if there is insufficient capacity to process the Expedited
/// request. This error applies only to Expedited retrievals and not to
/// S3 Standard or Bulk retrievals.)</i>
/// </p>
/// </li>
/// <li>
/// <p>
/// <i>HTTP Status Code: 503</i>
/// </p>
/// </li>
/// <li>
/// <p>
/// <i>SOAP Fault Code Prefix: N/A</i>
/// </p>
/// </li>
/// </ul>
/// </li>
/// </ul>
///
/// <p class="title">
/// <b>Related Resources</b>
/// </p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketLifecycleConfiguration.html">PutBucketLifecycleConfiguration</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketNotificationConfiguration.html">GetBucketNotificationConfiguration</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/s3-glacier-select-sql-reference.html">SQL Reference for
/// Amazon S3 Select and S3 Glacier Select </a> in the
/// <i>Amazon S3 User Guide</i>
/// </p>
/// </li>
/// </ul>
async fn restore_object(&self, _input: RestoreObjectInput) -> S3Result<RestoreObjectOutput> {
Err(s3_error!(NotImplemented, "RestoreObject is not implemented yet"))
}
/// <p>This action filters the contents of an Amazon S3 object based on a simple structured query
/// language (SQL) statement. In the request, along with the SQL expression, you must also
/// specify a data serialization format (JSON, CSV, or Apache Parquet) of the object. Amazon S3 uses
/// this format to parse object data into records, and returns only records that match the
/// specified SQL expression. You must also specify the data serialization format for the
/// response.</p>
/// <p>This action is not supported by Amazon S3 on Outposts.</p>
/// <p>For more information about Amazon S3 Select,
/// see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/selecting-content-from-objects.html">Selecting Content from
/// Objects</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-glacier-select-sql-reference-select.html">SELECT
/// Command</a> in the <i>Amazon S3 User Guide</i>.</p>
/// <p>For more information about using SQL with Amazon S3 Select, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/s3-glacier-select-sql-reference.html"> SQL Reference for Amazon S3 Select
/// and S3 Glacier Select</a> in the <i>Amazon S3 User Guide</i>.</p>
/// <p></p>
/// <p>
/// <b>Permissions</b>
/// </p>
/// <p>You must have <code>s3:GetObject</code> permission for this operation. Amazon S3 Select does
/// not support anonymous access. For more information about permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/using-with-s3-actions.html">Specifying Permissions in a Policy</a>
/// in the <i>Amazon S3 User Guide</i>.</p>
/// <p></p>
/// <p>
/// <i>Object Data Formats</i>
/// </p>
/// <p>You can use Amazon S3 Select to query objects that have the following format
/// properties:</p>
/// <ul>
/// <li>
/// <p>
/// <i>CSV, JSON, and Parquet</i> - Objects must be in CSV, JSON, or
/// Parquet format.</p>
/// </li>
/// <li>
/// <p>
/// <i>UTF-8</i> - UTF-8 is the only encoding type Amazon S3 Select
/// supports.</p>
/// </li>
/// <li>
/// <p>
/// <i>GZIP or BZIP2</i> - CSV and JSON files can be compressed using
/// GZIP or BZIP2. GZIP and BZIP2 are the only compression formats that Amazon S3 Select
/// supports for CSV and JSON files. Amazon S3 Select supports columnar compression for
/// Parquet using GZIP or Snappy. Amazon S3 Select does not support whole-object compression
/// for Parquet objects.</p>
/// </li>
/// <li>
/// <p>
/// <i>Server-side encryption</i> - Amazon S3 Select supports querying
/// objects that are protected with server-side encryption.</p>
/// <p>For objects that are encrypted with customer-provided encryption keys (SSE-C), you
/// must use HTTPS, and you must use the headers that are documented in the <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html">GetObject</a>. For more information about SSE-C, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/ServerSideEncryptionCustomerKeys.html">Server-Side Encryption
/// (Using Customer-Provided Encryption Keys)</a> in the
/// <i>Amazon S3 User Guide</i>.</p>
/// <p>For objects that are encrypted with Amazon S3 managed encryption keys (SSE-S3) and
/// Amazon Web Services KMS keys (SSE-KMS),
/// server-side encryption is handled transparently, so you don't need to specify
/// anything. For more information about server-side encryption, including SSE-S3 and
/// SSE-KMS, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/serv-side-encryption.html">Protecting Data Using
/// Server-Side Encryption</a> in the <i>Amazon S3 User Guide</i>.</p>
/// </li>
/// </ul>
///
/// <p>
/// <b>Working with the Response Body</b>
/// </p>
/// <p>Given the response size is unknown, Amazon S3 Select streams the response as a series of
/// messages and includes a <code>Transfer-Encoding</code> header with <code>chunked</code> as
/// its value in the response. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/RESTSelectObjectAppendix.html">Appendix: SelectObjectContent
/// Response</a>.</p>
///
/// <p></p>
/// <p>
/// <b>GetObject Support</b>
/// </p>
/// <p>The <code>SelectObjectContent</code> action does not support the following
/// <code>GetObject</code> functionality. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html">GetObject</a>.</p>
/// <ul>
/// <li>
/// <p>
/// <code>Range</code>: Although you can specify a scan range for an Amazon S3 Select request
/// (see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_SelectObjectContent.html#AmazonS3-SelectObjectContent-request-ScanRange">SelectObjectContentRequest - ScanRange</a> in the request parameters),
/// you cannot specify the range of bytes of an object to return. </p>
/// </li>
/// <li>
/// <p>GLACIER, DEEP_ARCHIVE and REDUCED_REDUNDANCY storage classes: You cannot specify
/// the GLACIER, DEEP_ARCHIVE, or <code>REDUCED_REDUNDANCY</code> storage classes. For
/// more information, about storage classes see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingMetadata.html#storage-class-intro">Storage Classes</a>
/// in the <i>Amazon S3 User Guide</i>.</p>
/// </li>
/// </ul>
/// <p></p>
/// <p>
/// <b>Special Errors</b>
/// </p>
///
/// <p>For a list of special errors for this operation, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html#SelectObjectContentErrorCodeList">List of
/// SELECT Object Content Error Codes</a>
/// </p>
/// <p class="title">
/// <b>Related Resources</b>
/// </p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html">GetObject</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketLifecycleConfiguration.html">GetBucketLifecycleConfiguration</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketLifecycleConfiguration.html">PutBucketLifecycleConfiguration</a>
/// </p>
/// </li>
/// </ul>
async fn select_object_content(&self, _input: SelectObjectContentInput) -> S3Result<SelectObjectContentOutput> {
Err(s3_error!(NotImplemented, "SelectObjectContent is not implemented yet"))
}
/// <p>Uploads a part in a multipart upload.</p>
/// <note>
/// <p>In this operation, you provide part data in your request. However, you have an option
/// to specify your existing Amazon S3 object as a data source for the part you are uploading. To
/// upload a part from an existing object, you use the <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_UploadPartCopy.html">UploadPartCopy</a> operation.
/// </p>
/// </note>
///
/// <p>You must initiate a multipart upload (see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateMultipartUpload.html">CreateMultipartUpload</a>)
/// before you can upload any part. In response to your initiate request, Amazon S3 returns an
/// upload ID, a unique identifier, that you must include in your upload part request.</p>
/// <p>Part numbers can be any number from 1 to 10,000, inclusive. A part number uniquely
/// identifies a part and also defines its position within the object being created. If you
/// upload a new part using the same part number that was used with a previous part, the
/// previously uploaded part is overwritten.</p>
/// <p>For information about maximum and minimum part sizes and other multipart upload specifications, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/qfacts.html">Multipart upload limits</a> in the <i>Amazon S3 User Guide</i>.</p>
/// <p>To ensure that data is not corrupted when traversing the network, specify the
/// <code>Content-MD5</code> header in the upload part request. Amazon S3 checks the part data
/// against the provided MD5 value. If they do not match, Amazon S3 returns an error. </p>
///
/// <p>If the upload request is signed with Signature Version 4, then Amazon Web Services S3 uses the
/// <code>x-amz-content-sha256</code> header as a checksum instead of
/// <code>Content-MD5</code>. For more information see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-auth-using-authorization-header.html">Authenticating Requests: Using the Authorization Header (Amazon Web Services Signature Version
/// 4)</a>. </p>
///
///
///
/// <p>
/// <b>Note:</b> After you initiate multipart upload and upload
/// one or more parts, you must either complete or abort multipart upload in order to stop
/// getting charged for storage of the uploaded parts. Only after you either complete or abort
/// multipart upload, Amazon S3 frees up the parts storage and stops charging you for the parts
/// storage.</p>
///
/// <p>For more information on multipart uploads, go to <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/mpuoverview.html">Multipart Upload Overview</a> in the
/// <i>Amazon S3 User Guide </i>.</p>
/// <p>For information on the permissions required to use the multipart upload API, go to
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/mpuAndPermissions.html">Multipart Upload and
/// Permissions</a> in the <i>Amazon S3 User Guide</i>.</p>
///
/// <p>You can optionally request server-side encryption where Amazon S3 encrypts your data as it
/// writes it to disks in its data centers and decrypts it for you when you access it. You have
/// the option of providing your own encryption key, or you can use the Amazon Web Services managed encryption
/// keys. If you choose to provide your own encryption key, the request headers you provide in
/// the request must match the headers you used in the request to initiate the upload by using
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateMultipartUpload.html">CreateMultipartUpload</a>. For more information, go to <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingServerSideEncryption.html">Using Server-Side Encryption</a> in
/// the <i>Amazon S3 User Guide</i>.</p>
///
/// <p>Server-side encryption is supported by the S3 Multipart Upload actions. Unless you are
/// using a customer-provided encryption key, you don't need to specify the encryption
/// parameters in each UploadPart request. Instead, you only need to specify the server-side
/// encryption parameters in the initial Initiate Multipart request. For more information, see
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateMultipartUpload.html">CreateMultipartUpload</a>.</p>
///
/// <p>If you requested server-side encryption using a customer-provided encryption key in your
/// initiate multipart upload request, you must provide identical encryption information in
/// each part upload using the following headers.</p>
///
///
/// <ul>
/// <li>
/// <p>x-amz-server-side-encryption-customer-algorithm</p>
/// </li>
/// <li>
/// <p>x-amz-server-side-encryption-customer-key</p>
/// </li>
/// <li>
/// <p>x-amz-server-side-encryption-customer-key-MD5</p>
/// </li>
/// </ul>
///
/// <p class="title">
/// <b>Special Errors</b>
/// </p>
/// <ul>
/// <li>
/// <ul>
/// <li>
/// <p>
/// <i>Code: NoSuchUpload</i>
/// </p>
/// </li>
/// <li>
/// <p>
/// <i>Cause: The specified multipart upload does not exist. The upload
/// ID might be invalid, or the multipart upload might have been aborted or
/// completed.</i>
/// </p>
/// </li>
/// <li>
/// <p>
/// <i> HTTP Status Code: 404 Not Found </i>
/// </p>
/// </li>
/// <li>
/// <p>
/// <i>SOAP Fault Code Prefix: Client</i>
/// </p>
/// </li>
/// </ul>
/// </li>
/// </ul>
///
///
///
///
///
///
/// <p class="title">
/// <b>Related Resources</b>
/// </p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateMultipartUpload.html">CreateMultipartUpload</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_CompleteMultipartUpload.html">CompleteMultipartUpload</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_AbortMultipartUpload.html">AbortMultipartUpload</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListParts.html">ListParts</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListMultipartUploads.html">ListMultipartUploads</a>
/// </p>
/// </li>
/// </ul>
async fn upload_part(&self, _input: UploadPartInput) -> S3Result<UploadPartOutput> {
Err(s3_error!(NotImplemented, "UploadPart is not implemented yet"))
}
/// <p>Uploads a part by copying data from an existing object as data source. You specify the
/// data source by adding the request header <code>x-amz-copy-source</code> in your request and
/// a byte range by adding the request header <code>x-amz-copy-source-range</code> in your
/// request. </p>
/// <p>For information about maximum and minimum part sizes and other multipart upload specifications, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/qfacts.html">Multipart upload limits</a> in the <i>Amazon S3 User Guide</i>. </p>
/// <note>
/// <p>Instead of using an existing object as part data, you might use the <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_UploadPart.html">UploadPart</a>
/// action and provide data in your request.</p>
/// </note>
///
/// <p>You must initiate a multipart upload before you can upload any part. In response to your
/// initiate request. Amazon S3 returns a unique identifier, the upload ID, that you must include in
/// your upload part request.</p>
/// <p>For more information about using the <code>UploadPartCopy</code> operation, see the
/// following:</p>
///
/// <ul>
/// <li>
/// <p>For conceptual information about multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/uploadobjusingmpu.html">Uploading Objects Using Multipart
/// Upload</a> in the <i>Amazon S3 User Guide</i>.</p>
/// </li>
/// <li>
/// <p>For information about permissions required to use the multipart upload API, see
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/mpuAndPermissions.html">Multipart Upload and
/// Permissions</a> in the <i>Amazon S3 User Guide</i>.</p>
/// </li>
/// <li>
/// <p>For information about copying objects using a single atomic action vs. a multipart
/// upload, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectOperations.html">Operations on Objects</a> in
/// the <i>Amazon S3 User Guide</i>.</p>
/// </li>
/// <li>
/// <p>For information about using server-side encryption with customer-provided
/// encryption keys with the <code>UploadPartCopy</code> operation, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_CopyObject.html">CopyObject</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_UploadPart.html">UploadPart</a>.</p>
/// </li>
/// </ul>
/// <p>Note the following additional considerations about the request headers
/// <code>x-amz-copy-source-if-match</code>, <code>x-amz-copy-source-if-none-match</code>,
/// <code>x-amz-copy-source-if-unmodified-since</code>, and
/// <code>x-amz-copy-source-if-modified-since</code>:</p>
/// <p> </p>
/// <ul>
/// <li>
/// <p>
/// <b>Consideration 1</b> - If both of the
/// <code>x-amz-copy-source-if-match</code> and
/// <code>x-amz-copy-source-if-unmodified-since</code> headers are present in the
/// request as follows:</p>
/// <p>
/// <code>x-amz-copy-source-if-match</code> condition evaluates to <code>true</code>,
/// and;</p>
/// <p>
/// <code>x-amz-copy-source-if-unmodified-since</code> condition evaluates to
/// <code>false</code>;</p>
/// <p>Amazon S3 returns <code>200 OK</code> and copies the data.
/// </p>
///
/// </li>
/// <li>
/// <p>
/// <b>Consideration 2</b> - If both of the
/// <code>x-amz-copy-source-if-none-match</code> and
/// <code>x-amz-copy-source-if-modified-since</code> headers are present in the
/// request as follows:</p>
/// <p>
/// <code>x-amz-copy-source-if-none-match</code> condition evaluates to
/// <code>false</code>, and;</p>
/// <p>
/// <code>x-amz-copy-source-if-modified-since</code> condition evaluates to
/// <code>true</code>;</p>
/// <p>Amazon S3 returns <code>412 Precondition Failed</code> response code.
/// </p>
/// </li>
/// </ul>
/// <p>
/// <b>Versioning</b>
/// </p>
/// <p>If your bucket has versioning enabled, you could have multiple versions of the same
/// object. By default, <code>x-amz-copy-source</code> identifies the current version of the
/// object to copy. If the current version is a delete marker and you don't specify a versionId
/// in the <code>x-amz-copy-source</code>, Amazon S3 returns a 404 error, because the object does
/// not exist. If you specify versionId in the <code>x-amz-copy-source</code> and the versionId
/// is a delete marker, Amazon S3 returns an HTTP 400 error, because you are not allowed to specify
/// a delete marker as a version for the <code>x-amz-copy-source</code>. </p>
/// <p>You can optionally specify a specific version of the source object to copy by adding the
/// <code>versionId</code> subresource as shown in the following example:</p>
/// <p>
/// <code>x-amz-copy-source: /bucket/object?versionId=version id</code>
/// </p>
///
/// <p class="title">
/// <b>Special Errors</b>
/// </p>
/// <ul>
/// <li>
/// <ul>
/// <li>
/// <p>
/// <i>Code: NoSuchUpload</i>
/// </p>
/// </li>
/// <li>
/// <p>
/// <i>Cause: The specified multipart upload does not exist. The upload
/// ID might be invalid, or the multipart upload might have been aborted or
/// completed.</i>
/// </p>
/// </li>
/// <li>
/// <p>
/// <i>HTTP Status Code: 404 Not Found</i>
/// </p>
/// </li>
/// </ul>
/// </li>
/// <li>
/// <ul>
/// <li>
/// <p>
/// <i>Code: InvalidRequest</i>
/// </p>
/// </li>
/// <li>
/// <p>
/// <i>Cause: The specified copy source is not supported as a byte-range
/// copy source.</i>
/// </p>
/// </li>
/// <li>
/// <p>
/// <i>HTTP Status Code: 400 Bad Request</i>
/// </p>
/// </li>
/// </ul>
/// </li>
/// </ul>
///
///
///
///
///
///
/// <p class="title">
/// <b>Related Resources</b>
/// </p>
/// <ul>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateMultipartUpload.html">CreateMultipartUpload</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_UploadPart.html">UploadPart</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_CompleteMultipartUpload.html">CompleteMultipartUpload</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_AbortMultipartUpload.html">AbortMultipartUpload</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListParts.html">ListParts</a>
/// </p>
/// </li>
/// <li>
/// <p>
/// <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListMultipartUploads.html">ListMultipartUploads</a>
/// </p>
/// </li>
/// </ul>
async fn upload_part_copy(&self, _input: UploadPartCopyInput) -> S3Result<UploadPartCopyOutput> {
Err(s3_error!(NotImplemented, "UploadPartCopy is not implemented yet"))
}
/// <p>Passes transformed
/// objects to a <code>GetObject</code> operation when using Object Lambda access points. For information about
/// Object Lambda access points, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/transforming-objects.html">Transforming objects with
/// Object Lambda access points</a> in the <i>Amazon S3 User Guide</i>.</p>
/// <p>This operation supports metadata that can be returned by <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html">GetObject</a>, in addition to
/// <code>RequestRoute</code>, <code>RequestToken</code>, <code>StatusCode</code>,
/// <code>ErrorCode</code>, and <code>ErrorMessage</code>. The <code>GetObject</code>
/// response metadata is supported so that the <code>WriteGetObjectResponse</code> caller,
/// typically an Lambda function, can provide the same metadata when it internally invokes
/// <code>GetObject</code>. When <code>WriteGetObjectResponse</code> is called by a
/// customer-owned Lambda function, the metadata returned to the end user
/// <code>GetObject</code> call might differ from what Amazon S3 would normally return.</p>
/// <p>You can include any number of metadata headers. When including a metadata header, it should be
/// prefaced with <code>x-amz-meta</code>. For example, <code>x-amz-meta-my-custom-header: MyCustomValue</code>.
/// The primary use case for this is to forward <code>GetObject</code> metadata.</p>
/// <p>Amazon Web Services provides some prebuilt Lambda functions that you can use with S3 Object Lambda to detect and redact
/// personally identifiable information (PII) and decompress S3 objects. These Lambda functions
/// are available in the Amazon Web Services Serverless Application Repository, and can be selected through the Amazon Web Services Management Console when you create your
/// Object Lambda access point.</p>
/// <p>Example 1: PII Access Control - This Lambda function uses Amazon Comprehend, a natural language processing (NLP) service using machine learning to find insights and relationships in text. It automatically detects personally identifiable information (PII) such as names, addresses, dates, credit card numbers, and social security numbers from documents in your Amazon S3 bucket. </p>
/// <p>Example 2: PII Redaction - This Lambda function uses Amazon Comprehend, a natural language processing (NLP) service using machine learning to find insights and relationships in text. It automatically redacts personally identifiable information (PII) such as names, addresses, dates, credit card numbers, and social security numbers from documents in your Amazon S3 bucket. </p>
/// <p>Example 3: Decompression - The Lambda function S3ObjectLambdaDecompression, is equipped to decompress objects stored in S3 in one of six compressed file formats including bzip2, gzip, snappy, zlib, zstandard and ZIP. </p>
/// <p>For information on how to view and use these functions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/olap-examples.html">Using Amazon Web Services built Lambda functions</a> in the <i>Amazon S3 User Guide</i>.</p>
async fn write_get_object_response(&self, _input: WriteGetObjectResponseInput) -> S3Result<WriteGetObjectResponseOutput> {
Err(s3_error!(NotImplemented, "WriteGetObjectResponse is not implemented yet"))
}
}