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
// ================================================================= // // * WARNING * // // This file is generated! // // Changes made to this file will be overwritten. If changes are // required to the generated code, the service_crategen project // must be updated to generate the changes. // // ================================================================= use std::error::Error; use std::fmt; #[allow(warnings)] use futures::future; use futures::Future; use rusoto_core::credential::ProvideAwsCredentials; use rusoto_core::region; use rusoto_core::request::{BufferedHttpResponse, DispatchSignedRequest}; use rusoto_core::{Client, RusotoError, RusotoFuture}; use rusoto_core::param::{Params, ServiceParams}; use rusoto_core::proto::xml::error::*; use rusoto_core::proto::xml::util::{ characters, deserialize_elements, end_element, find_start_element, peek_at_name, skip_tree, start_element, }; use rusoto_core::proto::xml::util::{Next, Peek, XmlParseError, XmlResponse}; use rusoto_core::signature::SignedRequest; use serde_urlencoded; use std::str::FromStr; use xml::reader::ParserConfig; use xml::EventReader; /// Serialize `AWSAccountIdList` contents to a `SignedRequest`. struct AWSAccountIdListSerializer; impl AWSAccountIdListSerializer { fn serialize(params: &mut Params, name: &str, obj: &Vec<String>) { for (index, obj) in obj.iter().enumerate() { let key = format!("{}.{}", name, index + 1); params.put(&key, &obj); } } } /// Serialize `ActionNameList` contents to a `SignedRequest`. struct ActionNameListSerializer; impl ActionNameListSerializer { fn serialize(params: &mut Params, name: &str, obj: &Vec<String>) { for (index, obj) in obj.iter().enumerate() { let key = format!("{}.{}", name, index + 1); params.put(&key, &obj); } } } /// <p><p/></p> #[derive(Default, Debug, Clone, PartialEq)] pub struct AddPermissionRequest { /// <p>The AWS account number of the <a href="http://docs.aws.amazon.com/general/latest/gr/glos-chap.html#P">principal</a> who is given permission. The principal must have an AWS account, but does not need to be signed up for Amazon SQS. For information about locating the AWS account identification, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-making-api-requests.html#sqs-api-request-authentication">Your AWS Identifiers</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> pub aws_account_ids: Vec<String>, /// <p>The action the client wants to allow for the specified principal. Valid values: the name of any action or <code>*</code>.</p> <p>For more information about these actions, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-overview-of-managing-access.html">Overview of Managing Access Permissions to Your Amazon Simple Queue Service Resource</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> <p>Specifying <code>SendMessage</code>, <code>DeleteMessage</code>, or <code>ChangeMessageVisibility</code> for <code>ActionName.n</code> also grants permissions for the corresponding batch versions of those actions: <code>SendMessageBatch</code>, <code>DeleteMessageBatch</code>, and <code>ChangeMessageVisibilityBatch</code>.</p> pub actions: Vec<String>, /// <p>The unique identification of the permission you're setting (for example, <code>AliceSendMessage</code>). Maximum 80 characters. Allowed characters include alphanumeric characters, hyphens (<code>-</code>), and underscores (<code>_</code>).</p> pub label: String, /// <p>The URL of the Amazon SQS queue to which permissions are added.</p> <p>Queue URLs and names are case-sensitive.</p> pub queue_url: String, } /// Serialize `AddPermissionRequest` contents to a `SignedRequest`. struct AddPermissionRequestSerializer; impl AddPermissionRequestSerializer { fn serialize(params: &mut Params, name: &str, obj: &AddPermissionRequest) { let mut prefix = name.to_string(); if prefix != "" { prefix.push_str("."); } AWSAccountIdListSerializer::serialize( params, &format!("{}{}", prefix, "AWSAccountId"), &obj.aws_account_ids, ); ActionNameListSerializer::serialize( params, &format!("{}{}", prefix, "ActionName"), &obj.actions, ); params.put(&format!("{}{}", prefix, "Label"), &obj.label); params.put(&format!("{}{}", prefix, "QueueUrl"), &obj.queue_url); } } /// Serialize `AttributeNameList` contents to a `SignedRequest`. struct AttributeNameListSerializer; impl AttributeNameListSerializer { fn serialize(params: &mut Params, name: &str, obj: &Vec<String>) { for (index, obj) in obj.iter().enumerate() { let key = format!("{}.{}", name, index + 1); params.put(&key, &obj); } } } /// <p>Gives a detailed description of the result of an action on each entry in the request.</p> #[derive(Default, Debug, Clone, PartialEq)] pub struct BatchResultErrorEntry { /// <p>An error code representing why the action failed on this entry.</p> pub code: String, /// <p>The <code>Id</code> of an entry in a batch request.</p> pub id: String, /// <p>A message explaining why the action failed on this entry.</p> pub message: Option<String>, /// <p>Specifies whether the error happened due to the producer.</p> pub sender_fault: bool, } struct BatchResultErrorEntryDeserializer; impl BatchResultErrorEntryDeserializer { #[allow(unused_variables)] fn deserialize<T: Peek + Next>( tag_name: &str, stack: &mut T, ) -> Result<BatchResultErrorEntry, XmlParseError> { deserialize_elements::<_, BatchResultErrorEntry, _>(tag_name, stack, |name, stack, obj| { match name { "Code" => { obj.code = StringDeserializer::deserialize("Code", stack)?; } "Id" => { obj.id = StringDeserializer::deserialize("Id", stack)?; } "Message" => { obj.message = Some(StringDeserializer::deserialize("Message", stack)?); } "SenderFault" => { obj.sender_fault = BooleanDeserializer::deserialize("SenderFault", stack)?; } _ => skip_tree(stack), } Ok(()) }) } } struct BatchResultErrorEntryListDeserializer; impl BatchResultErrorEntryListDeserializer { #[allow(unused_variables)] fn deserialize<T: Peek + Next>( tag_name: &str, stack: &mut T, ) -> Result<Vec<BatchResultErrorEntry>, XmlParseError> { let mut obj = vec![]; loop { let consume_next_tag = match stack.peek() { Some(&Ok(xml::reader::XmlEvent::StartElement { ref name, .. })) => { name.local_name == tag_name } _ => false, }; if consume_next_tag { obj.push(BatchResultErrorEntryDeserializer::deserialize( tag_name, stack, )?); } else { break; } } Ok(obj) } } struct BinaryDeserializer; impl BinaryDeserializer { #[allow(unused_variables)] fn deserialize<T: Peek + Next>( tag_name: &str, stack: &mut T, ) -> Result<bytes::Bytes, XmlParseError> { start_element(tag_name, stack)?; let obj = characters(stack)?.into(); end_element(tag_name, stack)?; Ok(obj) } } struct BinaryListDeserializer; impl BinaryListDeserializer { #[allow(unused_variables)] fn deserialize<T: Peek + Next>( tag_name: &str, stack: &mut T, ) -> Result<Vec<bytes::Bytes>, XmlParseError> { deserialize_elements::<_, Vec<_>, _>(tag_name, stack, |name, stack, obj| { if name == "BinaryListValue" { obj.push(BinaryDeserializer::deserialize("BinaryListValue", stack)?); } else { skip_tree(stack); } Ok(()) }) } } /// Serialize `BinaryList` contents to a `SignedRequest`. struct BinaryListSerializer; impl BinaryListSerializer { fn serialize(params: &mut Params, name: &str, obj: &Vec<bytes::Bytes>) { for (index, obj) in obj.iter().enumerate() { let key = format!("{}.member.{}", name, index + 1); params.put(&key, ::std::str::from_utf8(&obj).unwrap()); } } } struct BooleanDeserializer; impl BooleanDeserializer { #[allow(unused_variables)] fn deserialize<T: Peek + Next>(tag_name: &str, stack: &mut T) -> Result<bool, XmlParseError> { start_element(tag_name, stack)?; let obj = bool::from_str(characters(stack)?.as_ref()).unwrap(); end_element(tag_name, stack)?; Ok(obj) } } /// <p><p/></p> #[derive(Default, Debug, Clone, PartialEq)] pub struct ChangeMessageVisibilityBatchRequest { /// <p>A list of receipt handles of the messages for which the visibility timeout must be changed.</p> pub entries: Vec<ChangeMessageVisibilityBatchRequestEntry>, /// <p>The URL of the Amazon SQS queue whose messages' visibility is changed.</p> <p>Queue URLs and names are case-sensitive.</p> pub queue_url: String, } /// Serialize `ChangeMessageVisibilityBatchRequest` contents to a `SignedRequest`. struct ChangeMessageVisibilityBatchRequestSerializer; impl ChangeMessageVisibilityBatchRequestSerializer { fn serialize(params: &mut Params, name: &str, obj: &ChangeMessageVisibilityBatchRequest) { let mut prefix = name.to_string(); if prefix != "" { prefix.push_str("."); } ChangeMessageVisibilityBatchRequestEntryListSerializer::serialize( params, &format!("{}{}", prefix, "ChangeMessageVisibilityBatchRequestEntry"), &obj.entries, ); params.put(&format!("{}{}", prefix, "QueueUrl"), &obj.queue_url); } } /// <p>Encloses a receipt handle and an entry id for each message in <code> <a>ChangeMessageVisibilityBatch</a>.</code> </p> <important> <p>All of the following list parameters must be prefixed with <code>ChangeMessageVisibilityBatchRequestEntry.n</code>, where <code>n</code> is an integer value starting with <code>1</code>. For example, a parameter list for this action might look like this:</p> </important> <p> <code>&ChangeMessageVisibilityBatchRequestEntry.1.Id=change_visibility_msg_2</code> </p> <p> <code>&ChangeMessageVisibilityBatchRequestEntry.1.ReceiptHandle=your_receipt_handle</code> </p> <p> <code>&ChangeMessageVisibilityBatchRequestEntry.1.VisibilityTimeout=45</code> </p> #[derive(Default, Debug, Clone, PartialEq)] pub struct ChangeMessageVisibilityBatchRequestEntry { /// <p><p>An identifier for this particular receipt handle used to communicate the result.</p> <note> <p>The <code>Id</code>s of a batch request need to be unique within a request</p> </note></p> pub id: String, /// <p>A receipt handle.</p> pub receipt_handle: String, /// <p>The new value (in seconds) for the message's visibility timeout.</p> pub visibility_timeout: Option<i64>, } /// Serialize `ChangeMessageVisibilityBatchRequestEntry` contents to a `SignedRequest`. struct ChangeMessageVisibilityBatchRequestEntrySerializer; impl ChangeMessageVisibilityBatchRequestEntrySerializer { fn serialize(params: &mut Params, name: &str, obj: &ChangeMessageVisibilityBatchRequestEntry) { let mut prefix = name.to_string(); if prefix != "" { prefix.push_str("."); } params.put(&format!("{}{}", prefix, "Id"), &obj.id); params.put( &format!("{}{}", prefix, "ReceiptHandle"), &obj.receipt_handle, ); if let Some(ref field_value) = obj.visibility_timeout { params.put(&format!("{}{}", prefix, "VisibilityTimeout"), &field_value); } } } /// Serialize `ChangeMessageVisibilityBatchRequestEntryList` contents to a `SignedRequest`. struct ChangeMessageVisibilityBatchRequestEntryListSerializer; impl ChangeMessageVisibilityBatchRequestEntryListSerializer { fn serialize( params: &mut Params, name: &str, obj: &Vec<ChangeMessageVisibilityBatchRequestEntry>, ) { for (index, obj) in obj.iter().enumerate() { let key = format!("{}.{}", name, index + 1); ChangeMessageVisibilityBatchRequestEntrySerializer::serialize(params, &key, obj); } } } /// <p>For each message in the batch, the response contains a <code> <a>ChangeMessageVisibilityBatchResultEntry</a> </code> tag if the message succeeds or a <code> <a>BatchResultErrorEntry</a> </code> tag if the message fails.</p> #[derive(Default, Debug, Clone, PartialEq)] pub struct ChangeMessageVisibilityBatchResult { /// <p>A list of <code> <a>BatchResultErrorEntry</a> </code> items.</p> pub failed: Vec<BatchResultErrorEntry>, /// <p>A list of <code> <a>ChangeMessageVisibilityBatchResultEntry</a> </code> items.</p> pub successful: Vec<ChangeMessageVisibilityBatchResultEntry>, } struct ChangeMessageVisibilityBatchResultDeserializer; impl ChangeMessageVisibilityBatchResultDeserializer { #[allow(unused_variables)] fn deserialize<T: Peek + Next>( tag_name: &str, stack: &mut T, ) -> Result<ChangeMessageVisibilityBatchResult, XmlParseError> { deserialize_elements::<_, ChangeMessageVisibilityBatchResult, _>( tag_name, stack, |name, stack, obj| { match name { "BatchResultErrorEntry" => { obj.failed .extend(BatchResultErrorEntryListDeserializer::deserialize( "BatchResultErrorEntry", stack, )?); } "ChangeMessageVisibilityBatchResultEntry" => { obj.successful.extend( ChangeMessageVisibilityBatchResultEntryListDeserializer::deserialize( "ChangeMessageVisibilityBatchResultEntry", stack, )?, ); } _ => skip_tree(stack), } Ok(()) }, ) } } /// <p>Encloses the <code>Id</code> of an entry in <code> <a>ChangeMessageVisibilityBatch</a>.</code> </p> #[derive(Default, Debug, Clone, PartialEq)] pub struct ChangeMessageVisibilityBatchResultEntry { /// <p>Represents a message whose visibility timeout has been changed successfully.</p> pub id: String, } struct ChangeMessageVisibilityBatchResultEntryDeserializer; impl ChangeMessageVisibilityBatchResultEntryDeserializer { #[allow(unused_variables)] fn deserialize<T: Peek + Next>( tag_name: &str, stack: &mut T, ) -> Result<ChangeMessageVisibilityBatchResultEntry, XmlParseError> { deserialize_elements::<_, ChangeMessageVisibilityBatchResultEntry, _>( tag_name, stack, |name, stack, obj| { match name { "Id" => { obj.id = StringDeserializer::deserialize("Id", stack)?; } _ => skip_tree(stack), } Ok(()) }, ) } } struct ChangeMessageVisibilityBatchResultEntryListDeserializer; impl ChangeMessageVisibilityBatchResultEntryListDeserializer { #[allow(unused_variables)] fn deserialize<T: Peek + Next>( tag_name: &str, stack: &mut T, ) -> Result<Vec<ChangeMessageVisibilityBatchResultEntry>, XmlParseError> { let mut obj = vec![]; loop { let consume_next_tag = match stack.peek() { Some(&Ok(xml::reader::XmlEvent::StartElement { ref name, .. })) => { name.local_name == tag_name } _ => false, }; if consume_next_tag { obj.push( ChangeMessageVisibilityBatchResultEntryDeserializer::deserialize( tag_name, stack, )?, ); } else { break; } } Ok(obj) } } #[derive(Default, Debug, Clone, PartialEq)] pub struct ChangeMessageVisibilityRequest { /// <p>The URL of the Amazon SQS queue whose message's visibility is changed.</p> <p>Queue URLs and names are case-sensitive.</p> pub queue_url: String, /// <p>The receipt handle associated with the message whose visibility timeout is changed. This parameter is returned by the <code> <a>ReceiveMessage</a> </code> action.</p> pub receipt_handle: String, /// <p>The new value for the message's visibility timeout (in seconds). Values values: <code>0</code> to <code>43200</code>. Maximum: 12 hours.</p> pub visibility_timeout: i64, } /// Serialize `ChangeMessageVisibilityRequest` contents to a `SignedRequest`. struct ChangeMessageVisibilityRequestSerializer; impl ChangeMessageVisibilityRequestSerializer { fn serialize(params: &mut Params, name: &str, obj: &ChangeMessageVisibilityRequest) { let mut prefix = name.to_string(); if prefix != "" { prefix.push_str("."); } params.put(&format!("{}{}", prefix, "QueueUrl"), &obj.queue_url); params.put( &format!("{}{}", prefix, "ReceiptHandle"), &obj.receipt_handle, ); params.put( &format!("{}{}", prefix, "VisibilityTimeout"), &obj.visibility_timeout, ); } } /// <p><p/></p> #[derive(Default, Debug, Clone, PartialEq)] pub struct CreateQueueRequest { /// <p><p>A map of attributes with their corresponding values.</p> <p>The following lists the names, descriptions, and values of the special request parameters that the <code>CreateQueue</code> action uses:</p> <ul> <li> <p> <code>DelaySeconds</code> - The length of time, in seconds, for which the delivery of all messages in the queue is delayed. Valid values: An integer from 0 to 900 seconds (15 minutes). Default: 0. </p> </li> <li> <p> <code>MaximumMessageSize</code> - The limit of how many bytes a message can contain before Amazon SQS rejects it. Valid values: An integer from 1,024 bytes (1 KiB) to 262,144 bytes (256 KiB). Default: 262,144 (256 KiB). </p> </li> <li> <p> <code>MessageRetentionPeriod</code> - The length of time, in seconds, for which Amazon SQS retains a message. Valid values: An integer from 60 seconds (1 minute) to 1,209,600 seconds (14 days). Default: 345,600 (4 days). </p> </li> <li> <p> <code>Policy</code> - The queue's policy. A valid AWS policy. For more information about policy structure, see <a href="http://docs.aws.amazon.com/IAM/latest/UserGuide/PoliciesOverview.html">Overview of AWS IAM Policies</a> in the <i>Amazon IAM User Guide</i>. </p> </li> <li> <p> <code>ReceiveMessageWaitTimeSeconds</code> - The length of time, in seconds, for which a <code> <a>ReceiveMessage</a> </code> action waits for a message to arrive. Valid values: An integer from 0 to 20 (seconds). Default: 0. </p> </li> <li> <p> <code>RedrivePolicy</code> - The string that includes the parameters for the dead-letter queue functionality of the source queue. For more information about the redrive policy and dead-letter queues, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-dead-letter-queues.html">Using Amazon SQS Dead-Letter Queues</a> in the <i>Amazon Simple Queue Service Developer Guide</i>. </p> <ul> <li> <p> <code>deadLetterTargetArn</code> - The Amazon Resource Name (ARN) of the dead-letter queue to which Amazon SQS moves messages after the value of <code>maxReceiveCount</code> is exceeded.</p> </li> <li> <p> <code>maxReceiveCount</code> - The number of times a message is delivered to the source queue before being moved to the dead-letter queue. When the <code>ReceiveCount</code> for a message exceeds the <code>maxReceiveCount</code> for a queue, Amazon SQS moves the message to the dead-letter-queue.</p> </li> </ul> <note> <p>The dead-letter queue of a FIFO queue must also be a FIFO queue. Similarly, the dead-letter queue of a standard queue must also be a standard queue.</p> </note> </li> <li> <p> <code>VisibilityTimeout</code> - The visibility timeout for the queue, in seconds. Valid values: An integer from 0 to 43,200 (12 hours). Default: 30. For more information about the visibility timeout, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-visibility-timeout.html">Visibility Timeout</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> </li> </ul> <p>The following attributes apply only to <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-server-side-encryption.html">server-side-encryption</a>:</p> <ul> <li> <p> <code>KmsMasterKeyId</code> - The ID of an AWS-managed customer master key (CMK) for Amazon SQS or a custom CMK. For more information, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-server-side-encryption.html#sqs-sse-key-terms">Key Terms</a>. While the alias of the AWS-managed CMK for Amazon SQS is always <code>alias/aws/sqs</code>, the alias of a custom CMK can, for example, be <code>alias/<i>MyAlias</i> </code>. For more examples, see <a href="http://docs.aws.amazon.com/kms/latest/APIReference/API_DescribeKey.html#API_DescribeKey_RequestParameters">KeyId</a> in the <i>AWS Key Management Service API Reference</i>. </p> </li> <li> <p> <code>KmsDataKeyReusePeriodSeconds</code> - The length of time, in seconds, for which Amazon SQS can reuse a <a href="http://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#data-keys">data key</a> to encrypt or decrypt messages before calling AWS KMS again. An integer representing seconds, between 60 seconds (1 minute) and 86,400 seconds (24 hours). Default: 300 (5 minutes). A shorter time period provides better security but results in more calls to KMS which might incur charges after Free Tier. For more information, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-server-side-encryption.html#sqs-how-does-the-data-key-reuse-period-work">How Does the Data Key Reuse Period Work?</a>. </p> </li> </ul> <p>The following attributes apply only to <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/FIFO-queues.html">FIFO (first-in-first-out) queues</a>:</p> <ul> <li> <p> <code>FifoQueue</code> - Designates a queue as FIFO. Valid values: <code>true</code>, <code>false</code>. You can provide this attribute only during queue creation. You can't change it for an existing queue. When you set this attribute, you must also provide the <code>MessageGroupId</code> for your messages explicitly.</p> <p>For more information, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/FIFO-queues.html#FIFO-queues-understanding-logic">FIFO Queue Logic</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> </li> <li> <p> <code>ContentBasedDeduplication</code> - Enables content-based deduplication. Valid values: <code>true</code>, <code>false</code>. For more information, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/FIFO-queues.html#FIFO-queues-exactly-once-processing">Exactly-Once Processing</a> in the <i>Amazon Simple Queue Service Developer Guide</i>. </p> <ul> <li> <p>Every message must have a unique <code>MessageDeduplicationId</code>,</p> <ul> <li> <p>You may provide a <code>MessageDeduplicationId</code> explicitly.</p> </li> <li> <p>If you aren't able to provide a <code>MessageDeduplicationId</code> and you enable <code>ContentBasedDeduplication</code> for your queue, Amazon SQS uses a SHA-256 hash to generate the <code>MessageDeduplicationId</code> using the body of the message (but not the attributes of the message). </p> </li> <li> <p>If you don't provide a <code>MessageDeduplicationId</code> and the queue doesn't have <code>ContentBasedDeduplication</code> set, the action fails with an error.</p> </li> <li> <p>If the queue has <code>ContentBasedDeduplication</code> set, your <code>MessageDeduplicationId</code> overrides the generated one.</p> </li> </ul> </li> <li> <p>When <code>ContentBasedDeduplication</code> is in effect, messages with identical content sent within the deduplication interval are treated as duplicates and only one copy of the message is delivered.</p> </li> <li> <p>If you send one message with <code>ContentBasedDeduplication</code> enabled and then another message with a <code>MessageDeduplicationId</code> that is the same as the one generated for the first <code>MessageDeduplicationId</code>, the two messages are treated as duplicates and only one copy of the message is delivered. </p> </li> </ul> </li> </ul></p> pub attributes: Option<::std::collections::HashMap<String, String>>, /// <p>The name of the new queue. The following limits apply to this name:</p> <ul> <li> <p>A queue name can have up to 80 characters.</p> </li> <li> <p>Valid values: alphanumeric characters, hyphens (<code>-</code>), and underscores (<code>_</code>).</p> </li> <li> <p>A FIFO queue name must end with the <code>.fifo</code> suffix.</p> </li> </ul> <p>Queue URLs and names are case-sensitive.</p> pub queue_name: String, } /// Serialize `CreateQueueRequest` contents to a `SignedRequest`. struct CreateQueueRequestSerializer; impl CreateQueueRequestSerializer { fn serialize(params: &mut Params, name: &str, obj: &CreateQueueRequest) { let mut prefix = name.to_string(); if prefix != "" { prefix.push_str("."); } if let Some(ref field_value) = obj.attributes { QueueAttributeMapSerializer::serialize( params, &format!("{}{}", prefix, "Attribute"), field_value, ); } params.put(&format!("{}{}", prefix, "QueueName"), &obj.queue_name); } } /// <p>Returns the <code>QueueUrl</code> attribute of the created queue.</p> #[derive(Default, Debug, Clone, PartialEq)] pub struct CreateQueueResult { /// <p>The URL of the created Amazon SQS queue.</p> pub queue_url: Option<String>, } struct CreateQueueResultDeserializer; impl CreateQueueResultDeserializer { #[allow(unused_variables)] fn deserialize<T: Peek + Next>( tag_name: &str, stack: &mut T, ) -> Result<CreateQueueResult, XmlParseError> { deserialize_elements::<_, CreateQueueResult, _>(tag_name, stack, |name, stack, obj| { match name { "QueueUrl" => { obj.queue_url = Some(StringDeserializer::deserialize("QueueUrl", stack)?); } _ => skip_tree(stack), } Ok(()) }) } } /// <p><p/></p> #[derive(Default, Debug, Clone, PartialEq)] pub struct DeleteMessageBatchRequest { /// <p>A list of receipt handles for the messages to be deleted.</p> pub entries: Vec<DeleteMessageBatchRequestEntry>, /// <p>The URL of the Amazon SQS queue from which messages are deleted.</p> <p>Queue URLs and names are case-sensitive.</p> pub queue_url: String, } /// Serialize `DeleteMessageBatchRequest` contents to a `SignedRequest`. struct DeleteMessageBatchRequestSerializer; impl DeleteMessageBatchRequestSerializer { fn serialize(params: &mut Params, name: &str, obj: &DeleteMessageBatchRequest) { let mut prefix = name.to_string(); if prefix != "" { prefix.push_str("."); } DeleteMessageBatchRequestEntryListSerializer::serialize( params, &format!("{}{}", prefix, "DeleteMessageBatchRequestEntry"), &obj.entries, ); params.put(&format!("{}{}", prefix, "QueueUrl"), &obj.queue_url); } } /// <p>Encloses a receipt handle and an identifier for it.</p> #[derive(Default, Debug, Clone, PartialEq)] pub struct DeleteMessageBatchRequestEntry { /// <p><p>An identifier for this particular receipt handle. This is used to communicate the result.</p> <note> <p>The <code>Id</code>s of a batch request need to be unique within a request</p> </note></p> pub id: String, /// <p>A receipt handle.</p> pub receipt_handle: String, } /// Serialize `DeleteMessageBatchRequestEntry` contents to a `SignedRequest`. struct DeleteMessageBatchRequestEntrySerializer; impl DeleteMessageBatchRequestEntrySerializer { fn serialize(params: &mut Params, name: &str, obj: &DeleteMessageBatchRequestEntry) { let mut prefix = name.to_string(); if prefix != "" { prefix.push_str("."); } params.put(&format!("{}{}", prefix, "Id"), &obj.id); params.put( &format!("{}{}", prefix, "ReceiptHandle"), &obj.receipt_handle, ); } } /// Serialize `DeleteMessageBatchRequestEntryList` contents to a `SignedRequest`. struct DeleteMessageBatchRequestEntryListSerializer; impl DeleteMessageBatchRequestEntryListSerializer { fn serialize(params: &mut Params, name: &str, obj: &Vec<DeleteMessageBatchRequestEntry>) { for (index, obj) in obj.iter().enumerate() { let key = format!("{}.{}", name, index + 1); DeleteMessageBatchRequestEntrySerializer::serialize(params, &key, obj); } } } /// <p>For each message in the batch, the response contains a <code> <a>DeleteMessageBatchResultEntry</a> </code> tag if the message is deleted or a <code> <a>BatchResultErrorEntry</a> </code> tag if the message can't be deleted.</p> #[derive(Default, Debug, Clone, PartialEq)] pub struct DeleteMessageBatchResult { /// <p>A list of <code> <a>BatchResultErrorEntry</a> </code> items.</p> pub failed: Vec<BatchResultErrorEntry>, /// <p>A list of <code> <a>DeleteMessageBatchResultEntry</a> </code> items.</p> pub successful: Vec<DeleteMessageBatchResultEntry>, } struct DeleteMessageBatchResultDeserializer; impl DeleteMessageBatchResultDeserializer { #[allow(unused_variables)] fn deserialize<T: Peek + Next>( tag_name: &str, stack: &mut T, ) -> Result<DeleteMessageBatchResult, XmlParseError> { deserialize_elements::<_, DeleteMessageBatchResult, _>( tag_name, stack, |name, stack, obj| { match name { "BatchResultErrorEntry" => { obj.failed .extend(BatchResultErrorEntryListDeserializer::deserialize( "BatchResultErrorEntry", stack, )?); } "DeleteMessageBatchResultEntry" => { obj.successful.extend( DeleteMessageBatchResultEntryListDeserializer::deserialize( "DeleteMessageBatchResultEntry", stack, )?, ); } _ => skip_tree(stack), } Ok(()) }, ) } } /// <p>Encloses the <code>Id</code> of an entry in <code> <a>DeleteMessageBatch</a>.</code> </p> #[derive(Default, Debug, Clone, PartialEq)] pub struct DeleteMessageBatchResultEntry { /// <p>Represents a successfully deleted message.</p> pub id: String, } struct DeleteMessageBatchResultEntryDeserializer; impl DeleteMessageBatchResultEntryDeserializer { #[allow(unused_variables)] fn deserialize<T: Peek + Next>( tag_name: &str, stack: &mut T, ) -> Result<DeleteMessageBatchResultEntry, XmlParseError> { deserialize_elements::<_, DeleteMessageBatchResultEntry, _>( tag_name, stack, |name, stack, obj| { match name { "Id" => { obj.id = StringDeserializer::deserialize("Id", stack)?; } _ => skip_tree(stack), } Ok(()) }, ) } } struct DeleteMessageBatchResultEntryListDeserializer; impl DeleteMessageBatchResultEntryListDeserializer { #[allow(unused_variables)] fn deserialize<T: Peek + Next>( tag_name: &str, stack: &mut T, ) -> Result<Vec<DeleteMessageBatchResultEntry>, XmlParseError> { let mut obj = vec![]; loop { let consume_next_tag = match stack.peek() { Some(&Ok(xml::reader::XmlEvent::StartElement { ref name, .. })) => { name.local_name == tag_name } _ => false, }; if consume_next_tag { obj.push(DeleteMessageBatchResultEntryDeserializer::deserialize( tag_name, stack, )?); } else { break; } } Ok(obj) } } /// <p><p/></p> #[derive(Default, Debug, Clone, PartialEq)] pub struct DeleteMessageRequest { /// <p>The URL of the Amazon SQS queue from which messages are deleted.</p> <p>Queue URLs and names are case-sensitive.</p> pub queue_url: String, /// <p>The receipt handle associated with the message to delete.</p> pub receipt_handle: String, } /// Serialize `DeleteMessageRequest` contents to a `SignedRequest`. struct DeleteMessageRequestSerializer; impl DeleteMessageRequestSerializer { fn serialize(params: &mut Params, name: &str, obj: &DeleteMessageRequest) { let mut prefix = name.to_string(); if prefix != "" { prefix.push_str("."); } params.put(&format!("{}{}", prefix, "QueueUrl"), &obj.queue_url); params.put( &format!("{}{}", prefix, "ReceiptHandle"), &obj.receipt_handle, ); } } /// <p><p/></p> #[derive(Default, Debug, Clone, PartialEq)] pub struct DeleteQueueRequest { /// <p>The URL of the Amazon SQS queue to delete.</p> <p>Queue URLs and names are case-sensitive.</p> pub queue_url: String, } /// Serialize `DeleteQueueRequest` contents to a `SignedRequest`. struct DeleteQueueRequestSerializer; impl DeleteQueueRequestSerializer { fn serialize(params: &mut Params, name: &str, obj: &DeleteQueueRequest) { let mut prefix = name.to_string(); if prefix != "" { prefix.push_str("."); } params.put(&format!("{}{}", prefix, "QueueUrl"), &obj.queue_url); } } /// <p><p/></p> #[derive(Default, Debug, Clone, PartialEq)] pub struct GetQueueAttributesRequest { /// <p><p>A list of attributes for which to retrieve information.</p> <note> <p>In the future, new attributes might be added. If you write code that calls this action, we recommend that you structure your code so that it can handle new attributes gracefully.</p> </note> <p>The following attributes are supported:</p> <ul> <li> <p> <code>All</code> - Returns all values. </p> </li> <li> <p> <code>ApproximateNumberOfMessages</code> - Returns the approximate number of messages available for retrieval from the queue.</p> </li> <li> <p> <code>ApproximateNumberOfMessagesDelayed</code> - Returns the approximate number of messages in the queue that are delayed and not available for reading immediately. This can happen when the queue is configured as a delay queue or when a message has been sent with a delay parameter.</p> </li> <li> <p> <code>ApproximateNumberOfMessagesNotVisible</code> - Returns the approximate number of messages that are in flight. Messages are considered to be <i>in flight</i> if they have been sent to a client but have not yet been deleted or have not yet reached the end of their visibility window. </p> </li> <li> <p> <code>CreatedTimestamp</code> - Returns the time when the queue was created in seconds (<a href="http://en.wikipedia.org/wiki/Unix_time">epoch time</a>).</p> </li> <li> <p> <code>DelaySeconds</code> - Returns the default delay on the queue in seconds.</p> </li> <li> <p> <code>LastModifiedTimestamp</code> - Returns the time when the queue was last changed in seconds (<a href="http://en.wikipedia.org/wiki/Unix_time">epoch time</a>).</p> </li> <li> <p> <code>MaximumMessageSize</code> - Returns the limit of how many bytes a message can contain before Amazon SQS rejects it.</p> </li> <li> <p> <code>MessageRetentionPeriod</code> - Returns the length of time, in seconds, for which Amazon SQS retains a message.</p> </li> <li> <p> <code>Policy</code> - Returns the policy of the queue.</p> </li> <li> <p> <code>QueueArn</code> - Returns the Amazon resource name (ARN) of the queue.</p> </li> <li> <p> <code>ReceiveMessageWaitTimeSeconds</code> - Returns the length of time, in seconds, for which the <code>ReceiveMessage</code> action waits for a message to arrive. </p> </li> <li> <p> <code>RedrivePolicy</code> - Returns the string that includes the parameters for dead-letter queue functionality of the source queue. For more information about the redrive policy and dead-letter queues, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-dead-letter-queues.html">Using Amazon SQS Dead-Letter Queues</a> in the <i>Amazon Simple Queue Service Developer Guide</i>. </p> <ul> <li> <p> <code>deadLetterTargetArn</code> - The Amazon Resource Name (ARN) of the dead-letter queue to which Amazon SQS moves messages after the value of <code>maxReceiveCount</code> is exceeded.</p> </li> <li> <p> <code>maxReceiveCount</code> - The number of times a message is delivered to the source queue before being moved to the dead-letter queue. When the <code>ReceiveCount</code> for a message exceeds the <code>maxReceiveCount</code> for a queue, Amazon SQS moves the message to the dead-letter-queue.</p> </li> </ul> </li> <li> <p> <code>VisibilityTimeout</code> - Returns the visibility timeout for the queue. For more information about the visibility timeout, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-visibility-timeout.html">Visibility Timeout</a> in the <i>Amazon Simple Queue Service Developer Guide</i>. </p> </li> </ul> <p>The following attributes apply only to <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-server-side-encryption.html">server-side-encryption</a>:</p> <ul> <li> <p> <code>KmsMasterKeyId</code> - Returns the ID of an AWS-managed customer master key (CMK) for Amazon SQS or a custom CMK. For more information, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-server-side-encryption.html#sqs-sse-key-terms">Key Terms</a>. </p> </li> <li> <p> <code>KmsDataKeyReusePeriodSeconds</code> - Returns the length of time, in seconds, for which Amazon SQS can reuse a data key to encrypt or decrypt messages before calling AWS KMS again. For more information, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-server-side-encryption.html#sqs-how-does-the-data-key-reuse-period-work">How Does the Data Key Reuse Period Work?</a>. </p> </li> </ul> <p>The following attributes apply only to <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/FIFO-queues.html">FIFO (first-in-first-out) queues</a>:</p> <ul> <li> <p> <code>FifoQueue</code> - Returns whether the queue is FIFO. For more information, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/FIFO-queues.html#FIFO-queues-understanding-logic">FIFO Queue Logic</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> <note> <p>To determine whether a queue is <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/FIFO-queues.html">FIFO</a>, you can check whether <code>QueueName</code> ends with the <code>.fifo</code> suffix.</p> </note> </li> <li> <p> <code>ContentBasedDeduplication</code> - Returns whether content-based deduplication is enabled for the queue. For more information, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/FIFO-queues.html#FIFO-queues-exactly-once-processing">Exactly-Once Processing</a> in the <i>Amazon Simple Queue Service Developer Guide</i>. </p> </li> </ul></p> pub attribute_names: Option<Vec<String>>, /// <p>The URL of the Amazon SQS queue whose attribute information is retrieved.</p> <p>Queue URLs and names are case-sensitive.</p> pub queue_url: String, } /// Serialize `GetQueueAttributesRequest` contents to a `SignedRequest`. struct GetQueueAttributesRequestSerializer; impl GetQueueAttributesRequestSerializer { fn serialize(params: &mut Params, name: &str, obj: &GetQueueAttributesRequest) { let mut prefix = name.to_string(); if prefix != "" { prefix.push_str("."); } if let Some(ref field_value) = obj.attribute_names { AttributeNameListSerializer::serialize( params, &format!("{}{}", prefix, "AttributeName"), field_value, ); } params.put(&format!("{}{}", prefix, "QueueUrl"), &obj.queue_url); } } /// <p>A list of returned queue attributes.</p> #[derive(Default, Debug, Clone, PartialEq)] pub struct GetQueueAttributesResult { /// <p>A map of attributes to their respective values.</p> pub attributes: Option<::std::collections::HashMap<String, String>>, } struct GetQueueAttributesResultDeserializer; impl GetQueueAttributesResultDeserializer { #[allow(unused_variables)] fn deserialize<T: Peek + Next>( tag_name: &str, stack: &mut T, ) -> Result<GetQueueAttributesResult, XmlParseError> { deserialize_elements::<_, GetQueueAttributesResult, _>( tag_name, stack, |name, stack, obj| { match name { "Attribute" => { obj.attributes = Some(QueueAttributeMapDeserializer::deserialize( "Attribute", stack, )?); } _ => skip_tree(stack), } Ok(()) }, ) } } /// <p><p/></p> #[derive(Default, Debug, Clone, PartialEq)] pub struct GetQueueUrlRequest { /// <p>The name of the queue whose URL must be fetched. Maximum 80 characters. Valid values: alphanumeric characters, hyphens (<code>-</code>), and underscores (<code>_</code>).</p> <p>Queue URLs and names are case-sensitive.</p> pub queue_name: String, /// <p>The AWS account ID of the account that created the queue.</p> pub queue_owner_aws_account_id: Option<String>, } /// Serialize `GetQueueUrlRequest` contents to a `SignedRequest`. struct GetQueueUrlRequestSerializer; impl GetQueueUrlRequestSerializer { fn serialize(params: &mut Params, name: &str, obj: &GetQueueUrlRequest) { let mut prefix = name.to_string(); if prefix != "" { prefix.push_str("."); } params.put(&format!("{}{}", prefix, "QueueName"), &obj.queue_name); if let Some(ref field_value) = obj.queue_owner_aws_account_id { params.put( &format!("{}{}", prefix, "QueueOwnerAWSAccountId"), &field_value, ); } } } /// <p>For more information, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-api-responses.html">Interpreting Responses</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> #[derive(Default, Debug, Clone, PartialEq)] pub struct GetQueueUrlResult { /// <p>The URL of the queue.</p> pub queue_url: Option<String>, } struct GetQueueUrlResultDeserializer; impl GetQueueUrlResultDeserializer { #[allow(unused_variables)] fn deserialize<T: Peek + Next>( tag_name: &str, stack: &mut T, ) -> Result<GetQueueUrlResult, XmlParseError> { deserialize_elements::<_, GetQueueUrlResult, _>(tag_name, stack, |name, stack, obj| { match name { "QueueUrl" => { obj.queue_url = Some(StringDeserializer::deserialize("QueueUrl", stack)?); } _ => skip_tree(stack), } Ok(()) }) } } /// <p><p/></p> #[derive(Default, Debug, Clone, PartialEq)] pub struct ListDeadLetterSourceQueuesRequest { /// <p>The URL of a dead-letter queue.</p> <p>Queue URLs and names are case-sensitive.</p> pub queue_url: String, } /// Serialize `ListDeadLetterSourceQueuesRequest` contents to a `SignedRequest`. struct ListDeadLetterSourceQueuesRequestSerializer; impl ListDeadLetterSourceQueuesRequestSerializer { fn serialize(params: &mut Params, name: &str, obj: &ListDeadLetterSourceQueuesRequest) { let mut prefix = name.to_string(); if prefix != "" { prefix.push_str("."); } params.put(&format!("{}{}", prefix, "QueueUrl"), &obj.queue_url); } } /// <p>A list of your dead letter source queues.</p> #[derive(Default, Debug, Clone, PartialEq)] pub struct ListDeadLetterSourceQueuesResult { /// <p>A list of source queue URLs that have the <code>RedrivePolicy</code> queue attribute configured with a dead-letter queue.</p> pub queue_urls: Vec<String>, } struct ListDeadLetterSourceQueuesResultDeserializer; impl ListDeadLetterSourceQueuesResultDeserializer { #[allow(unused_variables)] fn deserialize<T: Peek + Next>( tag_name: &str, stack: &mut T, ) -> Result<ListDeadLetterSourceQueuesResult, XmlParseError> { deserialize_elements::<_, ListDeadLetterSourceQueuesResult, _>( tag_name, stack, |name, stack, obj| { match name { "QueueUrl" => { obj.queue_urls .extend(QueueUrlListDeserializer::deserialize("QueueUrl", stack)?); } _ => skip_tree(stack), } Ok(()) }, ) } } #[derive(Default, Debug, Clone, PartialEq)] pub struct ListQueueTagsRequest { /// <p>The URL of the queue.</p> pub queue_url: String, } /// Serialize `ListQueueTagsRequest` contents to a `SignedRequest`. struct ListQueueTagsRequestSerializer; impl ListQueueTagsRequestSerializer { fn serialize(params: &mut Params, name: &str, obj: &ListQueueTagsRequest) { let mut prefix = name.to_string(); if prefix != "" { prefix.push_str("."); } params.put(&format!("{}{}", prefix, "QueueUrl"), &obj.queue_url); } } #[derive(Default, Debug, Clone, PartialEq)] pub struct ListQueueTagsResult { /// <p>The list of all tags added to the specified queue.</p> pub tags: Option<::std::collections::HashMap<String, String>>, } struct ListQueueTagsResultDeserializer; impl ListQueueTagsResultDeserializer { #[allow(unused_variables)] fn deserialize<T: Peek + Next>( tag_name: &str, stack: &mut T, ) -> Result<ListQueueTagsResult, XmlParseError> { deserialize_elements::<_, ListQueueTagsResult, _>(tag_name, stack, |name, stack, obj| { match name { "Tag" => { obj.tags = Some(TagMapDeserializer::deserialize("Tag", stack)?); } _ => skip_tree(stack), } Ok(()) }) } } /// <p><p/></p> #[derive(Default, Debug, Clone, PartialEq)] pub struct ListQueuesRequest { /// <p>A string to use for filtering the list results. Only those queues whose name begins with the specified string are returned.</p> <p>Queue URLs and names are case-sensitive.</p> pub queue_name_prefix: Option<String>, } /// Serialize `ListQueuesRequest` contents to a `SignedRequest`. struct ListQueuesRequestSerializer; impl ListQueuesRequestSerializer { fn serialize(params: &mut Params, name: &str, obj: &ListQueuesRequest) { let mut prefix = name.to_string(); if prefix != "" { prefix.push_str("."); } if let Some(ref field_value) = obj.queue_name_prefix { params.put(&format!("{}{}", prefix, "QueueNamePrefix"), &field_value); } } } /// <p>A list of your queues.</p> #[derive(Default, Debug, Clone, PartialEq)] pub struct ListQueuesResult { /// <p>A list of queue URLs, up to 1,000 entries.</p> pub queue_urls: Option<Vec<String>>, } struct ListQueuesResultDeserializer; impl ListQueuesResultDeserializer { #[allow(unused_variables)] fn deserialize<T: Peek + Next>( tag_name: &str, stack: &mut T, ) -> Result<ListQueuesResult, XmlParseError> { deserialize_elements::<_, ListQueuesResult, _>(tag_name, stack, |name, stack, obj| { match name { "QueueUrl" => { obj.queue_urls .get_or_insert(vec![]) .extend(QueueUrlListDeserializer::deserialize("QueueUrl", stack)?); } _ => skip_tree(stack), } Ok(()) }) } } /// <p>An Amazon SQS message.</p> #[derive(Default, Debug, Clone, PartialEq)] pub struct Message { /// <p>A map of the attributes requested in <code> <a>ReceiveMessage</a> </code> to their respective values. Supported attributes:</p> <ul> <li> <p> <code>ApproximateReceiveCount</code> </p> </li> <li> <p> <code>ApproximateFirstReceiveTimestamp</code> </p> </li> <li> <p> <code>MessageDeduplicationId</code> </p> </li> <li> <p> <code>MessageGroupId</code> </p> </li> <li> <p> <code>SenderId</code> </p> </li> <li> <p> <code>SentTimestamp</code> </p> </li> <li> <p> <code>SequenceNumber</code> </p> </li> </ul> <p> <code>ApproximateFirstReceiveTimestamp</code> and <code>SentTimestamp</code> are each returned as an integer representing the <a href="http://en.wikipedia.org/wiki/Unix_time">epoch time</a> in milliseconds.</p> pub attributes: Option<::std::collections::HashMap<String, String>>, /// <p>The message's contents (not URL-encoded).</p> pub body: Option<String>, /// <p>An MD5 digest of the non-URL-encoded message body string.</p> pub md5_of_body: Option<String>, /// <p>An MD5 digest of the non-URL-encoded message attribute string. You can use this attribute to verify that Amazon SQS received the message correctly. Amazon SQS URL-decodes the message before creating the MD5 digest. For information about MD5, see <a href="https://www.ietf.org/rfc/rfc1321.txt">RFC1321</a>.</p> pub md5_of_message_attributes: Option<String>, /// <p>Each message attribute consists of a <code>Name</code>, <code>Type</code>, and <code>Value</code>. For more information, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-message-attributes.html">Amazon SQS Message Attributes</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> pub message_attributes: Option<::std::collections::HashMap<String, MessageAttributeValue>>, /// <p>A unique identifier for the message. A <code>MessageId</code>is considered unique across all AWS accounts for an extended period of time.</p> pub message_id: Option<String>, /// <p>An identifier associated with the act of receiving the message. A new receipt handle is returned every time you receive a message. When deleting a message, you provide the last received receipt handle to delete the message.</p> pub receipt_handle: Option<String>, } struct MessageDeserializer; impl MessageDeserializer { #[allow(unused_variables)] fn deserialize<T: Peek + Next>( tag_name: &str, stack: &mut T, ) -> Result<Message, XmlParseError> { deserialize_elements::<_, Message, _>(tag_name, stack, |name, stack, obj| { match name { "Attribute" => { obj.attributes = Some(MessageSystemAttributeMapDeserializer::deserialize( "Attribute", stack, )?); } "Body" => { obj.body = Some(StringDeserializer::deserialize("Body", stack)?); } "MD5OfBody" => { obj.md5_of_body = Some(StringDeserializer::deserialize("MD5OfBody", stack)?); } "MD5OfMessageAttributes" => { obj.md5_of_message_attributes = Some(StringDeserializer::deserialize( "MD5OfMessageAttributes", stack, )?); } "MessageAttribute" => { obj.message_attributes = Some(MessageBodyAttributeMapDeserializer::deserialize( "MessageAttribute", stack, )?); } "MessageId" => { obj.message_id = Some(StringDeserializer::deserialize("MessageId", stack)?); } "ReceiptHandle" => { obj.receipt_handle = Some(StringDeserializer::deserialize("ReceiptHandle", stack)?); } _ => skip_tree(stack), } Ok(()) }) } } /// Serialize `MessageAttributeNameList` contents to a `SignedRequest`. struct MessageAttributeNameListSerializer; impl MessageAttributeNameListSerializer { fn serialize(params: &mut Params, name: &str, obj: &Vec<String>) { for (index, obj) in obj.iter().enumerate() { let key = format!("{}.{}", name, index + 1); params.put(&key, &obj); } } } /// <p>The user-specified message attribute value. For string data types, the <code>Value</code> attribute has the same restrictions on the content as the message body. For more information, see <code> <a>SendMessage</a>.</code> </p> <p> <code>Name</code>, <code>type</code>, <code>value</code> and the message body must not be empty or null. All parts of the message attribute, including <code>Name</code>, <code>Type</code>, and <code>Value</code>, are part of the message size restriction (256 KB or 262,144 bytes).</p> #[derive(Default, Debug, Clone, PartialEq)] pub struct MessageAttributeValue { /// <p>Not implemented. Reserved for future use.</p> pub binary_list_values: Option<Vec<bytes::Bytes>>, /// <p>Binary type attributes can store any binary data, such as compressed data, encrypted data, or images.</p> pub binary_value: Option<bytes::Bytes>, /// <p>Amazon SQS supports the following logical data types: <code>String</code>, <code>Number</code>, and <code>Binary</code>. For the <code>Number</code> data type, you must use <code>StringValue</code>.</p> <p>You can also append custom labels. For more information, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-message-attributes.html">Amazon SQS Message Attributes</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> pub data_type: String, /// <p>Not implemented. Reserved for future use.</p> pub string_list_values: Option<Vec<String>>, /// <p>Strings are Unicode with UTF-8 binary encoding. For a list of code values, see <a href="http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters">ASCII Printable Characters</a>.</p> pub string_value: Option<String>, } struct MessageAttributeValueDeserializer; impl MessageAttributeValueDeserializer { #[allow(unused_variables)] fn deserialize<T: Peek + Next>( tag_name: &str, stack: &mut T, ) -> Result<MessageAttributeValue, XmlParseError> { deserialize_elements::<_, MessageAttributeValue, _>(tag_name, stack, |name, stack, obj| { match name { "BinaryListValue" => { obj.binary_list_values.get_or_insert(vec![]).extend( BinaryListDeserializer::deserialize("BinaryListValue", stack)?, ); } "BinaryValue" => { obj.binary_value = Some(BinaryDeserializer::deserialize("BinaryValue", stack)?); } "DataType" => { obj.data_type = StringDeserializer::deserialize("DataType", stack)?; } "StringListValue" => { obj.string_list_values.get_or_insert(vec![]).extend( StringListDeserializer::deserialize("StringListValue", stack)?, ); } "StringValue" => { obj.string_value = Some(StringDeserializer::deserialize("StringValue", stack)?); } _ => skip_tree(stack), } Ok(()) }) } } /// Serialize `MessageAttributeValue` contents to a `SignedRequest`. struct MessageAttributeValueSerializer; impl MessageAttributeValueSerializer { fn serialize(params: &mut Params, name: &str, obj: &MessageAttributeValue) { let mut prefix = name.to_string(); if prefix != "" { prefix.push_str("."); } if let Some(ref field_value) = obj.binary_list_values { BinaryListSerializer::serialize( params, &format!("{}{}", prefix, "BinaryListValue"), field_value, ); } if let Some(ref field_value) = obj.binary_value { params.put( &format!("{}{}", prefix, "BinaryValue"), ::std::str::from_utf8(&field_value).unwrap(), ); } params.put(&format!("{}{}", prefix, "DataType"), &obj.data_type); if let Some(ref field_value) = obj.string_list_values { StringListSerializer::serialize( params, &format!("{}{}", prefix, "StringListValue"), field_value, ); } if let Some(ref field_value) = obj.string_value { params.put(&format!("{}{}", prefix, "StringValue"), &field_value); } } } struct MessageBodyAttributeMapDeserializer; impl MessageBodyAttributeMapDeserializer { #[allow(unused_variables)] fn deserialize<T: Peek + Next>( tag_name: &str, stack: &mut T, ) -> Result<::std::collections::HashMap<String, MessageAttributeValue>, XmlParseError> { let mut obj = ::std::collections::HashMap::new(); while peek_at_name(stack)? == "entry" { start_element("entry", stack)?; let key = StringDeserializer::deserialize("Name", stack)?; let value = MessageAttributeValueDeserializer::deserialize("Value", stack)?; obj.insert(key, value); end_element("entry", stack)?; } Ok(obj) } } /// Serialize `MessageBodyAttributeMap` contents to a `SignedRequest`. struct MessageBodyAttributeMapSerializer; impl MessageBodyAttributeMapSerializer { fn serialize( params: &mut Params, name: &str, obj: &::std::collections::HashMap<String, MessageAttributeValue>, ) { for (index, (key, value)) in obj.iter().enumerate() { let prefix = format!("{}.{}", name, index + 1); params.put(&format!("{}.{}", prefix, "Name"), &key); MessageAttributeValueSerializer::serialize( params, &format!("{}.{}", prefix, "Value"), value, ); } } } struct MessageListDeserializer; impl MessageListDeserializer { #[allow(unused_variables)] fn deserialize<T: Peek + Next>( tag_name: &str, stack: &mut T, ) -> Result<Vec<Message>, XmlParseError> { let mut obj = vec![]; loop { let consume_next_tag = match stack.peek() { Some(&Ok(xml::reader::XmlEvent::StartElement { ref name, .. })) => { name.local_name == tag_name } _ => false, }; if consume_next_tag { obj.push(MessageDeserializer::deserialize(tag_name, stack)?); } else { break; } } Ok(obj) } } struct MessageSystemAttributeMapDeserializer; impl MessageSystemAttributeMapDeserializer { #[allow(unused_variables)] fn deserialize<T: Peek + Next>( tag_name: &str, stack: &mut T, ) -> Result<::std::collections::HashMap<String, String>, XmlParseError> { let mut obj = ::std::collections::HashMap::new(); while peek_at_name(stack)? == "Attribute" { start_element("Attribute", stack)?; let key = MessageSystemAttributeNameDeserializer::deserialize("Name", stack)?; let value = StringDeserializer::deserialize("Value", stack)?; obj.insert(key, value); end_element("Attribute", stack)?; } Ok(obj) } } struct MessageSystemAttributeNameDeserializer; impl MessageSystemAttributeNameDeserializer { #[allow(unused_variables)] fn deserialize<T: Peek + Next>(tag_name: &str, stack: &mut T) -> Result<String, XmlParseError> { start_element(tag_name, stack)?; let obj = characters(stack)?; end_element(tag_name, stack)?; Ok(obj) } } /// <p><p/></p> #[derive(Default, Debug, Clone, PartialEq)] pub struct PurgeQueueRequest { /// <p>The URL of the queue from which the <code>PurgeQueue</code> action deletes messages.</p> <p>Queue URLs and names are case-sensitive.</p> pub queue_url: String, } /// Serialize `PurgeQueueRequest` contents to a `SignedRequest`. struct PurgeQueueRequestSerializer; impl PurgeQueueRequestSerializer { fn serialize(params: &mut Params, name: &str, obj: &PurgeQueueRequest) { let mut prefix = name.to_string(); if prefix != "" { prefix.push_str("."); } params.put(&format!("{}{}", prefix, "QueueUrl"), &obj.queue_url); } } struct QueueAttributeMapDeserializer; impl QueueAttributeMapDeserializer { #[allow(unused_variables)] fn deserialize<T: Peek + Next>( tag_name: &str, stack: &mut T, ) -> Result<::std::collections::HashMap<String, String>, XmlParseError> { let mut obj = ::std::collections::HashMap::new(); while peek_at_name(stack)? == "Attribute" { start_element("Attribute", stack)?; let key = QueueAttributeNameDeserializer::deserialize("Name", stack)?; let value = StringDeserializer::deserialize("Value", stack)?; obj.insert(key, value); end_element("Attribute", stack)?; } Ok(obj) } } /// Serialize `QueueAttributeMap` contents to a `SignedRequest`. struct QueueAttributeMapSerializer; impl QueueAttributeMapSerializer { fn serialize( params: &mut Params, name: &str, obj: &::std::collections::HashMap<String, String>, ) { for (index, (key, value)) in obj.iter().enumerate() { let prefix = format!("{}.{}", name, index + 1); params.put(&format!("{}.{}", prefix, "Name"), &key); params.put(&format!("{}.{}", prefix, "Value"), &value); } } } struct QueueAttributeNameDeserializer; impl QueueAttributeNameDeserializer { #[allow(unused_variables)] fn deserialize<T: Peek + Next>(tag_name: &str, stack: &mut T) -> Result<String, XmlParseError> { start_element(tag_name, stack)?; let obj = characters(stack)?; end_element(tag_name, stack)?; Ok(obj) } } struct QueueUrlListDeserializer; impl QueueUrlListDeserializer { #[allow(unused_variables)] fn deserialize<T: Peek + Next>( tag_name: &str, stack: &mut T, ) -> Result<Vec<String>, XmlParseError> { let mut obj = vec![]; loop { let consume_next_tag = match stack.peek() { Some(&Ok(xml::reader::XmlEvent::StartElement { ref name, .. })) => { name.local_name == tag_name } _ => false, }; if consume_next_tag { obj.push(StringDeserializer::deserialize(tag_name, stack)?); } else { break; } } Ok(obj) } } /// <p><p/></p> #[derive(Default, Debug, Clone, PartialEq)] pub struct ReceiveMessageRequest { /// <p><p>A list of s that need to be returned along with each message. These attributes include:</p> <ul> <li> <p> <code>All</code> - Returns all values.</p> </li> <li> <p> <code>ApproximateFirstReceiveTimestamp</code> - Returns the time the message was first received from the queue (<a href="http://en.wikipedia.org/wiki/Unix_time">epoch time</a> in milliseconds).</p> </li> <li> <p> <code>ApproximateReceiveCount</code> - Returns the number of times a message has been received from the queue but not deleted.</p> </li> <li> <p> <code>SenderId</code> </p> <ul> <li> <p>For an IAM user, returns the IAM user ID, for example <code>ABCDEFGHI1JKLMNOPQ23R</code>.</p> </li> <li> <p>For an IAM role, returns the IAM role ID, for example <code>ABCDE1F2GH3I4JK5LMNOP:i-a123b456</code>.</p> </li> </ul> </li> <li> <p> <code>SentTimestamp</code> - Returns the time the message was sent to the queue (<a href="http://en.wikipedia.org/wiki/Unix_time">epoch time</a> in milliseconds).</p> </li> <li> <p> <code>MessageDeduplicationId</code> - Returns the value provided by the producer that calls the <code> <a>SendMessage</a> </code> action.</p> </li> <li> <p> <code>MessageGroupId</code> - Returns the value provided by the producer that calls the <code> <a>SendMessage</a> </code> action. Messages with the same <code>MessageGroupId</code> are returned in sequence.</p> </li> <li> <p> <code>SequenceNumber</code> - Returns the value provided by Amazon SQS.</p> </li> </ul></p> pub attribute_names: Option<Vec<String>>, /// <p>The maximum number of messages to return. Amazon SQS never returns more messages than this value (however, fewer messages might be returned). Valid values: 1 to 10. Default: 1.</p> pub max_number_of_messages: Option<i64>, /// <p>The name of the message attribute, where <i>N</i> is the index.</p> <ul> <li> <p>The name can contain alphanumeric characters and the underscore (<code>_</code>), hyphen (<code>-</code>), and period (<code>.</code>).</p> </li> <li> <p>The name is case-sensitive and must be unique among all attribute names for the message.</p> </li> <li> <p>The name must not start with AWS-reserved prefixes such as <code>AWS.</code> or <code>Amazon.</code> (or any casing variants).</p> </li> <li> <p>The name must not start or end with a period (<code>.</code>), and it should not have periods in succession (<code>..</code>).</p> </li> <li> <p>The name can be up to 256 characters long.</p> </li> </ul> <p>When using <code>ReceiveMessage</code>, you can send a list of attribute names to receive, or you can return all of the attributes by specifying <code>All</code> or <code>.*</code> in your request. You can also use all message attributes starting with a prefix, for example <code>bar.*</code>.</p> pub message_attribute_names: Option<Vec<String>>, /// <p>The URL of the Amazon SQS queue from which messages are received.</p> <p>Queue URLs and names are case-sensitive.</p> pub queue_url: String, /// <p>This parameter applies only to FIFO (first-in-first-out) queues.</p> <p>The token used for deduplication of <code>ReceiveMessage</code> calls. If a networking issue occurs after a <code>ReceiveMessage</code> action, and instead of a response you receive a generic error, you can retry the same action with an identical <code>ReceiveRequestAttemptId</code> to retrieve the same set of messages, even if their visibility timeout has not yet expired.</p> <ul> <li> <p>You can use <code>ReceiveRequestAttemptId</code> only for 5 minutes after a <code>ReceiveMessage</code> action.</p> </li> <li> <p>When you set <code>FifoQueue</code>, a caller of the <code>ReceiveMessage</code> action can provide a <code>ReceiveRequestAttemptId</code> explicitly.</p> </li> <li> <p>If a caller of the <code>ReceiveMessage</code> action doesn't provide a <code>ReceiveRequestAttemptId</code>, Amazon SQS generates a <code>ReceiveRequestAttemptId</code>.</p> </li> <li> <p>You can retry the <code>ReceiveMessage</code> action with the same <code>ReceiveRequestAttemptId</code> if none of the messages have been modified (deleted or had their visibility changes).</p> </li> <li> <p>During a visibility timeout, subsequent calls with the same <code>ReceiveRequestAttemptId</code> return the same messages and receipt handles. If a retry occurs within the deduplication interval, it resets the visibility timeout. For more information, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-visibility-timeout.html">Visibility Timeout</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> <important> <p>If a caller of the <code>ReceiveMessage</code> action still processes messages when the visibility timeout expires and messages become visible, another worker consuming from the same queue can receive the same messages and therefore process duplicates. Also, if a consumer whose message processing time is longer than the visibility timeout tries to delete the processed messages, the action fails with an error.</p> <p>To mitigate this effect, ensure that your application observes a safe threshold before the visibility timeout expires and extend the visibility timeout as necessary.</p> </important> </li> <li> <p>While messages with a particular <code>MessageGroupId</code> are invisible, no more messages belonging to the same <code>MessageGroupId</code> are returned until the visibility timeout expires. You can still receive messages with another <code>MessageGroupId</code> as long as it is also visible.</p> </li> <li> <p>If a caller of <code>ReceiveMessage</code> can't track the <code>ReceiveRequestAttemptId</code>, no retries work until the original visibility timeout expires. As a result, delays might occur but the messages in the queue remain in a strict order.</p> </li> </ul> <p>The length of <code>ReceiveRequestAttemptId</code> is 128 characters. <code>ReceiveRequestAttemptId</code> can contain alphanumeric characters (<code>a-z</code>, <code>A-Z</code>, <code>0-9</code>) and punctuation (<code>!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~</code>).</p> <p>For best practices of using <code>ReceiveRequestAttemptId</code>, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/using-receiverequestattemptid-request-parameter.html">Using the ReceiveRequestAttemptId Request Parameter</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> pub receive_request_attempt_id: Option<String>, /// <p>The duration (in seconds) that the received messages are hidden from subsequent retrieve requests after being retrieved by a <code>ReceiveMessage</code> request.</p> pub visibility_timeout: Option<i64>, /// <p>The duration (in seconds) for which the call waits for a message to arrive in the queue before returning. If a message is available, the call returns sooner than <code>WaitTimeSeconds</code>. If no messages are available and the wait time expires, the call returns successfully with an empty list of messages.</p> pub wait_time_seconds: Option<i64>, } /// Serialize `ReceiveMessageRequest` contents to a `SignedRequest`. struct ReceiveMessageRequestSerializer; impl ReceiveMessageRequestSerializer { fn serialize(params: &mut Params, name: &str, obj: &ReceiveMessageRequest) { let mut prefix = name.to_string(); if prefix != "" { prefix.push_str("."); } if let Some(ref field_value) = obj.attribute_names { AttributeNameListSerializer::serialize( params, &format!("{}{}", prefix, "AttributeName"), field_value, ); } if let Some(ref field_value) = obj.max_number_of_messages { params.put( &format!("{}{}", prefix, "MaxNumberOfMessages"), &field_value, ); } if let Some(ref field_value) = obj.message_attribute_names { MessageAttributeNameListSerializer::serialize( params, &format!("{}{}", prefix, "MessageAttributeName"), field_value, ); } params.put(&format!("{}{}", prefix, "QueueUrl"), &obj.queue_url); if let Some(ref field_value) = obj.receive_request_attempt_id { params.put( &format!("{}{}", prefix, "ReceiveRequestAttemptId"), &field_value, ); } if let Some(ref field_value) = obj.visibility_timeout { params.put(&format!("{}{}", prefix, "VisibilityTimeout"), &field_value); } if let Some(ref field_value) = obj.wait_time_seconds { params.put(&format!("{}{}", prefix, "WaitTimeSeconds"), &field_value); } } } /// <p>A list of received messages.</p> #[derive(Default, Debug, Clone, PartialEq)] pub struct ReceiveMessageResult { /// <p>A list of messages.</p> pub messages: Option<Vec<Message>>, } struct ReceiveMessageResultDeserializer; impl ReceiveMessageResultDeserializer { #[allow(unused_variables)] fn deserialize<T: Peek + Next>( tag_name: &str, stack: &mut T, ) -> Result<ReceiveMessageResult, XmlParseError> { deserialize_elements::<_, ReceiveMessageResult, _>(tag_name, stack, |name, stack, obj| { match name { "Message" => { obj.messages .get_or_insert(vec![]) .extend(MessageListDeserializer::deserialize("Message", stack)?); } _ => skip_tree(stack), } Ok(()) }) } } /// <p><p/></p> #[derive(Default, Debug, Clone, PartialEq)] pub struct RemovePermissionRequest { /// <p>The identification of the permission to remove. This is the label added using the <code> <a>AddPermission</a> </code> action.</p> pub label: String, /// <p>The URL of the Amazon SQS queue from which permissions are removed.</p> <p>Queue URLs and names are case-sensitive.</p> pub queue_url: String, } /// Serialize `RemovePermissionRequest` contents to a `SignedRequest`. struct RemovePermissionRequestSerializer; impl RemovePermissionRequestSerializer { fn serialize(params: &mut Params, name: &str, obj: &RemovePermissionRequest) { let mut prefix = name.to_string(); if prefix != "" { prefix.push_str("."); } params.put(&format!("{}{}", prefix, "Label"), &obj.label); params.put(&format!("{}{}", prefix, "QueueUrl"), &obj.queue_url); } } /// <p><p/></p> #[derive(Default, Debug, Clone, PartialEq)] pub struct SendMessageBatchRequest { /// <p>A list of <code> <a>SendMessageBatchRequestEntry</a> </code> items.</p> pub entries: Vec<SendMessageBatchRequestEntry>, /// <p>The URL of the Amazon SQS queue to which batched messages are sent.</p> <p>Queue URLs and names are case-sensitive.</p> pub queue_url: String, } /// Serialize `SendMessageBatchRequest` contents to a `SignedRequest`. struct SendMessageBatchRequestSerializer; impl SendMessageBatchRequestSerializer { fn serialize(params: &mut Params, name: &str, obj: &SendMessageBatchRequest) { let mut prefix = name.to_string(); if prefix != "" { prefix.push_str("."); } SendMessageBatchRequestEntryListSerializer::serialize( params, &format!("{}{}", prefix, "SendMessageBatchRequestEntry"), &obj.entries, ); params.put(&format!("{}{}", prefix, "QueueUrl"), &obj.queue_url); } } /// <p>Contains the details of a single Amazon SQS message along with an <code>Id</code>.</p> #[derive(Default, Debug, Clone, PartialEq)] pub struct SendMessageBatchRequestEntry { /// <p><p>The length of time, in seconds, for which a specific message is delayed. Valid values: 0 to 900. Maximum: 15 minutes. Messages with a positive <code>DelaySeconds</code> value become available for processing after the delay period is finished. If you don't specify a value, the default value for the queue is applied. </p> <note> <p>When you set <code>FifoQueue</code>, you can't set <code>DelaySeconds</code> per message. You can set this parameter only on a queue level.</p> </note></p> pub delay_seconds: Option<i64>, /// <p><p>An identifier for a message in this batch used to communicate the result.</p> <note> <p>The <code>Id</code>s of a batch request need to be unique within a request</p> <p>This identifier can have up to 80 characters. The following characters are accepted: alphanumeric characters, hyphens(-), and underscores (_).</p> </note></p> pub id: String, /// <p>Each message attribute consists of a <code>Name</code>, <code>Type</code>, and <code>Value</code>. For more information, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-message-attributes.html">Amazon SQS Message Attributes</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> pub message_attributes: Option<::std::collections::HashMap<String, MessageAttributeValue>>, /// <p>The body of the message.</p> pub message_body: String, /// <p>This parameter applies only to FIFO (first-in-first-out) queues.</p> <p>The token used for deduplication of messages within a 5-minute minimum deduplication interval. If a message with a particular <code>MessageDeduplicationId</code> is sent successfully, subsequent messages with the same <code>MessageDeduplicationId</code> are accepted successfully but aren't delivered. For more information, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/FIFO-queues.html#FIFO-queues-exactly-once-processing"> Exactly-Once Processing</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> <ul> <li> <p>Every message must have a unique <code>MessageDeduplicationId</code>,</p> <ul> <li> <p>You may provide a <code>MessageDeduplicationId</code> explicitly.</p> </li> <li> <p>If you aren't able to provide a <code>MessageDeduplicationId</code> and you enable <code>ContentBasedDeduplication</code> for your queue, Amazon SQS uses a SHA-256 hash to generate the <code>MessageDeduplicationId</code> using the body of the message (but not the attributes of the message). </p> </li> <li> <p>If you don't provide a <code>MessageDeduplicationId</code> and the queue doesn't have <code>ContentBasedDeduplication</code> set, the action fails with an error.</p> </li> <li> <p>If the queue has <code>ContentBasedDeduplication</code> set, your <code>MessageDeduplicationId</code> overrides the generated one.</p> </li> </ul> </li> <li> <p>When <code>ContentBasedDeduplication</code> is in effect, messages with identical content sent within the deduplication interval are treated as duplicates and only one copy of the message is delivered.</p> </li> <li> <p>If you send one message with <code>ContentBasedDeduplication</code> enabled and then another message with a <code>MessageDeduplicationId</code> that is the same as the one generated for the first <code>MessageDeduplicationId</code>, the two messages are treated as duplicates and only one copy of the message is delivered. </p> </li> </ul> <note> <p>The <code>MessageDeduplicationId</code> is available to the consumer of the message (this can be useful for troubleshooting delivery issues).</p> <p>If a message is sent successfully but the acknowledgement is lost and the message is resent with the same <code>MessageDeduplicationId</code> after the deduplication interval, Amazon SQS can't detect duplicate messages.</p> <p>Amazon SQS continues to keep track of the message deduplication ID even after the message is received and deleted.</p> </note> <p>The length of <code>MessageDeduplicationId</code> is 128 characters. <code>MessageDeduplicationId</code> can contain alphanumeric characters (<code>a-z</code>, <code>A-Z</code>, <code>0-9</code>) and punctuation (<code>!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~</code>).</p> <p>For best practices of using <code>MessageDeduplicationId</code>, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/using-messagededuplicationid-property.html">Using the MessageDeduplicationId Property</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> pub message_deduplication_id: Option<String>, /// <p><p>This parameter applies only to FIFO (first-in-first-out) queues.</p> <p>The tag that specifies that a message belongs to a specific message group. Messages that belong to the same message group are processed in a FIFO manner (however, messages in different message groups might be processed out of order). To interleave multiple ordered streams within a single queue, use <code>MessageGroupId</code> values (for example, session data for multiple users). In this scenario, multiple consumers can process the queue, but the session data of each user is processed in a FIFO fashion.</p> <ul> <li> <p>You must associate a non-empty <code>MessageGroupId</code> with a message. If you don't provide a <code>MessageGroupId</code>, the action fails.</p> </li> <li> <p> <code>ReceiveMessage</code> might return messages with multiple <code>MessageGroupId</code> values. For each <code>MessageGroupId</code>, the messages are sorted by time sent. The caller can't specify a <code>MessageGroupId</code>.</p> </li> </ul> <p>The length of <code>MessageGroupId</code> is 128 characters. Valid values: alphanumeric characters and punctuation <code>(!"#$%&'()*+,-./:;<=>?@[]^_`{|}~)</code>.</p> <p>For best practices of using <code>MessageGroupId</code>, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/using-messagegroupid-property.html">Using the MessageGroupId Property</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> <important> <p> <code>MessageGroupId</code> is required for FIFO queues. You can't use it for Standard queues.</p> </important></p> pub message_group_id: Option<String>, } /// Serialize `SendMessageBatchRequestEntry` contents to a `SignedRequest`. struct SendMessageBatchRequestEntrySerializer; impl SendMessageBatchRequestEntrySerializer { fn serialize(params: &mut Params, name: &str, obj: &SendMessageBatchRequestEntry) { let mut prefix = name.to_string(); if prefix != "" { prefix.push_str("."); } if let Some(ref field_value) = obj.delay_seconds { params.put(&format!("{}{}", prefix, "DelaySeconds"), &field_value); } params.put(&format!("{}{}", prefix, "Id"), &obj.id); if let Some(ref field_value) = obj.message_attributes { MessageBodyAttributeMapSerializer::serialize( params, &format!("{}{}", prefix, "MessageAttribute"), field_value, ); } params.put(&format!("{}{}", prefix, "MessageBody"), &obj.message_body); if let Some(ref field_value) = obj.message_deduplication_id { params.put( &format!("{}{}", prefix, "MessageDeduplicationId"), &field_value, ); } if let Some(ref field_value) = obj.message_group_id { params.put(&format!("{}{}", prefix, "MessageGroupId"), &field_value); } } } /// Serialize `SendMessageBatchRequestEntryList` contents to a `SignedRequest`. struct SendMessageBatchRequestEntryListSerializer; impl SendMessageBatchRequestEntryListSerializer { fn serialize(params: &mut Params, name: &str, obj: &Vec<SendMessageBatchRequestEntry>) { for (index, obj) in obj.iter().enumerate() { let key = format!("{}.{}", name, index + 1); SendMessageBatchRequestEntrySerializer::serialize(params, &key, obj); } } } /// <p>For each message in the batch, the response contains a <code> <a>SendMessageBatchResultEntry</a> </code> tag if the message succeeds or a <code> <a>BatchResultErrorEntry</a> </code> tag if the message fails.</p> #[derive(Default, Debug, Clone, PartialEq)] pub struct SendMessageBatchResult { /// <p>A list of <code> <a>BatchResultErrorEntry</a> </code> items with error details about each message that can't be enqueued.</p> pub failed: Vec<BatchResultErrorEntry>, /// <p>A list of <code> <a>SendMessageBatchResultEntry</a> </code> items.</p> pub successful: Vec<SendMessageBatchResultEntry>, } struct SendMessageBatchResultDeserializer; impl SendMessageBatchResultDeserializer { #[allow(unused_variables)] fn deserialize<T: Peek + Next>( tag_name: &str, stack: &mut T, ) -> Result<SendMessageBatchResult, XmlParseError> { deserialize_elements::<_, SendMessageBatchResult, _>(tag_name, stack, |name, stack, obj| { match name { "BatchResultErrorEntry" => { obj.failed .extend(BatchResultErrorEntryListDeserializer::deserialize( "BatchResultErrorEntry", stack, )?); } "SendMessageBatchResultEntry" => { obj.successful.extend( SendMessageBatchResultEntryListDeserializer::deserialize( "SendMessageBatchResultEntry", stack, )?, ); } _ => skip_tree(stack), } Ok(()) }) } } /// <p>Encloses a <code>MessageId</code> for a successfully-enqueued message in a <code> <a>SendMessageBatch</a>.</code> </p> #[derive(Default, Debug, Clone, PartialEq)] pub struct SendMessageBatchResultEntry { /// <p>An identifier for the message in this batch.</p> pub id: String, /// <p>An MD5 digest of the non-URL-encoded message attribute string. You can use this attribute to verify that Amazon SQS received the message correctly. Amazon SQS URL-decodes the message before creating the MD5 digest. For information about MD5, see <a href="https://www.ietf.org/rfc/rfc1321.txt">RFC1321</a>.</p> pub md5_of_message_attributes: Option<String>, /// <p>An MD5 digest of the non-URL-encoded message attribute string. You can use this attribute to verify that Amazon SQS received the message correctly. Amazon SQS URL-decodes the message before creating the MD5 digest. For information about MD5, see <a href="https://www.ietf.org/rfc/rfc1321.txt">RFC1321</a>.</p> pub md5_of_message_body: String, /// <p>An identifier for the message.</p> pub message_id: String, /// <p>This parameter applies only to FIFO (first-in-first-out) queues.</p> <p>The large, non-consecutive number that Amazon SQS assigns to each message.</p> <p>The length of <code>SequenceNumber</code> is 128 bits. As <code>SequenceNumber</code> continues to increase for a particular <code>MessageGroupId</code>.</p> pub sequence_number: Option<String>, } struct SendMessageBatchResultEntryDeserializer; impl SendMessageBatchResultEntryDeserializer { #[allow(unused_variables)] fn deserialize<T: Peek + Next>( tag_name: &str, stack: &mut T, ) -> Result<SendMessageBatchResultEntry, XmlParseError> { deserialize_elements::<_, SendMessageBatchResultEntry, _>( tag_name, stack, |name, stack, obj| { match name { "Id" => { obj.id = StringDeserializer::deserialize("Id", stack)?; } "MD5OfMessageAttributes" => { obj.md5_of_message_attributes = Some(StringDeserializer::deserialize( "MD5OfMessageAttributes", stack, )?); } "MD5OfMessageBody" => { obj.md5_of_message_body = StringDeserializer::deserialize("MD5OfMessageBody", stack)?; } "MessageId" => { obj.message_id = StringDeserializer::deserialize("MessageId", stack)?; } "SequenceNumber" => { obj.sequence_number = Some(StringDeserializer::deserialize("SequenceNumber", stack)?); } _ => skip_tree(stack), } Ok(()) }, ) } } struct SendMessageBatchResultEntryListDeserializer; impl SendMessageBatchResultEntryListDeserializer { #[allow(unused_variables)] fn deserialize<T: Peek + Next>( tag_name: &str, stack: &mut T, ) -> Result<Vec<SendMessageBatchResultEntry>, XmlParseError> { let mut obj = vec![]; loop { let consume_next_tag = match stack.peek() { Some(&Ok(xml::reader::XmlEvent::StartElement { ref name, .. })) => { name.local_name == tag_name } _ => false, }; if consume_next_tag { obj.push(SendMessageBatchResultEntryDeserializer::deserialize( tag_name, stack, )?); } else { break; } } Ok(obj) } } /// <p><p/></p> #[derive(Default, Debug, Clone, PartialEq)] pub struct SendMessageRequest { /// <p><p> The length of time, in seconds, for which to delay a specific message. Valid values: 0 to 900. Maximum: 15 minutes. Messages with a positive <code>DelaySeconds</code> value become available for processing after the delay period is finished. If you don't specify a value, the default value for the queue applies. </p> <note> <p>When you set <code>FifoQueue</code>, you can't set <code>DelaySeconds</code> per message. You can set this parameter only on a queue level.</p> </note></p> pub delay_seconds: Option<i64>, /// <p>Each message attribute consists of a <code>Name</code>, <code>Type</code>, and <code>Value</code>. For more information, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-message-attributes.html">Amazon SQS Message Attributes</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> pub message_attributes: Option<::std::collections::HashMap<String, MessageAttributeValue>>, /// <p><p>The message to send. The maximum string size is 256 KB.</p> <important> <p>A message can include only XML, JSON, and unformatted text. The following Unicode characters are allowed:</p> <p> <code>#x9</code> | <code>#xA</code> | <code>#xD</code> | <code>#x20</code> to <code>#xD7FF</code> | <code>#xE000</code> to <code>#xFFFD</code> | <code>#x10000</code> to <code>#x10FFFF</code> </p> <p>Any characters not included in this list will be rejected. For more information, see the <a href="http://www.w3.org/TR/REC-xml/#charsets">W3C specification for characters</a>.</p> </important></p> pub message_body: String, /// <p>This parameter applies only to FIFO (first-in-first-out) queues.</p> <p>The token used for deduplication of sent messages. If a message with a particular <code>MessageDeduplicationId</code> is sent successfully, any messages sent with the same <code>MessageDeduplicationId</code> are accepted successfully but aren't delivered during the 5-minute deduplication interval. For more information, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/FIFO-queues.html#FIFO-queues-exactly-once-processing"> Exactly-Once Processing</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> <ul> <li> <p>Every message must have a unique <code>MessageDeduplicationId</code>,</p> <ul> <li> <p>You may provide a <code>MessageDeduplicationId</code> explicitly.</p> </li> <li> <p>If you aren't able to provide a <code>MessageDeduplicationId</code> and you enable <code>ContentBasedDeduplication</code> for your queue, Amazon SQS uses a SHA-256 hash to generate the <code>MessageDeduplicationId</code> using the body of the message (but not the attributes of the message). </p> </li> <li> <p>If you don't provide a <code>MessageDeduplicationId</code> and the queue doesn't have <code>ContentBasedDeduplication</code> set, the action fails with an error.</p> </li> <li> <p>If the queue has <code>ContentBasedDeduplication</code> set, your <code>MessageDeduplicationId</code> overrides the generated one.</p> </li> </ul> </li> <li> <p>When <code>ContentBasedDeduplication</code> is in effect, messages with identical content sent within the deduplication interval are treated as duplicates and only one copy of the message is delivered.</p> </li> <li> <p>If you send one message with <code>ContentBasedDeduplication</code> enabled and then another message with a <code>MessageDeduplicationId</code> that is the same as the one generated for the first <code>MessageDeduplicationId</code>, the two messages are treated as duplicates and only one copy of the message is delivered. </p> </li> </ul> <note> <p>The <code>MessageDeduplicationId</code> is available to the consumer of the message (this can be useful for troubleshooting delivery issues).</p> <p>If a message is sent successfully but the acknowledgement is lost and the message is resent with the same <code>MessageDeduplicationId</code> after the deduplication interval, Amazon SQS can't detect duplicate messages.</p> <p>Amazon SQS continues to keep track of the message deduplication ID even after the message is received and deleted.</p> </note> <p>The length of <code>MessageDeduplicationId</code> is 128 characters. <code>MessageDeduplicationId</code> can contain alphanumeric characters (<code>a-z</code>, <code>A-Z</code>, <code>0-9</code>) and punctuation (<code>!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~</code>).</p> <p>For best practices of using <code>MessageDeduplicationId</code>, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/using-messagededuplicationid-property.html">Using the MessageDeduplicationId Property</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> pub message_deduplication_id: Option<String>, /// <p><p>This parameter applies only to FIFO (first-in-first-out) queues.</p> <p>The tag that specifies that a message belongs to a specific message group. Messages that belong to the same message group are processed in a FIFO manner (however, messages in different message groups might be processed out of order). To interleave multiple ordered streams within a single queue, use <code>MessageGroupId</code> values (for example, session data for multiple users). In this scenario, multiple consumers can process the queue, but the session data of each user is processed in a FIFO fashion.</p> <ul> <li> <p>You must associate a non-empty <code>MessageGroupId</code> with a message. If you don't provide a <code>MessageGroupId</code>, the action fails.</p> </li> <li> <p> <code>ReceiveMessage</code> might return messages with multiple <code>MessageGroupId</code> values. For each <code>MessageGroupId</code>, the messages are sorted by time sent. The caller can't specify a <code>MessageGroupId</code>.</p> </li> </ul> <p>The length of <code>MessageGroupId</code> is 128 characters. Valid values: alphanumeric characters and punctuation <code>(!"#$%&'()*+,-./:;<=>?@[]^_`{|}~)</code>.</p> <p>For best practices of using <code>MessageGroupId</code>, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/using-messagegroupid-property.html">Using the MessageGroupId Property</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> <important> <p> <code>MessageGroupId</code> is required for FIFO queues. You can't use it for Standard queues.</p> </important></p> pub message_group_id: Option<String>, /// <p>The URL of the Amazon SQS queue to which a message is sent.</p> <p>Queue URLs and names are case-sensitive.</p> pub queue_url: String, } /// Serialize `SendMessageRequest` contents to a `SignedRequest`. struct SendMessageRequestSerializer; impl SendMessageRequestSerializer { fn serialize(params: &mut Params, name: &str, obj: &SendMessageRequest) { let mut prefix = name.to_string(); if prefix != "" { prefix.push_str("."); } if let Some(ref field_value) = obj.delay_seconds { params.put(&format!("{}{}", prefix, "DelaySeconds"), &field_value); } if let Some(ref field_value) = obj.message_attributes { MessageBodyAttributeMapSerializer::serialize( params, &format!("{}{}", prefix, "MessageAttribute"), field_value, ); } params.put(&format!("{}{}", prefix, "MessageBody"), &obj.message_body); if let Some(ref field_value) = obj.message_deduplication_id { params.put( &format!("{}{}", prefix, "MessageDeduplicationId"), &field_value, ); } if let Some(ref field_value) = obj.message_group_id { params.put(&format!("{}{}", prefix, "MessageGroupId"), &field_value); } params.put(&format!("{}{}", prefix, "QueueUrl"), &obj.queue_url); } } /// <p>The <code>MD5OfMessageBody</code> and <code>MessageId</code> elements.</p> #[derive(Default, Debug, Clone, PartialEq)] pub struct SendMessageResult { /// <p>An MD5 digest of the non-URL-encoded message attribute string. You can use this attribute to verify that Amazon SQS received the message correctly. Amazon SQS URL-decodes the message before creating the MD5 digest. For information about MD5, see <a href="https://www.ietf.org/rfc/rfc1321.txt">RFC1321</a>.</p> pub md5_of_message_attributes: Option<String>, /// <p>An MD5 digest of the non-URL-encoded message attribute string. You can use this attribute to verify that Amazon SQS received the message correctly. Amazon SQS URL-decodes the message before creating the MD5 digest. For information about MD5, see <a href="https://www.ietf.org/rfc/rfc1321.txt">RFC1321</a>.</p> pub md5_of_message_body: Option<String>, /// <p>An attribute containing the <code>MessageId</code> of the message sent to the queue. For more information, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-queue-message-identifiers.html">Queue and Message Identifiers</a> in the <i>Amazon Simple Queue Service Developer Guide</i>. </p> pub message_id: Option<String>, /// <p>This parameter applies only to FIFO (first-in-first-out) queues.</p> <p>The large, non-consecutive number that Amazon SQS assigns to each message.</p> <p>The length of <code>SequenceNumber</code> is 128 bits. <code>SequenceNumber</code> continues to increase for a particular <code>MessageGroupId</code>.</p> pub sequence_number: Option<String>, } struct SendMessageResultDeserializer; impl SendMessageResultDeserializer { #[allow(unused_variables)] fn deserialize<T: Peek + Next>( tag_name: &str, stack: &mut T, ) -> Result<SendMessageResult, XmlParseError> { deserialize_elements::<_, SendMessageResult, _>(tag_name, stack, |name, stack, obj| { match name { "MD5OfMessageAttributes" => { obj.md5_of_message_attributes = Some(StringDeserializer::deserialize( "MD5OfMessageAttributes", stack, )?); } "MD5OfMessageBody" => { obj.md5_of_message_body = Some(StringDeserializer::deserialize("MD5OfMessageBody", stack)?); } "MessageId" => { obj.message_id = Some(StringDeserializer::deserialize("MessageId", stack)?); } "SequenceNumber" => { obj.sequence_number = Some(StringDeserializer::deserialize("SequenceNumber", stack)?); } _ => skip_tree(stack), } Ok(()) }) } } /// <p><p/></p> #[derive(Default, Debug, Clone, PartialEq)] pub struct SetQueueAttributesRequest { /// <p><p>A map of attributes to set.</p> <p>The following lists the names, descriptions, and values of the special request parameters that the <code>SetQueueAttributes</code> action uses:</p> <ul> <li> <p> <code>DelaySeconds</code> - The length of time, in seconds, for which the delivery of all messages in the queue is delayed. Valid values: An integer from 0 to 900 (15 minutes). Default: 0. </p> </li> <li> <p> <code>MaximumMessageSize</code> - The limit of how many bytes a message can contain before Amazon SQS rejects it. Valid values: An integer from 1,024 bytes (1 KiB) up to 262,144 bytes (256 KiB). Default: 262,144 (256 KiB). </p> </li> <li> <p> <code>MessageRetentionPeriod</code> - The length of time, in seconds, for which Amazon SQS retains a message. Valid values: An integer representing seconds, from 60 (1 minute) to 1,209,600 (14 days). Default: 345,600 (4 days). </p> </li> <li> <p> <code>Policy</code> - The queue's policy. A valid AWS policy. For more information about policy structure, see <a href="http://docs.aws.amazon.com/IAM/latest/UserGuide/PoliciesOverview.html">Overview of AWS IAM Policies</a> in the <i>Amazon IAM User Guide</i>. </p> </li> <li> <p> <code>ReceiveMessageWaitTimeSeconds</code> - The length of time, in seconds, for which a <code> <a>ReceiveMessage</a> </code> action waits for a message to arrive. Valid values: an integer from 0 to 20 (seconds). Default: 0. </p> </li> <li> <p> <code>RedrivePolicy</code> - The string that includes the parameters for the dead-letter queue functionality of the source queue. For more information about the redrive policy and dead-letter queues, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-dead-letter-queues.html">Using Amazon SQS Dead-Letter Queues</a> in the <i>Amazon Simple Queue Service Developer Guide</i>. </p> <ul> <li> <p> <code>deadLetterTargetArn</code> - The Amazon Resource Name (ARN) of the dead-letter queue to which Amazon SQS moves messages after the value of <code>maxReceiveCount</code> is exceeded.</p> </li> <li> <p> <code>maxReceiveCount</code> - The number of times a message is delivered to the source queue before being moved to the dead-letter queue. When the <code>ReceiveCount</code> for a message exceeds the <code>maxReceiveCount</code> for a queue, Amazon SQS moves the message to the dead-letter-queue.</p> </li> </ul> <note> <p>The dead-letter queue of a FIFO queue must also be a FIFO queue. Similarly, the dead-letter queue of a standard queue must also be a standard queue.</p> </note> </li> <li> <p> <code>VisibilityTimeout</code> - The visibility timeout for the queue, in seconds. Valid values: an integer from 0 to 43,200 (12 hours). Default: 30. For more information about the visibility timeout, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-visibility-timeout.html">Visibility Timeout</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> </li> </ul> <p>The following attributes apply only to <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-server-side-encryption.html">server-side-encryption</a>:</p> <ul> <li> <p> <code>KmsMasterKeyId</code> - The ID of an AWS-managed customer master key (CMK) for Amazon SQS or a custom CMK. For more information, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-server-side-encryption.html#sqs-sse-key-terms">Key Terms</a>. While the alias of the AWS-managed CMK for Amazon SQS is always <code>alias/aws/sqs</code>, the alias of a custom CMK can, for example, be <code>alias/<i>MyAlias</i> </code>. For more examples, see <a href="http://docs.aws.amazon.com/kms/latest/APIReference/API_DescribeKey.html#API_DescribeKey_RequestParameters">KeyId</a> in the <i>AWS Key Management Service API Reference</i>. </p> </li> <li> <p> <code>KmsDataKeyReusePeriodSeconds</code> - The length of time, in seconds, for which Amazon SQS can reuse a <a href="http://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#data-keys">data key</a> to encrypt or decrypt messages before calling AWS KMS again. An integer representing seconds, between 60 seconds (1 minute) and 86,400 seconds (24 hours). Default: 300 (5 minutes). A shorter time period provides better security but results in more calls to KMS which might incur charges after Free Tier. For more information, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-server-side-encryption.html#sqs-how-does-the-data-key-reuse-period-work">How Does the Data Key Reuse Period Work?</a>. </p> </li> </ul> <p>The following attribute applies only to <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/FIFO-queues.html">FIFO (first-in-first-out) queues</a>:</p> <ul> <li> <p> <code>ContentBasedDeduplication</code> - Enables content-based deduplication. For more information, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/FIFO-queues.html#FIFO-queues-exactly-once-processing">Exactly-Once Processing</a> in the <i>Amazon Simple Queue Service Developer Guide</i>. </p> <ul> <li> <p>Every message must have a unique <code>MessageDeduplicationId</code>,</p> <ul> <li> <p>You may provide a <code>MessageDeduplicationId</code> explicitly.</p> </li> <li> <p>If you aren't able to provide a <code>MessageDeduplicationId</code> and you enable <code>ContentBasedDeduplication</code> for your queue, Amazon SQS uses a SHA-256 hash to generate the <code>MessageDeduplicationId</code> using the body of the message (but not the attributes of the message). </p> </li> <li> <p>If you don't provide a <code>MessageDeduplicationId</code> and the queue doesn't have <code>ContentBasedDeduplication</code> set, the action fails with an error.</p> </li> <li> <p>If the queue has <code>ContentBasedDeduplication</code> set, your <code>MessageDeduplicationId</code> overrides the generated one.</p> </li> </ul> </li> <li> <p>When <code>ContentBasedDeduplication</code> is in effect, messages with identical content sent within the deduplication interval are treated as duplicates and only one copy of the message is delivered.</p> </li> <li> <p>If you send one message with <code>ContentBasedDeduplication</code> enabled and then another message with a <code>MessageDeduplicationId</code> that is the same as the one generated for the first <code>MessageDeduplicationId</code>, the two messages are treated as duplicates and only one copy of the message is delivered. </p> </li> </ul> </li> </ul></p> pub attributes: ::std::collections::HashMap<String, String>, /// <p>The URL of the Amazon SQS queue whose attributes are set.</p> <p>Queue URLs and names are case-sensitive.</p> pub queue_url: String, } /// Serialize `SetQueueAttributesRequest` contents to a `SignedRequest`. struct SetQueueAttributesRequestSerializer; impl SetQueueAttributesRequestSerializer { fn serialize(params: &mut Params, name: &str, obj: &SetQueueAttributesRequest) { let mut prefix = name.to_string(); if prefix != "" { prefix.push_str("."); } QueueAttributeMapSerializer::serialize( params, &format!("{}{}", prefix, "Attribute"), &obj.attributes, ); params.put(&format!("{}{}", prefix, "QueueUrl"), &obj.queue_url); } } struct StringDeserializer; impl StringDeserializer { #[allow(unused_variables)] fn deserialize<T: Peek + Next>(tag_name: &str, stack: &mut T) -> Result<String, XmlParseError> { start_element(tag_name, stack)?; let obj = characters(stack)?; end_element(tag_name, stack)?; Ok(obj) } } struct StringListDeserializer; impl StringListDeserializer { #[allow(unused_variables)] fn deserialize<T: Peek + Next>( tag_name: &str, stack: &mut T, ) -> Result<Vec<String>, XmlParseError> { deserialize_elements::<_, Vec<_>, _>(tag_name, stack, |name, stack, obj| { if name == "StringListValue" { obj.push(StringDeserializer::deserialize("StringListValue", stack)?); } else { skip_tree(stack); } Ok(()) }) } } /// Serialize `StringList` contents to a `SignedRequest`. struct StringListSerializer; impl StringListSerializer { fn serialize(params: &mut Params, name: &str, obj: &Vec<String>) { for (index, obj) in obj.iter().enumerate() { let key = format!("{}.member.{}", name, index + 1); params.put(&key, &obj); } } } struct TagKeyDeserializer; impl TagKeyDeserializer { #[allow(unused_variables)] fn deserialize<T: Peek + Next>(tag_name: &str, stack: &mut T) -> Result<String, XmlParseError> { start_element(tag_name, stack)?; let obj = characters(stack)?; end_element(tag_name, stack)?; Ok(obj) } } /// Serialize `TagKeyList` contents to a `SignedRequest`. struct TagKeyListSerializer; impl TagKeyListSerializer { fn serialize(params: &mut Params, name: &str, obj: &Vec<String>) { for (index, obj) in obj.iter().enumerate() { let key = format!("{}.{}", name, index + 1); params.put(&key, &obj); } } } struct TagMapDeserializer; impl TagMapDeserializer { #[allow(unused_variables)] fn deserialize<T: Peek + Next>( tag_name: &str, stack: &mut T, ) -> Result<::std::collections::HashMap<String, String>, XmlParseError> { let mut obj = ::std::collections::HashMap::new(); while peek_at_name(stack)? == "Tag" { start_element("Tag", stack)?; let key = TagKeyDeserializer::deserialize("Key", stack)?; let value = TagValueDeserializer::deserialize("Value", stack)?; obj.insert(key, value); end_element("Tag", stack)?; } Ok(obj) } } /// Serialize `TagMap` contents to a `SignedRequest`. struct TagMapSerializer; impl TagMapSerializer { fn serialize( params: &mut Params, name: &str, obj: &::std::collections::HashMap<String, String>, ) { for (index, (key, value)) in obj.iter().enumerate() { let prefix = format!("{}.{}", name, index + 1); params.put(&format!("{}.{}", prefix, "Key"), &key); params.put(&format!("{}.{}", prefix, "Value"), &value); } } } #[derive(Default, Debug, Clone, PartialEq)] pub struct TagQueueRequest { /// <p>The URL of the queue.</p> pub queue_url: String, /// <p>The list of tags to be added to the specified queue.</p> pub tags: ::std::collections::HashMap<String, String>, } /// Serialize `TagQueueRequest` contents to a `SignedRequest`. struct TagQueueRequestSerializer; impl TagQueueRequestSerializer { fn serialize(params: &mut Params, name: &str, obj: &TagQueueRequest) { let mut prefix = name.to_string(); if prefix != "" { prefix.push_str("."); } params.put(&format!("{}{}", prefix, "QueueUrl"), &obj.queue_url); TagMapSerializer::serialize(params, &format!("{}{}", prefix, "Tags"), &obj.tags); } } struct TagValueDeserializer; impl TagValueDeserializer { #[allow(unused_variables)] fn deserialize<T: Peek + Next>(tag_name: &str, stack: &mut T) -> Result<String, XmlParseError> { start_element(tag_name, stack)?; let obj = characters(stack)?; end_element(tag_name, stack)?; Ok(obj) } } #[derive(Default, Debug, Clone, PartialEq)] pub struct UntagQueueRequest { /// <p>The URL of the queue.</p> pub queue_url: String, /// <p>The list of tags to be removed from the specified queue.</p> pub tag_keys: Vec<String>, } /// Serialize `UntagQueueRequest` contents to a `SignedRequest`. struct UntagQueueRequestSerializer; impl UntagQueueRequestSerializer { fn serialize(params: &mut Params, name: &str, obj: &UntagQueueRequest) { let mut prefix = name.to_string(); if prefix != "" { prefix.push_str("."); } params.put(&format!("{}{}", prefix, "QueueUrl"), &obj.queue_url); TagKeyListSerializer::serialize(params, &format!("{}{}", prefix, "TagKey"), &obj.tag_keys); } } /// Errors returned by AddPermission #[derive(Debug, PartialEq)] pub enum AddPermissionError { /// <p>The specified action violates a limit. For example, <code>ReceiveMessage</code> returns this error if the maximum number of inflight messages is reached and <code>AddPermission</code> returns this error if the maximum number of permissions for the queue is reached.</p> OverLimit(String), } impl AddPermissionError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<AddPermissionError> { { let reader = EventReader::new(res.body.as_ref()); let mut stack = XmlResponse::new(reader.into_iter().peekable()); find_start_element(&mut stack); if let Ok(parsed_error) = Self::deserialize(&mut stack) { match &parsed_error.code[..] { "OverLimit" => { return RusotoError::Service(AddPermissionError::OverLimit( parsed_error.message, )) } _ => {} } } } RusotoError::Unknown(res) } fn deserialize<T>(stack: &mut T) -> Result<XmlError, XmlParseError> where T: Peek + Next, { start_element("ErrorResponse", stack)?; XmlErrorDeserializer::deserialize("Error", stack) } } impl fmt::Display for AddPermissionError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for AddPermissionError { fn description(&self) -> &str { match *self { AddPermissionError::OverLimit(ref cause) => cause, } } } /// Errors returned by ChangeMessageVisibility #[derive(Debug, PartialEq)] pub enum ChangeMessageVisibilityError { /// <p>The specified message isn't in flight.</p> MessageNotInflight(String), /// <p>The specified receipt handle isn't valid.</p> ReceiptHandleIsInvalid(String), } impl ChangeMessageVisibilityError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<ChangeMessageVisibilityError> { { let reader = EventReader::new(res.body.as_ref()); let mut stack = XmlResponse::new(reader.into_iter().peekable()); find_start_element(&mut stack); if let Ok(parsed_error) = Self::deserialize(&mut stack) { match &parsed_error.code[..] { "AWS.SimpleQueueService.MessageNotInflight" => { return RusotoError::Service( ChangeMessageVisibilityError::MessageNotInflight(parsed_error.message), ) } "ReceiptHandleIsInvalid" => { return RusotoError::Service( ChangeMessageVisibilityError::ReceiptHandleIsInvalid( parsed_error.message, ), ) } _ => {} } } } RusotoError::Unknown(res) } fn deserialize<T>(stack: &mut T) -> Result<XmlError, XmlParseError> where T: Peek + Next, { start_element("ErrorResponse", stack)?; XmlErrorDeserializer::deserialize("Error", stack) } } impl fmt::Display for ChangeMessageVisibilityError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for ChangeMessageVisibilityError { fn description(&self) -> &str { match *self { ChangeMessageVisibilityError::MessageNotInflight(ref cause) => cause, ChangeMessageVisibilityError::ReceiptHandleIsInvalid(ref cause) => cause, } } } /// Errors returned by ChangeMessageVisibilityBatch #[derive(Debug, PartialEq)] pub enum ChangeMessageVisibilityBatchError { /// <p>Two or more batch entries in the request have the same <code>Id</code>.</p> BatchEntryIdsNotDistinct(String), /// <p>The batch request doesn't contain any entries.</p> EmptyBatchRequest(String), /// <p>The <code>Id</code> of a batch entry in a batch request doesn't abide by the specification.</p> InvalidBatchEntryId(String), /// <p>The batch request contains more entries than permissible.</p> TooManyEntriesInBatchRequest(String), } impl ChangeMessageVisibilityBatchError { pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<ChangeMessageVisibilityBatchError> { { let reader = EventReader::new(res.body.as_ref()); let mut stack = XmlResponse::new(reader.into_iter().peekable()); find_start_element(&mut stack); if let Ok(parsed_error) = Self::deserialize(&mut stack) { match &parsed_error.code[..] { "AWS.SimpleQueueService.BatchEntryIdsNotDistinct" => { return RusotoError::Service( ChangeMessageVisibilityBatchError::BatchEntryIdsNotDistinct( parsed_error.message, ), ) } "AWS.SimpleQueueService.EmptyBatchRequest" => { return RusotoError::Service( ChangeMessageVisibilityBatchError::EmptyBatchRequest( parsed_error.message, ), ) } "AWS.SimpleQueueService.InvalidBatchEntryId" => { return RusotoError::Service( ChangeMessageVisibilityBatchError::InvalidBatchEntryId( parsed_error.message, ), ) } "AWS.SimpleQueueService.TooManyEntriesInBatchRequest" => { return RusotoError::Service( ChangeMessageVisibilityBatchError::TooManyEntriesInBatchRequest( parsed_error.message, ), ) } _ => {} } } } RusotoError::Unknown(res) } fn deserialize<T>(stack: &mut T) -> Result<XmlError, XmlParseError> where T: Peek + Next, { start_element("ErrorResponse", stack)?; XmlErrorDeserializer::deserialize("Error", stack) } } impl fmt::Display for ChangeMessageVisibilityBatchError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for ChangeMessageVisibilityBatchError { fn description(&self) -> &str { match *self { ChangeMessageVisibilityBatchError::BatchEntryIdsNotDistinct(ref cause) => cause, ChangeMessageVisibilityBatchError::EmptyBatchRequest(ref cause) => cause, ChangeMessageVisibilityBatchError::InvalidBatchEntryId(ref cause) => cause, ChangeMessageVisibilityBatchError::TooManyEntriesInBatchRequest(ref cause) => cause, } } } /// Errors returned by CreateQueue #[derive(Debug, PartialEq)] pub enum CreateQueueError { /// <p>You must wait 60 seconds after deleting a queue before you can create another queue with the same name.</p> QueueDeletedRecently(String), /// <p>A queue with this name already exists. Amazon SQS returns this error only if the request includes attributes whose values differ from those of the existing queue.</p> QueueNameExists(String), } impl CreateQueueError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<CreateQueueError> { { let reader = EventReader::new(res.body.as_ref()); let mut stack = XmlResponse::new(reader.into_iter().peekable()); find_start_element(&mut stack); if let Ok(parsed_error) = Self::deserialize(&mut stack) { match &parsed_error.code[..] { "AWS.SimpleQueueService.QueueDeletedRecently" => { return RusotoError::Service(CreateQueueError::QueueDeletedRecently( parsed_error.message, )) } "QueueAlreadyExists" => { return RusotoError::Service(CreateQueueError::QueueNameExists( parsed_error.message, )) } _ => {} } } } RusotoError::Unknown(res) } fn deserialize<T>(stack: &mut T) -> Result<XmlError, XmlParseError> where T: Peek + Next, { start_element("ErrorResponse", stack)?; XmlErrorDeserializer::deserialize("Error", stack) } } impl fmt::Display for CreateQueueError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for CreateQueueError { fn description(&self) -> &str { match *self { CreateQueueError::QueueDeletedRecently(ref cause) => cause, CreateQueueError::QueueNameExists(ref cause) => cause, } } } /// Errors returned by DeleteMessage #[derive(Debug, PartialEq)] pub enum DeleteMessageError { /// <p>The specified receipt handle isn't valid for the current version.</p> InvalidIdFormat(String), /// <p>The specified receipt handle isn't valid.</p> ReceiptHandleIsInvalid(String), } impl DeleteMessageError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<DeleteMessageError> { { let reader = EventReader::new(res.body.as_ref()); let mut stack = XmlResponse::new(reader.into_iter().peekable()); find_start_element(&mut stack); if let Ok(parsed_error) = Self::deserialize(&mut stack) { match &parsed_error.code[..] { "InvalidIdFormat" => { return RusotoError::Service(DeleteMessageError::InvalidIdFormat( parsed_error.message, )) } "ReceiptHandleIsInvalid" => { return RusotoError::Service(DeleteMessageError::ReceiptHandleIsInvalid( parsed_error.message, )) } _ => {} } } } RusotoError::Unknown(res) } fn deserialize<T>(stack: &mut T) -> Result<XmlError, XmlParseError> where T: Peek + Next, { start_element("ErrorResponse", stack)?; XmlErrorDeserializer::deserialize("Error", stack) } } impl fmt::Display for DeleteMessageError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for DeleteMessageError { fn description(&self) -> &str { match *self { DeleteMessageError::InvalidIdFormat(ref cause) => cause, DeleteMessageError::ReceiptHandleIsInvalid(ref cause) => cause, } } } /// Errors returned by DeleteMessageBatch #[derive(Debug, PartialEq)] pub enum DeleteMessageBatchError { /// <p>Two or more batch entries in the request have the same <code>Id</code>.</p> BatchEntryIdsNotDistinct(String), /// <p>The batch request doesn't contain any entries.</p> EmptyBatchRequest(String), /// <p>The <code>Id</code> of a batch entry in a batch request doesn't abide by the specification.</p> InvalidBatchEntryId(String), /// <p>The batch request contains more entries than permissible.</p> TooManyEntriesInBatchRequest(String), } impl DeleteMessageBatchError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<DeleteMessageBatchError> { { let reader = EventReader::new(res.body.as_ref()); let mut stack = XmlResponse::new(reader.into_iter().peekable()); find_start_element(&mut stack); if let Ok(parsed_error) = Self::deserialize(&mut stack) { match &parsed_error.code[..] { "AWS.SimpleQueueService.BatchEntryIdsNotDistinct" => { return RusotoError::Service( DeleteMessageBatchError::BatchEntryIdsNotDistinct(parsed_error.message), ) } "AWS.SimpleQueueService.EmptyBatchRequest" => { return RusotoError::Service(DeleteMessageBatchError::EmptyBatchRequest( parsed_error.message, )) } "AWS.SimpleQueueService.InvalidBatchEntryId" => { return RusotoError::Service(DeleteMessageBatchError::InvalidBatchEntryId( parsed_error.message, )) } "AWS.SimpleQueueService.TooManyEntriesInBatchRequest" => { return RusotoError::Service( DeleteMessageBatchError::TooManyEntriesInBatchRequest( parsed_error.message, ), ) } _ => {} } } } RusotoError::Unknown(res) } fn deserialize<T>(stack: &mut T) -> Result<XmlError, XmlParseError> where T: Peek + Next, { start_element("ErrorResponse", stack)?; XmlErrorDeserializer::deserialize("Error", stack) } } impl fmt::Display for DeleteMessageBatchError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for DeleteMessageBatchError { fn description(&self) -> &str { match *self { DeleteMessageBatchError::BatchEntryIdsNotDistinct(ref cause) => cause, DeleteMessageBatchError::EmptyBatchRequest(ref cause) => cause, DeleteMessageBatchError::InvalidBatchEntryId(ref cause) => cause, DeleteMessageBatchError::TooManyEntriesInBatchRequest(ref cause) => cause, } } } /// Errors returned by DeleteQueue #[derive(Debug, PartialEq)] pub enum DeleteQueueError {} impl DeleteQueueError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<DeleteQueueError> { { let reader = EventReader::new(res.body.as_ref()); let mut stack = XmlResponse::new(reader.into_iter().peekable()); find_start_element(&mut stack); if let Ok(parsed_error) = Self::deserialize(&mut stack) { match &parsed_error.code[..] { _ => {} } } } RusotoError::Unknown(res) } fn deserialize<T>(stack: &mut T) -> Result<XmlError, XmlParseError> where T: Peek + Next, { start_element("ErrorResponse", stack)?; XmlErrorDeserializer::deserialize("Error", stack) } } impl fmt::Display for DeleteQueueError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for DeleteQueueError { fn description(&self) -> &str { match *self {} } } /// Errors returned by GetQueueAttributes #[derive(Debug, PartialEq)] pub enum GetQueueAttributesError { /// <p>The specified attribute doesn't exist.</p> InvalidAttributeName(String), } impl GetQueueAttributesError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<GetQueueAttributesError> { { let reader = EventReader::new(res.body.as_ref()); let mut stack = XmlResponse::new(reader.into_iter().peekable()); find_start_element(&mut stack); if let Ok(parsed_error) = Self::deserialize(&mut stack) { match &parsed_error.code[..] { "InvalidAttributeName" => { return RusotoError::Service(GetQueueAttributesError::InvalidAttributeName( parsed_error.message, )) } _ => {} } } } RusotoError::Unknown(res) } fn deserialize<T>(stack: &mut T) -> Result<XmlError, XmlParseError> where T: Peek + Next, { start_element("ErrorResponse", stack)?; XmlErrorDeserializer::deserialize("Error", stack) } } impl fmt::Display for GetQueueAttributesError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for GetQueueAttributesError { fn description(&self) -> &str { match *self { GetQueueAttributesError::InvalidAttributeName(ref cause) => cause, } } } /// Errors returned by GetQueueUrl #[derive(Debug, PartialEq)] pub enum GetQueueUrlError { /// <p>The specified queue doesn't exist.</p> QueueDoesNotExist(String), } impl GetQueueUrlError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<GetQueueUrlError> { { let reader = EventReader::new(res.body.as_ref()); let mut stack = XmlResponse::new(reader.into_iter().peekable()); find_start_element(&mut stack); if let Ok(parsed_error) = Self::deserialize(&mut stack) { match &parsed_error.code[..] { "AWS.SimpleQueueService.NonExistentQueue" => { return RusotoError::Service(GetQueueUrlError::QueueDoesNotExist( parsed_error.message, )) } _ => {} } } } RusotoError::Unknown(res) } fn deserialize<T>(stack: &mut T) -> Result<XmlError, XmlParseError> where T: Peek + Next, { start_element("ErrorResponse", stack)?; XmlErrorDeserializer::deserialize("Error", stack) } } impl fmt::Display for GetQueueUrlError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for GetQueueUrlError { fn description(&self) -> &str { match *self { GetQueueUrlError::QueueDoesNotExist(ref cause) => cause, } } } /// Errors returned by ListDeadLetterSourceQueues #[derive(Debug, PartialEq)] pub enum ListDeadLetterSourceQueuesError { /// <p>The specified queue doesn't exist.</p> QueueDoesNotExist(String), } impl ListDeadLetterSourceQueuesError { pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<ListDeadLetterSourceQueuesError> { { let reader = EventReader::new(res.body.as_ref()); let mut stack = XmlResponse::new(reader.into_iter().peekable()); find_start_element(&mut stack); if let Ok(parsed_error) = Self::deserialize(&mut stack) { match &parsed_error.code[..] { "AWS.SimpleQueueService.NonExistentQueue" => { return RusotoError::Service( ListDeadLetterSourceQueuesError::QueueDoesNotExist( parsed_error.message, ), ) } _ => {} } } } RusotoError::Unknown(res) } fn deserialize<T>(stack: &mut T) -> Result<XmlError, XmlParseError> where T: Peek + Next, { start_element("ErrorResponse", stack)?; XmlErrorDeserializer::deserialize("Error", stack) } } impl fmt::Display for ListDeadLetterSourceQueuesError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for ListDeadLetterSourceQueuesError { fn description(&self) -> &str { match *self { ListDeadLetterSourceQueuesError::QueueDoesNotExist(ref cause) => cause, } } } /// Errors returned by ListQueueTags #[derive(Debug, PartialEq)] pub enum ListQueueTagsError {} impl ListQueueTagsError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<ListQueueTagsError> { { let reader = EventReader::new(res.body.as_ref()); let mut stack = XmlResponse::new(reader.into_iter().peekable()); find_start_element(&mut stack); if let Ok(parsed_error) = Self::deserialize(&mut stack) { match &parsed_error.code[..] { _ => {} } } } RusotoError::Unknown(res) } fn deserialize<T>(stack: &mut T) -> Result<XmlError, XmlParseError> where T: Peek + Next, { start_element("ErrorResponse", stack)?; XmlErrorDeserializer::deserialize("Error", stack) } } impl fmt::Display for ListQueueTagsError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for ListQueueTagsError { fn description(&self) -> &str { match *self {} } } /// Errors returned by ListQueues #[derive(Debug, PartialEq)] pub enum ListQueuesError {} impl ListQueuesError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<ListQueuesError> { { let reader = EventReader::new(res.body.as_ref()); let mut stack = XmlResponse::new(reader.into_iter().peekable()); find_start_element(&mut stack); if let Ok(parsed_error) = Self::deserialize(&mut stack) { match &parsed_error.code[..] { _ => {} } } } RusotoError::Unknown(res) } fn deserialize<T>(stack: &mut T) -> Result<XmlError, XmlParseError> where T: Peek + Next, { start_element("ErrorResponse", stack)?; XmlErrorDeserializer::deserialize("Error", stack) } } impl fmt::Display for ListQueuesError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for ListQueuesError { fn description(&self) -> &str { match *self {} } } /// Errors returned by PurgeQueue #[derive(Debug, PartialEq)] pub enum PurgeQueueError { /// <p>Indicates that the specified queue previously received a <code>PurgeQueue</code> request within the last 60 seconds (the time it can take to delete the messages in the queue).</p> PurgeQueueInProgress(String), /// <p>The specified queue doesn't exist.</p> QueueDoesNotExist(String), } impl PurgeQueueError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<PurgeQueueError> { { let reader = EventReader::new(res.body.as_ref()); let mut stack = XmlResponse::new(reader.into_iter().peekable()); find_start_element(&mut stack); if let Ok(parsed_error) = Self::deserialize(&mut stack) { match &parsed_error.code[..] { "AWS.SimpleQueueService.PurgeQueueInProgress" => { return RusotoError::Service(PurgeQueueError::PurgeQueueInProgress( parsed_error.message, )) } "AWS.SimpleQueueService.NonExistentQueue" => { return RusotoError::Service(PurgeQueueError::QueueDoesNotExist( parsed_error.message, )) } _ => {} } } } RusotoError::Unknown(res) } fn deserialize<T>(stack: &mut T) -> Result<XmlError, XmlParseError> where T: Peek + Next, { start_element("ErrorResponse", stack)?; XmlErrorDeserializer::deserialize("Error", stack) } } impl fmt::Display for PurgeQueueError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for PurgeQueueError { fn description(&self) -> &str { match *self { PurgeQueueError::PurgeQueueInProgress(ref cause) => cause, PurgeQueueError::QueueDoesNotExist(ref cause) => cause, } } } /// Errors returned by ReceiveMessage #[derive(Debug, PartialEq)] pub enum ReceiveMessageError { /// <p>The specified action violates a limit. For example, <code>ReceiveMessage</code> returns this error if the maximum number of inflight messages is reached and <code>AddPermission</code> returns this error if the maximum number of permissions for the queue is reached.</p> OverLimit(String), } impl ReceiveMessageError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<ReceiveMessageError> { { let reader = EventReader::new(res.body.as_ref()); let mut stack = XmlResponse::new(reader.into_iter().peekable()); find_start_element(&mut stack); if let Ok(parsed_error) = Self::deserialize(&mut stack) { match &parsed_error.code[..] { "OverLimit" => { return RusotoError::Service(ReceiveMessageError::OverLimit( parsed_error.message, )) } _ => {} } } } RusotoError::Unknown(res) } fn deserialize<T>(stack: &mut T) -> Result<XmlError, XmlParseError> where T: Peek + Next, { start_element("ErrorResponse", stack)?; XmlErrorDeserializer::deserialize("Error", stack) } } impl fmt::Display for ReceiveMessageError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for ReceiveMessageError { fn description(&self) -> &str { match *self { ReceiveMessageError::OverLimit(ref cause) => cause, } } } /// Errors returned by RemovePermission #[derive(Debug, PartialEq)] pub enum RemovePermissionError {} impl RemovePermissionError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<RemovePermissionError> { { let reader = EventReader::new(res.body.as_ref()); let mut stack = XmlResponse::new(reader.into_iter().peekable()); find_start_element(&mut stack); if let Ok(parsed_error) = Self::deserialize(&mut stack) { match &parsed_error.code[..] { _ => {} } } } RusotoError::Unknown(res) } fn deserialize<T>(stack: &mut T) -> Result<XmlError, XmlParseError> where T: Peek + Next, { start_element("ErrorResponse", stack)?; XmlErrorDeserializer::deserialize("Error", stack) } } impl fmt::Display for RemovePermissionError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for RemovePermissionError { fn description(&self) -> &str { match *self {} } } /// Errors returned by SendMessage #[derive(Debug, PartialEq)] pub enum SendMessageError { /// <p>The message contains characters outside the allowed set.</p> InvalidMessageContents(String), /// <p>Error code 400. Unsupported operation.</p> UnsupportedOperation(String), } impl SendMessageError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<SendMessageError> { { let reader = EventReader::new(res.body.as_ref()); let mut stack = XmlResponse::new(reader.into_iter().peekable()); find_start_element(&mut stack); if let Ok(parsed_error) = Self::deserialize(&mut stack) { match &parsed_error.code[..] { "InvalidMessageContents" => { return RusotoError::Service(SendMessageError::InvalidMessageContents( parsed_error.message, )) } "AWS.SimpleQueueService.UnsupportedOperation" => { return RusotoError::Service(SendMessageError::UnsupportedOperation( parsed_error.message, )) } _ => {} } } } RusotoError::Unknown(res) } fn deserialize<T>(stack: &mut T) -> Result<XmlError, XmlParseError> where T: Peek + Next, { start_element("ErrorResponse", stack)?; XmlErrorDeserializer::deserialize("Error", stack) } } impl fmt::Display for SendMessageError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for SendMessageError { fn description(&self) -> &str { match *self { SendMessageError::InvalidMessageContents(ref cause) => cause, SendMessageError::UnsupportedOperation(ref cause) => cause, } } } /// Errors returned by SendMessageBatch #[derive(Debug, PartialEq)] pub enum SendMessageBatchError { /// <p>Two or more batch entries in the request have the same <code>Id</code>.</p> BatchEntryIdsNotDistinct(String), /// <p>The length of all the messages put together is more than the limit.</p> BatchRequestTooLong(String), /// <p>The batch request doesn't contain any entries.</p> EmptyBatchRequest(String), /// <p>The <code>Id</code> of a batch entry in a batch request doesn't abide by the specification.</p> InvalidBatchEntryId(String), /// <p>The batch request contains more entries than permissible.</p> TooManyEntriesInBatchRequest(String), /// <p>Error code 400. Unsupported operation.</p> UnsupportedOperation(String), } impl SendMessageBatchError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<SendMessageBatchError> { { let reader = EventReader::new(res.body.as_ref()); let mut stack = XmlResponse::new(reader.into_iter().peekable()); find_start_element(&mut stack); if let Ok(parsed_error) = Self::deserialize(&mut stack) { match &parsed_error.code[..] { "AWS.SimpleQueueService.BatchEntryIdsNotDistinct" => { return RusotoError::Service( SendMessageBatchError::BatchEntryIdsNotDistinct(parsed_error.message), ) } "AWS.SimpleQueueService.BatchRequestTooLong" => { return RusotoError::Service(SendMessageBatchError::BatchRequestTooLong( parsed_error.message, )) } "AWS.SimpleQueueService.EmptyBatchRequest" => { return RusotoError::Service(SendMessageBatchError::EmptyBatchRequest( parsed_error.message, )) } "AWS.SimpleQueueService.InvalidBatchEntryId" => { return RusotoError::Service(SendMessageBatchError::InvalidBatchEntryId( parsed_error.message, )) } "AWS.SimpleQueueService.TooManyEntriesInBatchRequest" => { return RusotoError::Service( SendMessageBatchError::TooManyEntriesInBatchRequest( parsed_error.message, ), ) } "AWS.SimpleQueueService.UnsupportedOperation" => { return RusotoError::Service(SendMessageBatchError::UnsupportedOperation( parsed_error.message, )) } _ => {} } } } RusotoError::Unknown(res) } fn deserialize<T>(stack: &mut T) -> Result<XmlError, XmlParseError> where T: Peek + Next, { start_element("ErrorResponse", stack)?; XmlErrorDeserializer::deserialize("Error", stack) } } impl fmt::Display for SendMessageBatchError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for SendMessageBatchError { fn description(&self) -> &str { match *self { SendMessageBatchError::BatchEntryIdsNotDistinct(ref cause) => cause, SendMessageBatchError::BatchRequestTooLong(ref cause) => cause, SendMessageBatchError::EmptyBatchRequest(ref cause) => cause, SendMessageBatchError::InvalidBatchEntryId(ref cause) => cause, SendMessageBatchError::TooManyEntriesInBatchRequest(ref cause) => cause, SendMessageBatchError::UnsupportedOperation(ref cause) => cause, } } } /// Errors returned by SetQueueAttributes #[derive(Debug, PartialEq)] pub enum SetQueueAttributesError { /// <p>The specified attribute doesn't exist.</p> InvalidAttributeName(String), } impl SetQueueAttributesError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<SetQueueAttributesError> { { let reader = EventReader::new(res.body.as_ref()); let mut stack = XmlResponse::new(reader.into_iter().peekable()); find_start_element(&mut stack); if let Ok(parsed_error) = Self::deserialize(&mut stack) { match &parsed_error.code[..] { "InvalidAttributeName" => { return RusotoError::Service(SetQueueAttributesError::InvalidAttributeName( parsed_error.message, )) } _ => {} } } } RusotoError::Unknown(res) } fn deserialize<T>(stack: &mut T) -> Result<XmlError, XmlParseError> where T: Peek + Next, { start_element("ErrorResponse", stack)?; XmlErrorDeserializer::deserialize("Error", stack) } } impl fmt::Display for SetQueueAttributesError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for SetQueueAttributesError { fn description(&self) -> &str { match *self { SetQueueAttributesError::InvalidAttributeName(ref cause) => cause, } } } /// Errors returned by TagQueue #[derive(Debug, PartialEq)] pub enum TagQueueError {} impl TagQueueError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<TagQueueError> { { let reader = EventReader::new(res.body.as_ref()); let mut stack = XmlResponse::new(reader.into_iter().peekable()); find_start_element(&mut stack); if let Ok(parsed_error) = Self::deserialize(&mut stack) { match &parsed_error.code[..] { _ => {} } } } RusotoError::Unknown(res) } fn deserialize<T>(stack: &mut T) -> Result<XmlError, XmlParseError> where T: Peek + Next, { start_element("ErrorResponse", stack)?; XmlErrorDeserializer::deserialize("Error", stack) } } impl fmt::Display for TagQueueError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for TagQueueError { fn description(&self) -> &str { match *self {} } } /// Errors returned by UntagQueue #[derive(Debug, PartialEq)] pub enum UntagQueueError {} impl UntagQueueError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<UntagQueueError> { { let reader = EventReader::new(res.body.as_ref()); let mut stack = XmlResponse::new(reader.into_iter().peekable()); find_start_element(&mut stack); if let Ok(parsed_error) = Self::deserialize(&mut stack) { match &parsed_error.code[..] { _ => {} } } } RusotoError::Unknown(res) } fn deserialize<T>(stack: &mut T) -> Result<XmlError, XmlParseError> where T: Peek + Next, { start_element("ErrorResponse", stack)?; XmlErrorDeserializer::deserialize("Error", stack) } } impl fmt::Display for UntagQueueError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for UntagQueueError { fn description(&self) -> &str { match *self {} } } /// Trait representing the capabilities of the Amazon SQS API. Amazon SQS clients implement this trait. pub trait Sqs { /// <p><p>Adds a permission to a queue for a specific <a href="http://docs.aws.amazon.com/general/latest/gr/glos-chap.html#P">principal</a>. This allows sharing access to the queue.</p> <p>When you create a queue, you have full control access rights for the queue. Only you, the owner of the queue, can grant or deny permissions to the queue. For more information about these permissions, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-writing-an-sqs-policy.html#write-messages-to-shared-queue">Allow Developers to Write Messages to a Shared Queue</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> <note> <p> <code>AddPermission</code> writes an Amazon-SQS-generated policy. If you want to write your own policy, use <code> <a>SetQueueAttributes</a> </code> to upload your policy. For more information about writing your own policy, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-creating-custom-policies.html">Using Custom Policies with the Amazon SQS Access Policy Language</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> <p>An Amazon SQS policy can have a maximum of 7 actions.</p> </note> <p>Some actions take lists of parameters. These lists are specified using the <code>param.n</code> notation. Values of <code>n</code> are integers starting from 1. For example, a parameter list with two elements looks like this:</p> <p> <code>&Attribute.1=first</code> </p> <p> <code>&Attribute.2=second</code> </p> <note> <p>Cross-account permissions don't apply to this action. For more information, see see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-customer-managed-policy-examples.html#grant-cross-account-permissions-to-role-and-user-name">Grant Cross-Account Permissions to a Role and a User Name</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> </note></p> fn add_permission(&self, input: AddPermissionRequest) -> RusotoFuture<(), AddPermissionError>; /// <p><p>Changes the visibility timeout of a specified message in a queue to a new value. The maximum allowed timeout value is 12 hours. For more information, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-visibility-timeout.html">Visibility Timeout</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> <p>For example, you have a message with a visibility timeout of 5 minutes. After 3 minutes, you call <code>ChangeMessageVisibility</code> with a timeout of 10 minutes. You can continue to call <code>ChangeMessageVisibility</code> to extend the visibility timeout to a maximum of 12 hours. If you try to extend the visibility timeout beyond 12 hours, your request is rejected.</p> <p>A message is considered to be <i>in flight</i> after it's received from a queue by a consumer, but not yet deleted from the queue.</p> <p>For standard queues, there can be a maximum of 120,000 inflight messages per queue. If you reach this limit, Amazon SQS returns the <code>OverLimit</code> error message. To avoid reaching the limit, you should delete messages from the queue after they're processed. You can also increase the number of queues you use to process your messages.</p> <p>For FIFO queues, there can be a maximum of 20,000 inflight messages per queue. If you reach this limit, Amazon SQS returns no error messages.</p> <important> <p>If you attempt to set the <code>VisibilityTimeout</code> to a value greater than the maximum time left, Amazon SQS returns an error. Amazon SQS doesn't automatically recalculate and increase the timeout to the maximum remaining time.</p> <p>Unlike with a queue, when you change the visibility timeout for a specific message the timeout value is applied immediately but isn't saved in memory for that message. If you don't delete a message after it is received, the visibility timeout for the message reverts to the original timeout value (not to the value you set using the <code>ChangeMessageVisibility</code> action) the next time the message is received.</p> </important></p> fn change_message_visibility( &self, input: ChangeMessageVisibilityRequest, ) -> RusotoFuture<(), ChangeMessageVisibilityError>; /// <p>Changes the visibility timeout of multiple messages. This is a batch version of <code> <a>ChangeMessageVisibility</a>.</code> The result of the action on each message is reported individually in the response. You can send up to 10 <code> <a>ChangeMessageVisibility</a> </code> requests with each <code>ChangeMessageVisibilityBatch</code> action.</p> <important> <p>Because the batch request can result in a combination of successful and unsuccessful actions, you should check for batch errors even when the call returns an HTTP status code of <code>200</code>.</p> </important> <p>Some actions take lists of parameters. These lists are specified using the <code>param.n</code> notation. Values of <code>n</code> are integers starting from 1. For example, a parameter list with two elements looks like this:</p> <p> <code>&Attribute.1=first</code> </p> <p> <code>&Attribute.2=second</code> </p> fn change_message_visibility_batch( &self, input: ChangeMessageVisibilityBatchRequest, ) -> RusotoFuture<ChangeMessageVisibilityBatchResult, ChangeMessageVisibilityBatchError>; /// <p><p>Creates a new standard or FIFO queue. You can pass one or more attributes in the request. Keep the following caveats in mind:</p> <ul> <li> <p>If you don't specify the <code>FifoQueue</code> attribute, Amazon SQS creates a standard queue.</p> <note> <p> You can't change the queue type after you create it and you can't convert an existing standard queue into a FIFO queue. You must either create a new FIFO queue for your application or delete your existing standard queue and recreate it as a FIFO queue. For more information, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/FIFO-queues.html#FIFO-queues-moving">Moving From a Standard Queue to a FIFO Queue</a> in the <i>Amazon Simple Queue Service Developer Guide</i>. </p> </note> </li> <li> <p>If you don't provide a value for an attribute, the queue is created with the default value for the attribute.</p> </li> <li> <p>If you delete a queue, you must wait at least 60 seconds before creating a queue with the same name.</p> </li> </ul> <p>To successfully create a new queue, you must provide a queue name that adheres to the <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/limits-queues.html">limits related to queues</a> and is unique within the scope of your queues.</p> <p>To get the queue URL, use the <code> <a>GetQueueUrl</a> </code> action. <code> <a>GetQueueUrl</a> </code> requires only the <code>QueueName</code> parameter. be aware of existing queue names:</p> <ul> <li> <p>If you provide the name of an existing queue along with the exact names and values of all the queue's attributes, <code>CreateQueue</code> returns the queue URL for the existing queue.</p> </li> <li> <p>If the queue name, attribute names, or attribute values don't match an existing queue, <code>CreateQueue</code> returns an error.</p> </li> </ul> <p>Some actions take lists of parameters. These lists are specified using the <code>param.n</code> notation. Values of <code>n</code> are integers starting from 1. For example, a parameter list with two elements looks like this:</p> <p> <code>&Attribute.1=first</code> </p> <p> <code>&Attribute.2=second</code> </p> <note> <p>Cross-account permissions don't apply to this action. For more information, see see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-customer-managed-policy-examples.html#grant-cross-account-permissions-to-role-and-user-name">Grant Cross-Account Permissions to a Role and a User Name</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> </note></p> fn create_queue( &self, input: CreateQueueRequest, ) -> RusotoFuture<CreateQueueResult, CreateQueueError>; /// <p><p>Deletes the specified message from the specified queue. To select the message to delete, use the <code>ReceiptHandle</code> of the message (<i>not</i> the <code>MessageId</code> which you receive when you send the message). Amazon SQS can delete a message from a queue even if a visibility timeout setting causes the message to be locked by another consumer. Amazon SQS automatically deletes messages left in a queue longer than the retention period configured for the queue. </p> <note> <p>The <code>ReceiptHandle</code> is associated with a <i>specific instance</i> of receiving a message. If you receive a message more than once, the <code>ReceiptHandle</code> is different each time you receive a message. When you use the <code>DeleteMessage</code> action, you must provide the most recently received <code>ReceiptHandle</code> for the message (otherwise, the request succeeds, but the message might not be deleted).</p> <p>For standard queues, it is possible to receive a message even after you delete it. This might happen on rare occasions if one of the servers which stores a copy of the message is unavailable when you send the request to delete the message. The copy remains on the server and might be returned to you during a subsequent receive request. You should ensure that your application is idempotent, so that receiving a message more than once does not cause issues.</p> </note></p> fn delete_message(&self, input: DeleteMessageRequest) -> RusotoFuture<(), DeleteMessageError>; /// <p>Deletes up to ten messages from the specified queue. This is a batch version of <code> <a>DeleteMessage</a>.</code> The result of the action on each message is reported individually in the response.</p> <important> <p>Because the batch request can result in a combination of successful and unsuccessful actions, you should check for batch errors even when the call returns an HTTP status code of <code>200</code>.</p> </important> <p>Some actions take lists of parameters. These lists are specified using the <code>param.n</code> notation. Values of <code>n</code> are integers starting from 1. For example, a parameter list with two elements looks like this:</p> <p> <code>&Attribute.1=first</code> </p> <p> <code>&Attribute.2=second</code> </p> fn delete_message_batch( &self, input: DeleteMessageBatchRequest, ) -> RusotoFuture<DeleteMessageBatchResult, DeleteMessageBatchError>; /// <p><p>Deletes the queue specified by the <code>QueueUrl</code>, regardless of the queue's contents. If the specified queue doesn't exist, Amazon SQS returns a successful response.</p> <important> <p>Be careful with the <code>DeleteQueue</code> action: When you delete a queue, any messages in the queue are no longer available. </p> </important> <p>When you delete a queue, the deletion process takes up to 60 seconds. Requests you send involving that queue during the 60 seconds might succeed. For example, a <code> <a>SendMessage</a> </code> request might succeed, but after 60 seconds the queue and the message you sent no longer exist.</p> <p>When you delete a queue, you must wait at least 60 seconds before creating a queue with the same name.</p> <note> <p>Cross-account permissions don't apply to this action. For more information, see see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-customer-managed-policy-examples.html#grant-cross-account-permissions-to-role-and-user-name">Grant Cross-Account Permissions to a Role and a User Name</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> </note></p> fn delete_queue(&self, input: DeleteQueueRequest) -> RusotoFuture<(), DeleteQueueError>; /// <p>Gets attributes for the specified queue.</p> <note> <p>To determine whether a queue is <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/FIFO-queues.html">FIFO</a>, you can check whether <code>QueueName</code> ends with the <code>.fifo</code> suffix.</p> </note> <p>Some actions take lists of parameters. These lists are specified using the <code>param.n</code> notation. Values of <code>n</code> are integers starting from 1. For example, a parameter list with two elements looks like this:</p> <p> <code>&Attribute.1=first</code> </p> <p> <code>&Attribute.2=second</code> </p> fn get_queue_attributes( &self, input: GetQueueAttributesRequest, ) -> RusotoFuture<GetQueueAttributesResult, GetQueueAttributesError>; /// <p>Returns the URL of an existing Amazon SQS queue.</p> <p>To access a queue that belongs to another AWS account, use the <code>QueueOwnerAWSAccountId</code> parameter to specify the account ID of the queue's owner. The queue's owner must grant you permission to access the queue. For more information about shared queue access, see <code> <a>AddPermission</a> </code> or see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-writing-an-sqs-policy.html#write-messages-to-shared-queue">Allow Developers to Write Messages to a Shared Queue</a> in the <i>Amazon Simple Queue Service Developer Guide</i>. </p> fn get_queue_url( &self, input: GetQueueUrlRequest, ) -> RusotoFuture<GetQueueUrlResult, GetQueueUrlError>; /// <p>Returns a list of your queues that have the <code>RedrivePolicy</code> queue attribute configured with a dead-letter queue.</p> <p>For more information about using dead-letter queues, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-dead-letter-queues.html">Using Amazon SQS Dead-Letter Queues</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> fn list_dead_letter_source_queues( &self, input: ListDeadLetterSourceQueuesRequest, ) -> RusotoFuture<ListDeadLetterSourceQueuesResult, ListDeadLetterSourceQueuesError>; /// <p><p>List all cost allocation tags added to the specified Amazon SQS queue. For an overview, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-queue-tags.html">Tagging Your Amazon SQS Queues</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> <p>When you use queue tags, keep the following guidelines in mind:</p> <ul> <li> <p>Adding more than 50 tags to a queue isn't recommended.</p> </li> <li> <p>Tags don't have any semantic meaning. Amazon SQS interprets tags as character strings.</p> </li> <li> <p>Tags are case-sensitive.</p> </li> <li> <p>A new tag with a key identical to that of an existing tag overwrites the existing tag.</p> </li> <li> <p>Tagging actions are limited to 5 TPS per AWS account. If your application requires a higher throughput, file a <a href="https://console.aws.amazon.com/support/home#/case/create?issueType=technical">technical support request</a>.</p> </li> </ul> <p>For a full list of tag restrictions, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-limits.html#limits-queues">Limits Related to Queues</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> <note> <p>Cross-account permissions don't apply to this action. For more information, see see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-customer-managed-policy-examples.html#grant-cross-account-permissions-to-role-and-user-name">Grant Cross-Account Permissions to a Role and a User Name</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> </note></p> fn list_queue_tags( &self, input: ListQueueTagsRequest, ) -> RusotoFuture<ListQueueTagsResult, ListQueueTagsError>; /// <p><p>Returns a list of your queues. The maximum number of queues that can be returned is 1,000. If you specify a value for the optional <code>QueueNamePrefix</code> parameter, only queues with a name that begins with the specified value are returned.</p> <note> <p>Cross-account permissions don't apply to this action. For more information, see see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-customer-managed-policy-examples.html#grant-cross-account-permissions-to-role-and-user-name">Grant Cross-Account Permissions to a Role and a User Name</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> </note></p> fn list_queues( &self, input: ListQueuesRequest, ) -> RusotoFuture<ListQueuesResult, ListQueuesError>; /// <p>Deletes the messages in a queue specified by the <code>QueueURL</code> parameter.</p> <important> <p>When you use the <code>PurgeQueue</code> action, you can't retrieve any messages deleted from a queue.</p> <p>The message deletion process takes up to 60 seconds. We recommend waiting for 60 seconds regardless of your queue's size. </p> </important> <p>Messages sent to the queue <i>before</i> you call <code>PurgeQueue</code> might be received but are deleted within the next minute.</p> <p>Messages sent to the queue <i>after</i> you call <code>PurgeQueue</code> might be deleted while the queue is being purged.</p> fn purge_queue(&self, input: PurgeQueueRequest) -> RusotoFuture<(), PurgeQueueError>; /// <p><p>Retrieves one or more messages (up to 10), from the specified queue. Using the <code>WaitTimeSeconds</code> parameter enables long-poll support. For more information, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-long-polling.html">Amazon SQS Long Polling</a> in the <i>Amazon Simple Queue Service Developer Guide</i>. </p> <p>Short poll is the default behavior where a weighted random set of machines is sampled on a <code>ReceiveMessage</code> call. Thus, only the messages on the sampled machines are returned. If the number of messages in the queue is small (fewer than 1,000), you most likely get fewer messages than you requested per <code>ReceiveMessage</code> call. If the number of messages in the queue is extremely small, you might not receive any messages in a particular <code>ReceiveMessage</code> response. If this happens, repeat the request. </p> <p>For each message returned, the response includes the following:</p> <ul> <li> <p>The message body.</p> </li> <li> <p>An MD5 digest of the message body. For information about MD5, see <a href="https://www.ietf.org/rfc/rfc1321.txt">RFC1321</a>.</p> </li> <li> <p>The <code>MessageId</code> you received when you sent the message to the queue.</p> </li> <li> <p>The receipt handle.</p> </li> <li> <p>The message attributes.</p> </li> <li> <p>An MD5 digest of the message attributes.</p> </li> </ul> <p>The receipt handle is the identifier you must provide when deleting the message. For more information, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-queue-message-identifiers.html">Queue and Message Identifiers</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> <p>You can provide the <code>VisibilityTimeout</code> parameter in your request. The parameter is applied to the messages that Amazon SQS returns in the response. If you don't include the parameter, the overall visibility timeout for the queue is used for the returned messages. For more information, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-visibility-timeout.html">Visibility Timeout</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> <p>A message that isn't deleted or a message whose visibility isn't extended before the visibility timeout expires counts as a failed receive. Depending on the configuration of the queue, the message might be sent to the dead-letter queue.</p> <note> <p>In the future, new attributes might be added. If you write code that calls this action, we recommend that you structure your code so that it can handle new attributes gracefully.</p> </note></p> fn receive_message( &self, input: ReceiveMessageRequest, ) -> RusotoFuture<ReceiveMessageResult, ReceiveMessageError>; /// <p><p>Revokes any permissions in the queue policy that matches the specified <code>Label</code> parameter.</p> <note> <p>Only the owner of a queue can remove permissions from it.</p> <p>Cross-account permissions don't apply to this action. For more information, see see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-customer-managed-policy-examples.html#grant-cross-account-permissions-to-role-and-user-name">Grant Cross-Account Permissions to a Role and a User Name</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> </note></p> fn remove_permission( &self, input: RemovePermissionRequest, ) -> RusotoFuture<(), RemovePermissionError>; /// <p><p>Delivers a message to the specified queue.</p> <important> <p>A message can include only XML, JSON, and unformatted text. The following Unicode characters are allowed:</p> <p> <code>#x9</code> | <code>#xA</code> | <code>#xD</code> | <code>#x20</code> to <code>#xD7FF</code> | <code>#xE000</code> to <code>#xFFFD</code> | <code>#x10000</code> to <code>#x10FFFF</code> </p> <p>Any characters not included in this list will be rejected. For more information, see the <a href="http://www.w3.org/TR/REC-xml/#charsets">W3C specification for characters</a>.</p> </important></p> fn send_message( &self, input: SendMessageRequest, ) -> RusotoFuture<SendMessageResult, SendMessageError>; /// <p>Delivers up to ten messages to the specified queue. This is a batch version of <code> <a>SendMessage</a>.</code> For a FIFO queue, multiple messages within a single batch are enqueued in the order they are sent.</p> <p>The result of sending each message is reported individually in the response. Because the batch request can result in a combination of successful and unsuccessful actions, you should check for batch errors even when the call returns an HTTP status code of <code>200</code>.</p> <p>The maximum allowed individual message size and the maximum total payload size (the sum of the individual lengths of all of the batched messages) are both 256 KB (262,144 bytes).</p> <important> <p>A message can include only XML, JSON, and unformatted text. The following Unicode characters are allowed:</p> <p> <code>#x9</code> | <code>#xA</code> | <code>#xD</code> | <code>#x20</code> to <code>#xD7FF</code> | <code>#xE000</code> to <code>#xFFFD</code> | <code>#x10000</code> to <code>#x10FFFF</code> </p> <p>Any characters not included in this list will be rejected. For more information, see the <a href="http://www.w3.org/TR/REC-xml/#charsets">W3C specification for characters</a>.</p> </important> <p>If you don't specify the <code>DelaySeconds</code> parameter for an entry, Amazon SQS uses the default value for the queue.</p> <p>Some actions take lists of parameters. These lists are specified using the <code>param.n</code> notation. Values of <code>n</code> are integers starting from 1. For example, a parameter list with two elements looks like this:</p> <p> <code>&Attribute.1=first</code> </p> <p> <code>&Attribute.2=second</code> </p> fn send_message_batch( &self, input: SendMessageBatchRequest, ) -> RusotoFuture<SendMessageBatchResult, SendMessageBatchError>; /// <p><p>Sets the value of one or more queue attributes. When you change a queue's attributes, the change can take up to 60 seconds for most of the attributes to propagate throughout the Amazon SQS system. Changes made to the <code>MessageRetentionPeriod</code> attribute can take up to 15 minutes.</p> <note> <p>In the future, new attributes might be added. If you write code that calls this action, we recommend that you structure your code so that it can handle new attributes gracefully.</p> <p>Cross-account permissions don't apply to this action. For more information, see see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-customer-managed-policy-examples.html#grant-cross-account-permissions-to-role-and-user-name">Grant Cross-Account Permissions to a Role and a User Name</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> </note></p> fn set_queue_attributes( &self, input: SetQueueAttributesRequest, ) -> RusotoFuture<(), SetQueueAttributesError>; /// <p><p>Add cost allocation tags to the specified Amazon SQS queue. For an overview, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-queue-tags.html">Tagging Your Amazon SQS Queues</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> <p>When you use queue tags, keep the following guidelines in mind:</p> <ul> <li> <p>Adding more than 50 tags to a queue isn't recommended.</p> </li> <li> <p>Tags don't have any semantic meaning. Amazon SQS interprets tags as character strings.</p> </li> <li> <p>Tags are case-sensitive.</p> </li> <li> <p>A new tag with a key identical to that of an existing tag overwrites the existing tag.</p> </li> <li> <p>Tagging actions are limited to 5 TPS per AWS account. If your application requires a higher throughput, file a <a href="https://console.aws.amazon.com/support/home#/case/create?issueType=technical">technical support request</a>.</p> </li> </ul> <p>For a full list of tag restrictions, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-limits.html#limits-queues">Limits Related to Queues</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> <note> <p>Cross-account permissions don't apply to this action. For more information, see see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-customer-managed-policy-examples.html#grant-cross-account-permissions-to-role-and-user-name">Grant Cross-Account Permissions to a Role and a User Name</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> </note></p> fn tag_queue(&self, input: TagQueueRequest) -> RusotoFuture<(), TagQueueError>; /// <p><p>Remove cost allocation tags from the specified Amazon SQS queue. For an overview, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-queue-tags.html">Tagging Your Amazon SQS Queues</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> <p>When you use queue tags, keep the following guidelines in mind:</p> <ul> <li> <p>Adding more than 50 tags to a queue isn't recommended.</p> </li> <li> <p>Tags don't have any semantic meaning. Amazon SQS interprets tags as character strings.</p> </li> <li> <p>Tags are case-sensitive.</p> </li> <li> <p>A new tag with a key identical to that of an existing tag overwrites the existing tag.</p> </li> <li> <p>Tagging actions are limited to 5 TPS per AWS account. If your application requires a higher throughput, file a <a href="https://console.aws.amazon.com/support/home#/case/create?issueType=technical">technical support request</a>.</p> </li> </ul> <p>For a full list of tag restrictions, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-limits.html#limits-queues">Limits Related to Queues</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> <note> <p>Cross-account permissions don't apply to this action. For more information, see see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-customer-managed-policy-examples.html#grant-cross-account-permissions-to-role-and-user-name">Grant Cross-Account Permissions to a Role and a User Name</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> </note></p> fn untag_queue(&self, input: UntagQueueRequest) -> RusotoFuture<(), UntagQueueError>; } /// A client for the Amazon SQS API. #[derive(Clone)] pub struct SqsClient { client: Client, region: region::Region, } impl SqsClient { /// Creates a client backed by the default tokio event loop. /// /// The client will use the default credentials provider and tls client. pub fn new(region: region::Region) -> SqsClient { SqsClient { client: Client::shared(), region, } } pub fn new_with<P, D>( request_dispatcher: D, credentials_provider: P, region: region::Region, ) -> SqsClient where P: ProvideAwsCredentials + Send + Sync + 'static, P::Future: Send, D: DispatchSignedRequest + Send + Sync + 'static, D::Future: Send, { SqsClient { client: Client::new_with(credentials_provider, request_dispatcher), region, } } } impl Sqs for SqsClient { /// <p><p>Adds a permission to a queue for a specific <a href="http://docs.aws.amazon.com/general/latest/gr/glos-chap.html#P">principal</a>. This allows sharing access to the queue.</p> <p>When you create a queue, you have full control access rights for the queue. Only you, the owner of the queue, can grant or deny permissions to the queue. For more information about these permissions, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-writing-an-sqs-policy.html#write-messages-to-shared-queue">Allow Developers to Write Messages to a Shared Queue</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> <note> <p> <code>AddPermission</code> writes an Amazon-SQS-generated policy. If you want to write your own policy, use <code> <a>SetQueueAttributes</a> </code> to upload your policy. For more information about writing your own policy, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-creating-custom-policies.html">Using Custom Policies with the Amazon SQS Access Policy Language</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> <p>An Amazon SQS policy can have a maximum of 7 actions.</p> </note> <p>Some actions take lists of parameters. These lists are specified using the <code>param.n</code> notation. Values of <code>n</code> are integers starting from 1. For example, a parameter list with two elements looks like this:</p> <p> <code>&Attribute.1=first</code> </p> <p> <code>&Attribute.2=second</code> </p> <note> <p>Cross-account permissions don't apply to this action. For more information, see see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-customer-managed-policy-examples.html#grant-cross-account-permissions-to-role-and-user-name">Grant Cross-Account Permissions to a Role and a User Name</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> </note></p> fn add_permission(&self, input: AddPermissionRequest) -> RusotoFuture<(), AddPermissionError> { let mut request = SignedRequest::new("POST", "sqs", &self.region, "/"); let mut params = Params::new(); params.put("Action", "AddPermission"); params.put("Version", "2012-11-05"); AddPermissionRequestSerializer::serialize(&mut params, "", &input); request.set_payload(Some(serde_urlencoded::to_string(¶ms).unwrap())); request.set_content_type("application/x-www-form-urlencoded".to_owned()); self.client.sign_and_dispatch(request, |response| { if !response.status.is_success() { return Box::new( response .buffer() .from_err() .and_then(|response| Err(AddPermissionError::from_response(response))), ); } Box::new(future::ok(::std::mem::drop(response))) }) } /// <p><p>Changes the visibility timeout of a specified message in a queue to a new value. The maximum allowed timeout value is 12 hours. For more information, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-visibility-timeout.html">Visibility Timeout</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> <p>For example, you have a message with a visibility timeout of 5 minutes. After 3 minutes, you call <code>ChangeMessageVisibility</code> with a timeout of 10 minutes. You can continue to call <code>ChangeMessageVisibility</code> to extend the visibility timeout to a maximum of 12 hours. If you try to extend the visibility timeout beyond 12 hours, your request is rejected.</p> <p>A message is considered to be <i>in flight</i> after it's received from a queue by a consumer, but not yet deleted from the queue.</p> <p>For standard queues, there can be a maximum of 120,000 inflight messages per queue. If you reach this limit, Amazon SQS returns the <code>OverLimit</code> error message. To avoid reaching the limit, you should delete messages from the queue after they're processed. You can also increase the number of queues you use to process your messages.</p> <p>For FIFO queues, there can be a maximum of 20,000 inflight messages per queue. If you reach this limit, Amazon SQS returns no error messages.</p> <important> <p>If you attempt to set the <code>VisibilityTimeout</code> to a value greater than the maximum time left, Amazon SQS returns an error. Amazon SQS doesn't automatically recalculate and increase the timeout to the maximum remaining time.</p> <p>Unlike with a queue, when you change the visibility timeout for a specific message the timeout value is applied immediately but isn't saved in memory for that message. If you don't delete a message after it is received, the visibility timeout for the message reverts to the original timeout value (not to the value you set using the <code>ChangeMessageVisibility</code> action) the next time the message is received.</p> </important></p> fn change_message_visibility( &self, input: ChangeMessageVisibilityRequest, ) -> RusotoFuture<(), ChangeMessageVisibilityError> { let mut request = SignedRequest::new("POST", "sqs", &self.region, "/"); let mut params = Params::new(); params.put("Action", "ChangeMessageVisibility"); params.put("Version", "2012-11-05"); ChangeMessageVisibilityRequestSerializer::serialize(&mut params, "", &input); request.set_payload(Some(serde_urlencoded::to_string(¶ms).unwrap())); request.set_content_type("application/x-www-form-urlencoded".to_owned()); self.client.sign_and_dispatch(request, |response| { if !response.status.is_success() { return Box::new(response.buffer().from_err().and_then(|response| { Err(ChangeMessageVisibilityError::from_response(response)) })); } Box::new(future::ok(::std::mem::drop(response))) }) } /// <p>Changes the visibility timeout of multiple messages. This is a batch version of <code> <a>ChangeMessageVisibility</a>.</code> The result of the action on each message is reported individually in the response. You can send up to 10 <code> <a>ChangeMessageVisibility</a> </code> requests with each <code>ChangeMessageVisibilityBatch</code> action.</p> <important> <p>Because the batch request can result in a combination of successful and unsuccessful actions, you should check for batch errors even when the call returns an HTTP status code of <code>200</code>.</p> </important> <p>Some actions take lists of parameters. These lists are specified using the <code>param.n</code> notation. Values of <code>n</code> are integers starting from 1. For example, a parameter list with two elements looks like this:</p> <p> <code>&Attribute.1=first</code> </p> <p> <code>&Attribute.2=second</code> </p> fn change_message_visibility_batch( &self, input: ChangeMessageVisibilityBatchRequest, ) -> RusotoFuture<ChangeMessageVisibilityBatchResult, ChangeMessageVisibilityBatchError> { let mut request = SignedRequest::new("POST", "sqs", &self.region, "/"); let mut params = Params::new(); params.put("Action", "ChangeMessageVisibilityBatch"); params.put("Version", "2012-11-05"); ChangeMessageVisibilityBatchRequestSerializer::serialize(&mut params, "", &input); request.set_payload(Some(serde_urlencoded::to_string(¶ms).unwrap())); request.set_content_type("application/x-www-form-urlencoded".to_owned()); self.client.sign_and_dispatch(request, |response| { if !response.status.is_success() { return Box::new(response.buffer().from_err().and_then(|response| { Err(ChangeMessageVisibilityBatchError::from_response(response)) })); } Box::new(response.buffer().from_err().and_then(move |response| { let result; if response.body.is_empty() { result = ChangeMessageVisibilityBatchResult::default(); } else { let reader = EventReader::new_with_config( response.body.as_ref(), ParserConfig::new().trim_whitespace(true), ); let mut stack = XmlResponse::new(reader.into_iter().peekable()); let _start_document = stack.next(); let actual_tag_name = peek_at_name(&mut stack)?; start_element(&actual_tag_name, &mut stack)?; result = ChangeMessageVisibilityBatchResultDeserializer::deserialize( "ChangeMessageVisibilityBatchResult", &mut stack, )?; skip_tree(&mut stack); end_element(&actual_tag_name, &mut stack)?; } // parse non-payload Ok(result) })) }) } /// <p><p>Creates a new standard or FIFO queue. You can pass one or more attributes in the request. Keep the following caveats in mind:</p> <ul> <li> <p>If you don't specify the <code>FifoQueue</code> attribute, Amazon SQS creates a standard queue.</p> <note> <p> You can't change the queue type after you create it and you can't convert an existing standard queue into a FIFO queue. You must either create a new FIFO queue for your application or delete your existing standard queue and recreate it as a FIFO queue. For more information, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/FIFO-queues.html#FIFO-queues-moving">Moving From a Standard Queue to a FIFO Queue</a> in the <i>Amazon Simple Queue Service Developer Guide</i>. </p> </note> </li> <li> <p>If you don't provide a value for an attribute, the queue is created with the default value for the attribute.</p> </li> <li> <p>If you delete a queue, you must wait at least 60 seconds before creating a queue with the same name.</p> </li> </ul> <p>To successfully create a new queue, you must provide a queue name that adheres to the <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/limits-queues.html">limits related to queues</a> and is unique within the scope of your queues.</p> <p>To get the queue URL, use the <code> <a>GetQueueUrl</a> </code> action. <code> <a>GetQueueUrl</a> </code> requires only the <code>QueueName</code> parameter. be aware of existing queue names:</p> <ul> <li> <p>If you provide the name of an existing queue along with the exact names and values of all the queue's attributes, <code>CreateQueue</code> returns the queue URL for the existing queue.</p> </li> <li> <p>If the queue name, attribute names, or attribute values don't match an existing queue, <code>CreateQueue</code> returns an error.</p> </li> </ul> <p>Some actions take lists of parameters. These lists are specified using the <code>param.n</code> notation. Values of <code>n</code> are integers starting from 1. For example, a parameter list with two elements looks like this:</p> <p> <code>&Attribute.1=first</code> </p> <p> <code>&Attribute.2=second</code> </p> <note> <p>Cross-account permissions don't apply to this action. For more information, see see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-customer-managed-policy-examples.html#grant-cross-account-permissions-to-role-and-user-name">Grant Cross-Account Permissions to a Role and a User Name</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> </note></p> fn create_queue( &self, input: CreateQueueRequest, ) -> RusotoFuture<CreateQueueResult, CreateQueueError> { let mut request = SignedRequest::new("POST", "sqs", &self.region, "/"); let mut params = Params::new(); params.put("Action", "CreateQueue"); params.put("Version", "2012-11-05"); CreateQueueRequestSerializer::serialize(&mut params, "", &input); request.set_payload(Some(serde_urlencoded::to_string(¶ms).unwrap())); request.set_content_type("application/x-www-form-urlencoded".to_owned()); self.client.sign_and_dispatch(request, |response| { if !response.status.is_success() { return Box::new( response .buffer() .from_err() .and_then(|response| Err(CreateQueueError::from_response(response))), ); } Box::new(response.buffer().from_err().and_then(move |response| { let result; if response.body.is_empty() { result = CreateQueueResult::default(); } else { let reader = EventReader::new_with_config( response.body.as_ref(), ParserConfig::new().trim_whitespace(true), ); let mut stack = XmlResponse::new(reader.into_iter().peekable()); let _start_document = stack.next(); let actual_tag_name = peek_at_name(&mut stack)?; start_element(&actual_tag_name, &mut stack)?; result = CreateQueueResultDeserializer::deserialize( "CreateQueueResult", &mut stack, )?; skip_tree(&mut stack); end_element(&actual_tag_name, &mut stack)?; } // parse non-payload Ok(result) })) }) } /// <p><p>Deletes the specified message from the specified queue. To select the message to delete, use the <code>ReceiptHandle</code> of the message (<i>not</i> the <code>MessageId</code> which you receive when you send the message). Amazon SQS can delete a message from a queue even if a visibility timeout setting causes the message to be locked by another consumer. Amazon SQS automatically deletes messages left in a queue longer than the retention period configured for the queue. </p> <note> <p>The <code>ReceiptHandle</code> is associated with a <i>specific instance</i> of receiving a message. If you receive a message more than once, the <code>ReceiptHandle</code> is different each time you receive a message. When you use the <code>DeleteMessage</code> action, you must provide the most recently received <code>ReceiptHandle</code> for the message (otherwise, the request succeeds, but the message might not be deleted).</p> <p>For standard queues, it is possible to receive a message even after you delete it. This might happen on rare occasions if one of the servers which stores a copy of the message is unavailable when you send the request to delete the message. The copy remains on the server and might be returned to you during a subsequent receive request. You should ensure that your application is idempotent, so that receiving a message more than once does not cause issues.</p> </note></p> fn delete_message(&self, input: DeleteMessageRequest) -> RusotoFuture<(), DeleteMessageError> { let mut request = SignedRequest::new("POST", "sqs", &self.region, "/"); let mut params = Params::new(); params.put("Action", "DeleteMessage"); params.put("Version", "2012-11-05"); DeleteMessageRequestSerializer::serialize(&mut params, "", &input); request.set_payload(Some(serde_urlencoded::to_string(¶ms).unwrap())); request.set_content_type("application/x-www-form-urlencoded".to_owned()); self.client.sign_and_dispatch(request, |response| { if !response.status.is_success() { return Box::new( response .buffer() .from_err() .and_then(|response| Err(DeleteMessageError::from_response(response))), ); } Box::new(future::ok(::std::mem::drop(response))) }) } /// <p>Deletes up to ten messages from the specified queue. This is a batch version of <code> <a>DeleteMessage</a>.</code> The result of the action on each message is reported individually in the response.</p> <important> <p>Because the batch request can result in a combination of successful and unsuccessful actions, you should check for batch errors even when the call returns an HTTP status code of <code>200</code>.</p> </important> <p>Some actions take lists of parameters. These lists are specified using the <code>param.n</code> notation. Values of <code>n</code> are integers starting from 1. For example, a parameter list with two elements looks like this:</p> <p> <code>&Attribute.1=first</code> </p> <p> <code>&Attribute.2=second</code> </p> fn delete_message_batch( &self, input: DeleteMessageBatchRequest, ) -> RusotoFuture<DeleteMessageBatchResult, DeleteMessageBatchError> { let mut request = SignedRequest::new("POST", "sqs", &self.region, "/"); let mut params = Params::new(); params.put("Action", "DeleteMessageBatch"); params.put("Version", "2012-11-05"); DeleteMessageBatchRequestSerializer::serialize(&mut params, "", &input); request.set_payload(Some(serde_urlencoded::to_string(¶ms).unwrap())); request.set_content_type("application/x-www-form-urlencoded".to_owned()); self.client.sign_and_dispatch(request, |response| { if !response.status.is_success() { return Box::new( response .buffer() .from_err() .and_then(|response| Err(DeleteMessageBatchError::from_response(response))), ); } Box::new(response.buffer().from_err().and_then(move |response| { let result; if response.body.is_empty() { result = DeleteMessageBatchResult::default(); } else { let reader = EventReader::new_with_config( response.body.as_ref(), ParserConfig::new().trim_whitespace(true), ); let mut stack = XmlResponse::new(reader.into_iter().peekable()); let _start_document = stack.next(); let actual_tag_name = peek_at_name(&mut stack)?; start_element(&actual_tag_name, &mut stack)?; result = DeleteMessageBatchResultDeserializer::deserialize( "DeleteMessageBatchResult", &mut stack, )?; skip_tree(&mut stack); end_element(&actual_tag_name, &mut stack)?; } // parse non-payload Ok(result) })) }) } /// <p><p>Deletes the queue specified by the <code>QueueUrl</code>, regardless of the queue's contents. If the specified queue doesn't exist, Amazon SQS returns a successful response.</p> <important> <p>Be careful with the <code>DeleteQueue</code> action: When you delete a queue, any messages in the queue are no longer available. </p> </important> <p>When you delete a queue, the deletion process takes up to 60 seconds. Requests you send involving that queue during the 60 seconds might succeed. For example, a <code> <a>SendMessage</a> </code> request might succeed, but after 60 seconds the queue and the message you sent no longer exist.</p> <p>When you delete a queue, you must wait at least 60 seconds before creating a queue with the same name.</p> <note> <p>Cross-account permissions don't apply to this action. For more information, see see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-customer-managed-policy-examples.html#grant-cross-account-permissions-to-role-and-user-name">Grant Cross-Account Permissions to a Role and a User Name</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> </note></p> fn delete_queue(&self, input: DeleteQueueRequest) -> RusotoFuture<(), DeleteQueueError> { let mut request = SignedRequest::new("POST", "sqs", &self.region, "/"); let mut params = Params::new(); params.put("Action", "DeleteQueue"); params.put("Version", "2012-11-05"); DeleteQueueRequestSerializer::serialize(&mut params, "", &input); request.set_payload(Some(serde_urlencoded::to_string(¶ms).unwrap())); request.set_content_type("application/x-www-form-urlencoded".to_owned()); self.client.sign_and_dispatch(request, |response| { if !response.status.is_success() { return Box::new( response .buffer() .from_err() .and_then(|response| Err(DeleteQueueError::from_response(response))), ); } Box::new(future::ok(::std::mem::drop(response))) }) } /// <p>Gets attributes for the specified queue.</p> <note> <p>To determine whether a queue is <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/FIFO-queues.html">FIFO</a>, you can check whether <code>QueueName</code> ends with the <code>.fifo</code> suffix.</p> </note> <p>Some actions take lists of parameters. These lists are specified using the <code>param.n</code> notation. Values of <code>n</code> are integers starting from 1. For example, a parameter list with two elements looks like this:</p> <p> <code>&Attribute.1=first</code> </p> <p> <code>&Attribute.2=second</code> </p> fn get_queue_attributes( &self, input: GetQueueAttributesRequest, ) -> RusotoFuture<GetQueueAttributesResult, GetQueueAttributesError> { let mut request = SignedRequest::new("POST", "sqs", &self.region, "/"); let mut params = Params::new(); params.put("Action", "GetQueueAttributes"); params.put("Version", "2012-11-05"); GetQueueAttributesRequestSerializer::serialize(&mut params, "", &input); request.set_payload(Some(serde_urlencoded::to_string(¶ms).unwrap())); request.set_content_type("application/x-www-form-urlencoded".to_owned()); self.client.sign_and_dispatch(request, |response| { if !response.status.is_success() { return Box::new( response .buffer() .from_err() .and_then(|response| Err(GetQueueAttributesError::from_response(response))), ); } Box::new(response.buffer().from_err().and_then(move |response| { let result; if response.body.is_empty() { result = GetQueueAttributesResult::default(); } else { let reader = EventReader::new_with_config( response.body.as_ref(), ParserConfig::new().trim_whitespace(true), ); let mut stack = XmlResponse::new(reader.into_iter().peekable()); let _start_document = stack.next(); let actual_tag_name = peek_at_name(&mut stack)?; start_element(&actual_tag_name, &mut stack)?; result = GetQueueAttributesResultDeserializer::deserialize( "GetQueueAttributesResult", &mut stack, )?; skip_tree(&mut stack); end_element(&actual_tag_name, &mut stack)?; } // parse non-payload Ok(result) })) }) } /// <p>Returns the URL of an existing Amazon SQS queue.</p> <p>To access a queue that belongs to another AWS account, use the <code>QueueOwnerAWSAccountId</code> parameter to specify the account ID of the queue's owner. The queue's owner must grant you permission to access the queue. For more information about shared queue access, see <code> <a>AddPermission</a> </code> or see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-writing-an-sqs-policy.html#write-messages-to-shared-queue">Allow Developers to Write Messages to a Shared Queue</a> in the <i>Amazon Simple Queue Service Developer Guide</i>. </p> fn get_queue_url( &self, input: GetQueueUrlRequest, ) -> RusotoFuture<GetQueueUrlResult, GetQueueUrlError> { let mut request = SignedRequest::new("POST", "sqs", &self.region, "/"); let mut params = Params::new(); params.put("Action", "GetQueueUrl"); params.put("Version", "2012-11-05"); GetQueueUrlRequestSerializer::serialize(&mut params, "", &input); request.set_payload(Some(serde_urlencoded::to_string(¶ms).unwrap())); request.set_content_type("application/x-www-form-urlencoded".to_owned()); self.client.sign_and_dispatch(request, |response| { if !response.status.is_success() { return Box::new( response .buffer() .from_err() .and_then(|response| Err(GetQueueUrlError::from_response(response))), ); } Box::new(response.buffer().from_err().and_then(move |response| { let result; if response.body.is_empty() { result = GetQueueUrlResult::default(); } else { let reader = EventReader::new_with_config( response.body.as_ref(), ParserConfig::new().trim_whitespace(true), ); let mut stack = XmlResponse::new(reader.into_iter().peekable()); let _start_document = stack.next(); let actual_tag_name = peek_at_name(&mut stack)?; start_element(&actual_tag_name, &mut stack)?; result = GetQueueUrlResultDeserializer::deserialize( "GetQueueUrlResult", &mut stack, )?; skip_tree(&mut stack); end_element(&actual_tag_name, &mut stack)?; } // parse non-payload Ok(result) })) }) } /// <p>Returns a list of your queues that have the <code>RedrivePolicy</code> queue attribute configured with a dead-letter queue.</p> <p>For more information about using dead-letter queues, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-dead-letter-queues.html">Using Amazon SQS Dead-Letter Queues</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> fn list_dead_letter_source_queues( &self, input: ListDeadLetterSourceQueuesRequest, ) -> RusotoFuture<ListDeadLetterSourceQueuesResult, ListDeadLetterSourceQueuesError> { let mut request = SignedRequest::new("POST", "sqs", &self.region, "/"); let mut params = Params::new(); params.put("Action", "ListDeadLetterSourceQueues"); params.put("Version", "2012-11-05"); ListDeadLetterSourceQueuesRequestSerializer::serialize(&mut params, "", &input); request.set_payload(Some(serde_urlencoded::to_string(¶ms).unwrap())); request.set_content_type("application/x-www-form-urlencoded".to_owned()); self.client.sign_and_dispatch(request, |response| { if !response.status.is_success() { return Box::new(response.buffer().from_err().and_then(|response| { Err(ListDeadLetterSourceQueuesError::from_response(response)) })); } Box::new(response.buffer().from_err().and_then(move |response| { let result; if response.body.is_empty() { result = ListDeadLetterSourceQueuesResult::default(); } else { let reader = EventReader::new_with_config( response.body.as_ref(), ParserConfig::new().trim_whitespace(true), ); let mut stack = XmlResponse::new(reader.into_iter().peekable()); let _start_document = stack.next(); let actual_tag_name = peek_at_name(&mut stack)?; start_element(&actual_tag_name, &mut stack)?; result = ListDeadLetterSourceQueuesResultDeserializer::deserialize( "ListDeadLetterSourceQueuesResult", &mut stack, )?; skip_tree(&mut stack); end_element(&actual_tag_name, &mut stack)?; } // parse non-payload Ok(result) })) }) } /// <p><p>List all cost allocation tags added to the specified Amazon SQS queue. For an overview, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-queue-tags.html">Tagging Your Amazon SQS Queues</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> <p>When you use queue tags, keep the following guidelines in mind:</p> <ul> <li> <p>Adding more than 50 tags to a queue isn't recommended.</p> </li> <li> <p>Tags don't have any semantic meaning. Amazon SQS interprets tags as character strings.</p> </li> <li> <p>Tags are case-sensitive.</p> </li> <li> <p>A new tag with a key identical to that of an existing tag overwrites the existing tag.</p> </li> <li> <p>Tagging actions are limited to 5 TPS per AWS account. If your application requires a higher throughput, file a <a href="https://console.aws.amazon.com/support/home#/case/create?issueType=technical">technical support request</a>.</p> </li> </ul> <p>For a full list of tag restrictions, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-limits.html#limits-queues">Limits Related to Queues</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> <note> <p>Cross-account permissions don't apply to this action. For more information, see see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-customer-managed-policy-examples.html#grant-cross-account-permissions-to-role-and-user-name">Grant Cross-Account Permissions to a Role and a User Name</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> </note></p> fn list_queue_tags( &self, input: ListQueueTagsRequest, ) -> RusotoFuture<ListQueueTagsResult, ListQueueTagsError> { let mut request = SignedRequest::new("POST", "sqs", &self.region, "/"); let mut params = Params::new(); params.put("Action", "ListQueueTags"); params.put("Version", "2012-11-05"); ListQueueTagsRequestSerializer::serialize(&mut params, "", &input); request.set_payload(Some(serde_urlencoded::to_string(¶ms).unwrap())); request.set_content_type("application/x-www-form-urlencoded".to_owned()); self.client.sign_and_dispatch(request, |response| { if !response.status.is_success() { return Box::new( response .buffer() .from_err() .and_then(|response| Err(ListQueueTagsError::from_response(response))), ); } Box::new(response.buffer().from_err().and_then(move |response| { let result; if response.body.is_empty() { result = ListQueueTagsResult::default(); } else { let reader = EventReader::new_with_config( response.body.as_ref(), ParserConfig::new().trim_whitespace(true), ); let mut stack = XmlResponse::new(reader.into_iter().peekable()); let _start_document = stack.next(); let actual_tag_name = peek_at_name(&mut stack)?; start_element(&actual_tag_name, &mut stack)?; result = ListQueueTagsResultDeserializer::deserialize( "ListQueueTagsResult", &mut stack, )?; skip_tree(&mut stack); end_element(&actual_tag_name, &mut stack)?; } // parse non-payload Ok(result) })) }) } /// <p><p>Returns a list of your queues. The maximum number of queues that can be returned is 1,000. If you specify a value for the optional <code>QueueNamePrefix</code> parameter, only queues with a name that begins with the specified value are returned.</p> <note> <p>Cross-account permissions don't apply to this action. For more information, see see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-customer-managed-policy-examples.html#grant-cross-account-permissions-to-role-and-user-name">Grant Cross-Account Permissions to a Role and a User Name</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> </note></p> fn list_queues( &self, input: ListQueuesRequest, ) -> RusotoFuture<ListQueuesResult, ListQueuesError> { let mut request = SignedRequest::new("POST", "sqs", &self.region, "/"); let mut params = Params::new(); params.put("Action", "ListQueues"); params.put("Version", "2012-11-05"); ListQueuesRequestSerializer::serialize(&mut params, "", &input); request.set_payload(Some(serde_urlencoded::to_string(¶ms).unwrap())); request.set_content_type("application/x-www-form-urlencoded".to_owned()); self.client.sign_and_dispatch(request, |response| { if !response.status.is_success() { return Box::new( response .buffer() .from_err() .and_then(|response| Err(ListQueuesError::from_response(response))), ); } Box::new(response.buffer().from_err().and_then(move |response| { let result; if response.body.is_empty() { result = ListQueuesResult::default(); } else { let reader = EventReader::new_with_config( response.body.as_ref(), ParserConfig::new().trim_whitespace(true), ); let mut stack = XmlResponse::new(reader.into_iter().peekable()); let _start_document = stack.next(); let actual_tag_name = peek_at_name(&mut stack)?; start_element(&actual_tag_name, &mut stack)?; result = ListQueuesResultDeserializer::deserialize("ListQueuesResult", &mut stack)?; skip_tree(&mut stack); end_element(&actual_tag_name, &mut stack)?; } // parse non-payload Ok(result) })) }) } /// <p>Deletes the messages in a queue specified by the <code>QueueURL</code> parameter.</p> <important> <p>When you use the <code>PurgeQueue</code> action, you can't retrieve any messages deleted from a queue.</p> <p>The message deletion process takes up to 60 seconds. We recommend waiting for 60 seconds regardless of your queue's size. </p> </important> <p>Messages sent to the queue <i>before</i> you call <code>PurgeQueue</code> might be received but are deleted within the next minute.</p> <p>Messages sent to the queue <i>after</i> you call <code>PurgeQueue</code> might be deleted while the queue is being purged.</p> fn purge_queue(&self, input: PurgeQueueRequest) -> RusotoFuture<(), PurgeQueueError> { let mut request = SignedRequest::new("POST", "sqs", &self.region, "/"); let mut params = Params::new(); params.put("Action", "PurgeQueue"); params.put("Version", "2012-11-05"); PurgeQueueRequestSerializer::serialize(&mut params, "", &input); request.set_payload(Some(serde_urlencoded::to_string(¶ms).unwrap())); request.set_content_type("application/x-www-form-urlencoded".to_owned()); self.client.sign_and_dispatch(request, |response| { if !response.status.is_success() { return Box::new( response .buffer() .from_err() .and_then(|response| Err(PurgeQueueError::from_response(response))), ); } Box::new(future::ok(::std::mem::drop(response))) }) } /// <p><p>Retrieves one or more messages (up to 10), from the specified queue. Using the <code>WaitTimeSeconds</code> parameter enables long-poll support. For more information, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-long-polling.html">Amazon SQS Long Polling</a> in the <i>Amazon Simple Queue Service Developer Guide</i>. </p> <p>Short poll is the default behavior where a weighted random set of machines is sampled on a <code>ReceiveMessage</code> call. Thus, only the messages on the sampled machines are returned. If the number of messages in the queue is small (fewer than 1,000), you most likely get fewer messages than you requested per <code>ReceiveMessage</code> call. If the number of messages in the queue is extremely small, you might not receive any messages in a particular <code>ReceiveMessage</code> response. If this happens, repeat the request. </p> <p>For each message returned, the response includes the following:</p> <ul> <li> <p>The message body.</p> </li> <li> <p>An MD5 digest of the message body. For information about MD5, see <a href="https://www.ietf.org/rfc/rfc1321.txt">RFC1321</a>.</p> </li> <li> <p>The <code>MessageId</code> you received when you sent the message to the queue.</p> </li> <li> <p>The receipt handle.</p> </li> <li> <p>The message attributes.</p> </li> <li> <p>An MD5 digest of the message attributes.</p> </li> </ul> <p>The receipt handle is the identifier you must provide when deleting the message. For more information, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-queue-message-identifiers.html">Queue and Message Identifiers</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> <p>You can provide the <code>VisibilityTimeout</code> parameter in your request. The parameter is applied to the messages that Amazon SQS returns in the response. If you don't include the parameter, the overall visibility timeout for the queue is used for the returned messages. For more information, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-visibility-timeout.html">Visibility Timeout</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> <p>A message that isn't deleted or a message whose visibility isn't extended before the visibility timeout expires counts as a failed receive. Depending on the configuration of the queue, the message might be sent to the dead-letter queue.</p> <note> <p>In the future, new attributes might be added. If you write code that calls this action, we recommend that you structure your code so that it can handle new attributes gracefully.</p> </note></p> fn receive_message( &self, input: ReceiveMessageRequest, ) -> RusotoFuture<ReceiveMessageResult, ReceiveMessageError> { let mut request = SignedRequest::new("POST", "sqs", &self.region, "/"); let mut params = Params::new(); params.put("Action", "ReceiveMessage"); params.put("Version", "2012-11-05"); ReceiveMessageRequestSerializer::serialize(&mut params, "", &input); request.set_payload(Some(serde_urlencoded::to_string(¶ms).unwrap())); request.set_content_type("application/x-www-form-urlencoded".to_owned()); self.client.sign_and_dispatch(request, |response| { if !response.status.is_success() { return Box::new( response .buffer() .from_err() .and_then(|response| Err(ReceiveMessageError::from_response(response))), ); } Box::new(response.buffer().from_err().and_then(move |response| { let result; if response.body.is_empty() { result = ReceiveMessageResult::default(); } else { let reader = EventReader::new_with_config( response.body.as_ref(), ParserConfig::new().trim_whitespace(true), ); let mut stack = XmlResponse::new(reader.into_iter().peekable()); let _start_document = stack.next(); let actual_tag_name = peek_at_name(&mut stack)?; start_element(&actual_tag_name, &mut stack)?; result = ReceiveMessageResultDeserializer::deserialize( "ReceiveMessageResult", &mut stack, )?; skip_tree(&mut stack); end_element(&actual_tag_name, &mut stack)?; } // parse non-payload Ok(result) })) }) } /// <p><p>Revokes any permissions in the queue policy that matches the specified <code>Label</code> parameter.</p> <note> <p>Only the owner of a queue can remove permissions from it.</p> <p>Cross-account permissions don't apply to this action. For more information, see see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-customer-managed-policy-examples.html#grant-cross-account-permissions-to-role-and-user-name">Grant Cross-Account Permissions to a Role and a User Name</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> </note></p> fn remove_permission( &self, input: RemovePermissionRequest, ) -> RusotoFuture<(), RemovePermissionError> { let mut request = SignedRequest::new("POST", "sqs", &self.region, "/"); let mut params = Params::new(); params.put("Action", "RemovePermission"); params.put("Version", "2012-11-05"); RemovePermissionRequestSerializer::serialize(&mut params, "", &input); request.set_payload(Some(serde_urlencoded::to_string(¶ms).unwrap())); request.set_content_type("application/x-www-form-urlencoded".to_owned()); self.client.sign_and_dispatch(request, |response| { if !response.status.is_success() { return Box::new( response .buffer() .from_err() .and_then(|response| Err(RemovePermissionError::from_response(response))), ); } Box::new(future::ok(::std::mem::drop(response))) }) } /// <p><p>Delivers a message to the specified queue.</p> <important> <p>A message can include only XML, JSON, and unformatted text. The following Unicode characters are allowed:</p> <p> <code>#x9</code> | <code>#xA</code> | <code>#xD</code> | <code>#x20</code> to <code>#xD7FF</code> | <code>#xE000</code> to <code>#xFFFD</code> | <code>#x10000</code> to <code>#x10FFFF</code> </p> <p>Any characters not included in this list will be rejected. For more information, see the <a href="http://www.w3.org/TR/REC-xml/#charsets">W3C specification for characters</a>.</p> </important></p> fn send_message( &self, input: SendMessageRequest, ) -> RusotoFuture<SendMessageResult, SendMessageError> { let mut request = SignedRequest::new("POST", "sqs", &self.region, "/"); let mut params = Params::new(); params.put("Action", "SendMessage"); params.put("Version", "2012-11-05"); SendMessageRequestSerializer::serialize(&mut params, "", &input); request.set_payload(Some(serde_urlencoded::to_string(¶ms).unwrap())); request.set_content_type("application/x-www-form-urlencoded".to_owned()); self.client.sign_and_dispatch(request, |response| { if !response.status.is_success() { return Box::new( response .buffer() .from_err() .and_then(|response| Err(SendMessageError::from_response(response))), ); } Box::new(response.buffer().from_err().and_then(move |response| { let result; if response.body.is_empty() { result = SendMessageResult::default(); } else { let reader = EventReader::new_with_config( response.body.as_ref(), ParserConfig::new().trim_whitespace(true), ); let mut stack = XmlResponse::new(reader.into_iter().peekable()); let _start_document = stack.next(); let actual_tag_name = peek_at_name(&mut stack)?; start_element(&actual_tag_name, &mut stack)?; result = SendMessageResultDeserializer::deserialize( "SendMessageResult", &mut stack, )?; skip_tree(&mut stack); end_element(&actual_tag_name, &mut stack)?; } // parse non-payload Ok(result) })) }) } /// <p>Delivers up to ten messages to the specified queue. This is a batch version of <code> <a>SendMessage</a>.</code> For a FIFO queue, multiple messages within a single batch are enqueued in the order they are sent.</p> <p>The result of sending each message is reported individually in the response. Because the batch request can result in a combination of successful and unsuccessful actions, you should check for batch errors even when the call returns an HTTP status code of <code>200</code>.</p> <p>The maximum allowed individual message size and the maximum total payload size (the sum of the individual lengths of all of the batched messages) are both 256 KB (262,144 bytes).</p> <important> <p>A message can include only XML, JSON, and unformatted text. The following Unicode characters are allowed:</p> <p> <code>#x9</code> | <code>#xA</code> | <code>#xD</code> | <code>#x20</code> to <code>#xD7FF</code> | <code>#xE000</code> to <code>#xFFFD</code> | <code>#x10000</code> to <code>#x10FFFF</code> </p> <p>Any characters not included in this list will be rejected. For more information, see the <a href="http://www.w3.org/TR/REC-xml/#charsets">W3C specification for characters</a>.</p> </important> <p>If you don't specify the <code>DelaySeconds</code> parameter for an entry, Amazon SQS uses the default value for the queue.</p> <p>Some actions take lists of parameters. These lists are specified using the <code>param.n</code> notation. Values of <code>n</code> are integers starting from 1. For example, a parameter list with two elements looks like this:</p> <p> <code>&Attribute.1=first</code> </p> <p> <code>&Attribute.2=second</code> </p> fn send_message_batch( &self, input: SendMessageBatchRequest, ) -> RusotoFuture<SendMessageBatchResult, SendMessageBatchError> { let mut request = SignedRequest::new("POST", "sqs", &self.region, "/"); let mut params = Params::new(); params.put("Action", "SendMessageBatch"); params.put("Version", "2012-11-05"); SendMessageBatchRequestSerializer::serialize(&mut params, "", &input); request.set_payload(Some(serde_urlencoded::to_string(¶ms).unwrap())); request.set_content_type("application/x-www-form-urlencoded".to_owned()); self.client.sign_and_dispatch(request, |response| { if !response.status.is_success() { return Box::new( response .buffer() .from_err() .and_then(|response| Err(SendMessageBatchError::from_response(response))), ); } Box::new(response.buffer().from_err().and_then(move |response| { let result; if response.body.is_empty() { result = SendMessageBatchResult::default(); } else { let reader = EventReader::new_with_config( response.body.as_ref(), ParserConfig::new().trim_whitespace(true), ); let mut stack = XmlResponse::new(reader.into_iter().peekable()); let _start_document = stack.next(); let actual_tag_name = peek_at_name(&mut stack)?; start_element(&actual_tag_name, &mut stack)?; result = SendMessageBatchResultDeserializer::deserialize( "SendMessageBatchResult", &mut stack, )?; skip_tree(&mut stack); end_element(&actual_tag_name, &mut stack)?; } // parse non-payload Ok(result) })) }) } /// <p><p>Sets the value of one or more queue attributes. When you change a queue's attributes, the change can take up to 60 seconds for most of the attributes to propagate throughout the Amazon SQS system. Changes made to the <code>MessageRetentionPeriod</code> attribute can take up to 15 minutes.</p> <note> <p>In the future, new attributes might be added. If you write code that calls this action, we recommend that you structure your code so that it can handle new attributes gracefully.</p> <p>Cross-account permissions don't apply to this action. For more information, see see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-customer-managed-policy-examples.html#grant-cross-account-permissions-to-role-and-user-name">Grant Cross-Account Permissions to a Role and a User Name</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> </note></p> fn set_queue_attributes( &self, input: SetQueueAttributesRequest, ) -> RusotoFuture<(), SetQueueAttributesError> { let mut request = SignedRequest::new("POST", "sqs", &self.region, "/"); let mut params = Params::new(); params.put("Action", "SetQueueAttributes"); params.put("Version", "2012-11-05"); SetQueueAttributesRequestSerializer::serialize(&mut params, "", &input); request.set_payload(Some(serde_urlencoded::to_string(¶ms).unwrap())); request.set_content_type("application/x-www-form-urlencoded".to_owned()); self.client.sign_and_dispatch(request, |response| { if !response.status.is_success() { return Box::new( response .buffer() .from_err() .and_then(|response| Err(SetQueueAttributesError::from_response(response))), ); } Box::new(future::ok(::std::mem::drop(response))) }) } /// <p><p>Add cost allocation tags to the specified Amazon SQS queue. For an overview, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-queue-tags.html">Tagging Your Amazon SQS Queues</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> <p>When you use queue tags, keep the following guidelines in mind:</p> <ul> <li> <p>Adding more than 50 tags to a queue isn't recommended.</p> </li> <li> <p>Tags don't have any semantic meaning. Amazon SQS interprets tags as character strings.</p> </li> <li> <p>Tags are case-sensitive.</p> </li> <li> <p>A new tag with a key identical to that of an existing tag overwrites the existing tag.</p> </li> <li> <p>Tagging actions are limited to 5 TPS per AWS account. If your application requires a higher throughput, file a <a href="https://console.aws.amazon.com/support/home#/case/create?issueType=technical">technical support request</a>.</p> </li> </ul> <p>For a full list of tag restrictions, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-limits.html#limits-queues">Limits Related to Queues</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> <note> <p>Cross-account permissions don't apply to this action. For more information, see see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-customer-managed-policy-examples.html#grant-cross-account-permissions-to-role-and-user-name">Grant Cross-Account Permissions to a Role and a User Name</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> </note></p> fn tag_queue(&self, input: TagQueueRequest) -> RusotoFuture<(), TagQueueError> { let mut request = SignedRequest::new("POST", "sqs", &self.region, "/"); let mut params = Params::new(); params.put("Action", "TagQueue"); params.put("Version", "2012-11-05"); TagQueueRequestSerializer::serialize(&mut params, "", &input); request.set_payload(Some(serde_urlencoded::to_string(¶ms).unwrap())); request.set_content_type("application/x-www-form-urlencoded".to_owned()); self.client.sign_and_dispatch(request, |response| { if !response.status.is_success() { return Box::new( response .buffer() .from_err() .and_then(|response| Err(TagQueueError::from_response(response))), ); } Box::new(future::ok(::std::mem::drop(response))) }) } /// <p><p>Remove cost allocation tags from the specified Amazon SQS queue. For an overview, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-queue-tags.html">Tagging Your Amazon SQS Queues</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> <p>When you use queue tags, keep the following guidelines in mind:</p> <ul> <li> <p>Adding more than 50 tags to a queue isn't recommended.</p> </li> <li> <p>Tags don't have any semantic meaning. Amazon SQS interprets tags as character strings.</p> </li> <li> <p>Tags are case-sensitive.</p> </li> <li> <p>A new tag with a key identical to that of an existing tag overwrites the existing tag.</p> </li> <li> <p>Tagging actions are limited to 5 TPS per AWS account. If your application requires a higher throughput, file a <a href="https://console.aws.amazon.com/support/home#/case/create?issueType=technical">technical support request</a>.</p> </li> </ul> <p>For a full list of tag restrictions, see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-limits.html#limits-queues">Limits Related to Queues</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> <note> <p>Cross-account permissions don't apply to this action. For more information, see see <a href="http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-customer-managed-policy-examples.html#grant-cross-account-permissions-to-role-and-user-name">Grant Cross-Account Permissions to a Role and a User Name</a> in the <i>Amazon Simple Queue Service Developer Guide</i>.</p> </note></p> fn untag_queue(&self, input: UntagQueueRequest) -> RusotoFuture<(), UntagQueueError> { let mut request = SignedRequest::new("POST", "sqs", &self.region, "/"); let mut params = Params::new(); params.put("Action", "UntagQueue"); params.put("Version", "2012-11-05"); UntagQueueRequestSerializer::serialize(&mut params, "", &input); request.set_payload(Some(serde_urlencoded::to_string(¶ms).unwrap())); request.set_content_type("application/x-www-form-urlencoded".to_owned()); self.client.sign_and_dispatch(request, |response| { if !response.status.is_success() { return Box::new( response .buffer() .from_err() .and_then(|response| Err(UntagQueueError::from_response(response))), ); } Box::new(future::ok(::std::mem::drop(response))) }) } } #[cfg(test)] mod protocol_tests { extern crate rusoto_mock; use self::rusoto_mock::*; use super::*; use rusoto_core::Region as rusoto_region; #[test] fn test_parse_error_sqs_delete_queue() { let mock_response = MockResponseReader::read_response( "test_resources/generated/error", "sqs-delete-queue.xml", ); let mock = MockRequestDispatcher::with_status(400).with_body(&mock_response); let client = SqsClient::new_with(mock, MockCredentialsProvider, rusoto_region::UsEast1); let request = DeleteQueueRequest::default(); let result = client.delete_queue(request).sync(); assert!(!result.is_ok(), "parse error: {:?}", result); } #[test] fn test_parse_valid_sqs_add_permission() { let mock_response = MockResponseReader::read_response( "test_resources/generated/valid", "sqs-add-permission.xml", ); let mock = MockRequestDispatcher::with_status(200).with_body(&mock_response); let client = SqsClient::new_with(mock, MockCredentialsProvider, rusoto_region::UsEast1); let request = AddPermissionRequest::default(); let result = client.add_permission(request).sync(); assert!(result.is_ok(), "parse error: {:?}", result); } #[test] fn test_parse_valid_sqs_change_message_visibility_batch() { let mock_response = MockResponseReader::read_response( "test_resources/generated/valid", "sqs-change-message-visibility-batch.xml", ); let mock = MockRequestDispatcher::with_status(200).with_body(&mock_response); let client = SqsClient::new_with(mock, MockCredentialsProvider, rusoto_region::UsEast1); let request = ChangeMessageVisibilityBatchRequest::default(); let result = client.change_message_visibility_batch(request).sync(); assert!(result.is_ok(), "parse error: {:?}", result); } #[test] fn test_parse_valid_sqs_create_queue() { let mock_response = MockResponseReader::read_response( "test_resources/generated/valid", "sqs-create-queue.xml", ); let mock = MockRequestDispatcher::with_status(200).with_body(&mock_response); let client = SqsClient::new_with(mock, MockCredentialsProvider, rusoto_region::UsEast1); let request = CreateQueueRequest::default(); let result = client.create_queue(request).sync(); assert!(result.is_ok(), "parse error: {:?}", result); } #[test] fn test_parse_valid_sqs_delete_message_batch() { let mock_response = MockResponseReader::read_response( "test_resources/generated/valid", "sqs-delete-message-batch.xml", ); let mock = MockRequestDispatcher::with_status(200).with_body(&mock_response); let client = SqsClient::new_with(mock, MockCredentialsProvider, rusoto_region::UsEast1); let request = DeleteMessageBatchRequest::default(); let result = client.delete_message_batch(request).sync(); assert!(result.is_ok(), "parse error: {:?}", result); } #[test] fn test_parse_valid_sqs_get_queue_attributes() { let mock_response = MockResponseReader::read_response( "test_resources/generated/valid", "sqs-get-queue-attributes.xml", ); let mock = MockRequestDispatcher::with_status(200).with_body(&mock_response); let client = SqsClient::new_with(mock, MockCredentialsProvider, rusoto_region::UsEast1); let request = GetQueueAttributesRequest::default(); let result = client.get_queue_attributes(request).sync(); assert!(result.is_ok(), "parse error: {:?}", result); } #[test] fn test_parse_valid_sqs_get_queue_url() { let mock_response = MockResponseReader::read_response( "test_resources/generated/valid", "sqs-get-queue-url.xml", ); let mock = MockRequestDispatcher::with_status(200).with_body(&mock_response); let client = SqsClient::new_with(mock, MockCredentialsProvider, rusoto_region::UsEast1); let request = GetQueueUrlRequest::default(); let result = client.get_queue_url(request).sync(); assert!(result.is_ok(), "parse error: {:?}", result); } #[test] fn test_parse_valid_sqs_list_queues() { let mock_response = MockResponseReader::read_response( "test_resources/generated/valid", "sqs-list-queues.xml", ); let mock = MockRequestDispatcher::with_status(200).with_body(&mock_response); let client = SqsClient::new_with(mock, MockCredentialsProvider, rusoto_region::UsEast1); let request = ListQueuesRequest::default(); let result = client.list_queues(request).sync(); assert!(result.is_ok(), "parse error: {:?}", result); } #[test] fn test_parse_valid_sqs_receive_message() { let mock_response = MockResponseReader::read_response( "test_resources/generated/valid", "sqs-receive-message.xml", ); let mock = MockRequestDispatcher::with_status(200).with_body(&mock_response); let client = SqsClient::new_with(mock, MockCredentialsProvider, rusoto_region::UsEast1); let request = ReceiveMessageRequest::default(); let result = client.receive_message(request).sync(); assert!(result.is_ok(), "parse error: {:?}", result); } #[test] fn test_parse_valid_sqs_send_message_batch() { let mock_response = MockResponseReader::read_response( "test_resources/generated/valid", "sqs-send-message-batch.xml", ); let mock = MockRequestDispatcher::with_status(200).with_body(&mock_response); let client = SqsClient::new_with(mock, MockCredentialsProvider, rusoto_region::UsEast1); let request = SendMessageBatchRequest::default(); let result = client.send_message_batch(request).sync(); assert!(result.is_ok(), "parse error: {:?}", result); } #[test] fn test_parse_valid_sqs_send_message() { let mock_response = MockResponseReader::read_response( "test_resources/generated/valid", "sqs-send-message.xml", ); let mock = MockRequestDispatcher::with_status(200).with_body(&mock_response); let client = SqsClient::new_with(mock, MockCredentialsProvider, rusoto_region::UsEast1); let request = SendMessageRequest::default(); let result = client.send_message(request).sync(); assert!(result.is_ok(), "parse error: {:?}", result); } }