1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331
// ================================================================= // // * 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; use rusoto_core::signature::SignedRequest; use serde_json; /// <p>Provides information about a bot alias.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct BotAliasMetadata { /// <p>The name of the bot to which the alias points.</p> #[serde(rename = "botName")] #[serde(skip_serializing_if = "Option::is_none")] pub bot_name: Option<String>, /// <p>The version of the Amazon Lex bot to which the alias points.</p> #[serde(rename = "botVersion")] #[serde(skip_serializing_if = "Option::is_none")] pub bot_version: Option<String>, /// <p>Checksum of the bot alias.</p> #[serde(rename = "checksum")] #[serde(skip_serializing_if = "Option::is_none")] pub checksum: Option<String>, /// <p>The date that the bot alias was created.</p> #[serde(rename = "createdDate")] #[serde(skip_serializing_if = "Option::is_none")] pub created_date: Option<f64>, /// <p>A description of the bot alias.</p> #[serde(rename = "description")] #[serde(skip_serializing_if = "Option::is_none")] pub description: Option<String>, /// <p>The date that the bot alias was updated. When you create a resource, the creation date and last updated date are the same.</p> #[serde(rename = "lastUpdatedDate")] #[serde(skip_serializing_if = "Option::is_none")] pub last_updated_date: Option<f64>, /// <p>The name of the bot alias.</p> #[serde(rename = "name")] #[serde(skip_serializing_if = "Option::is_none")] pub name: Option<String>, } /// <p>Represents an association between an Amazon Lex bot and an external messaging platform.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct BotChannelAssociation { /// <p>An alias pointing to the specific version of the Amazon Lex bot to which this association is being made. </p> #[serde(rename = "botAlias")] #[serde(skip_serializing_if = "Option::is_none")] pub bot_alias: Option<String>, /// <p>Provides information necessary to communicate with the messaging platform. </p> #[serde(rename = "botConfiguration")] #[serde(skip_serializing_if = "Option::is_none")] pub bot_configuration: Option<::std::collections::HashMap<String, String>>, /// <p><p>The name of the Amazon Lex bot to which this association is being made. </p> <note> <p>Currently, Amazon Lex supports associations with Facebook and Slack, and Twilio.</p> </note></p> #[serde(rename = "botName")] #[serde(skip_serializing_if = "Option::is_none")] pub bot_name: Option<String>, /// <p>The date that the association between the Amazon Lex bot and the channel was created. </p> #[serde(rename = "createdDate")] #[serde(skip_serializing_if = "Option::is_none")] pub created_date: Option<f64>, /// <p>A text description of the association you are creating. </p> #[serde(rename = "description")] #[serde(skip_serializing_if = "Option::is_none")] pub description: Option<String>, /// <p>If <code>status</code> is <code>FAILED</code>, Amazon Lex provides the reason that it failed to create the association.</p> #[serde(rename = "failureReason")] #[serde(skip_serializing_if = "Option::is_none")] pub failure_reason: Option<String>, /// <p>The name of the association between the bot and the channel. </p> #[serde(rename = "name")] #[serde(skip_serializing_if = "Option::is_none")] pub name: Option<String>, /// <p><p>The status of the bot channel. </p> <ul> <li> <p> <code>CREATED</code> - The channel has been created and is ready for use.</p> </li> <li> <p> <code>IN_PROGRESS</code> - Channel creation is in progress.</p> </li> <li> <p> <code>FAILED</code> - There was an error creating the channel. For information about the reason for the failure, see the <code>failureReason</code> field.</p> </li> </ul></p> #[serde(rename = "status")] #[serde(skip_serializing_if = "Option::is_none")] pub status: Option<String>, /// <p>Specifies the type of association by indicating the type of channel being established between the Amazon Lex bot and the external messaging platform.</p> #[serde(rename = "type")] #[serde(skip_serializing_if = "Option::is_none")] pub type_: Option<String>, } /// <p>Provides information about a bot. .</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct BotMetadata { /// <p>The date that the bot was created.</p> #[serde(rename = "createdDate")] #[serde(skip_serializing_if = "Option::is_none")] pub created_date: Option<f64>, /// <p>A description of the bot.</p> #[serde(rename = "description")] #[serde(skip_serializing_if = "Option::is_none")] pub description: Option<String>, /// <p>The date that the bot was updated. When you create a bot, the creation date and last updated date are the same. </p> #[serde(rename = "lastUpdatedDate")] #[serde(skip_serializing_if = "Option::is_none")] pub last_updated_date: Option<f64>, /// <p>The name of the bot. </p> #[serde(rename = "name")] #[serde(skip_serializing_if = "Option::is_none")] pub name: Option<String>, /// <p>The status of the bot.</p> #[serde(rename = "status")] #[serde(skip_serializing_if = "Option::is_none")] pub status: Option<String>, /// <p>The version of the bot. For a new bot, the version is always <code>$LATEST</code>.</p> #[serde(rename = "version")] #[serde(skip_serializing_if = "Option::is_none")] pub version: Option<String>, } /// <p>Provides metadata for a built-in intent.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct BuiltinIntentMetadata { /// <p>A unique identifier for the built-in intent. To find the signature for an intent, see <a href="https://developer.amazon.com/public/solutions/alexa/alexa-skills-kit/docs/built-in-intent-ref/standard-intents">Standard Built-in Intents</a> in the <i>Alexa Skills Kit</i>.</p> #[serde(rename = "signature")] #[serde(skip_serializing_if = "Option::is_none")] pub signature: Option<String>, /// <p>A list of identifiers for the locales that the intent supports.</p> #[serde(rename = "supportedLocales")] #[serde(skip_serializing_if = "Option::is_none")] pub supported_locales: Option<Vec<String>>, } /// <p>Provides information about a slot used in a built-in intent.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct BuiltinIntentSlot { /// <p>A list of the slots defined for the intent.</p> #[serde(rename = "name")] #[serde(skip_serializing_if = "Option::is_none")] pub name: Option<String>, } /// <p>Provides information about a built in slot type.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct BuiltinSlotTypeMetadata { /// <p>A unique identifier for the built-in slot type. To find the signature for a slot type, see <a href="https://developer.amazon.com/public/solutions/alexa/alexa-skills-kit/docs/built-in-intent-ref/slot-type-reference">Slot Type Reference</a> in the <i>Alexa Skills Kit</i>.</p> #[serde(rename = "signature")] #[serde(skip_serializing_if = "Option::is_none")] pub signature: Option<String>, /// <p>A list of target locales for the slot. </p> #[serde(rename = "supportedLocales")] #[serde(skip_serializing_if = "Option::is_none")] pub supported_locales: Option<Vec<String>>, } /// <p>Specifies a Lambda function that verifies requests to a bot or fulfills the user's request to a bot..</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct CodeHook { /// <p>The version of the request-response that you want Amazon Lex to use to invoke your Lambda function. For more information, see <a>using-lambda</a>.</p> #[serde(rename = "messageVersion")] pub message_version: String, /// <p>The Amazon Resource Name (ARN) of the Lambda function.</p> #[serde(rename = "uri")] pub uri: String, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct CreateBotVersionRequest { /// <p>Identifies a specific revision of the <code>$LATEST</code> version of the bot. If you specify a checksum and the <code>$LATEST</code> version of the bot has a different checksum, a <code>PreconditionFailedException</code> exception is returned and Amazon Lex doesn't publish a new version. If you don't specify a checksum, Amazon Lex publishes the <code>$LATEST</code> version.</p> #[serde(rename = "checksum")] #[serde(skip_serializing_if = "Option::is_none")] pub checksum: Option<String>, /// <p>The name of the bot that you want to create a new version of. The name is case sensitive. </p> #[serde(rename = "name")] pub name: String, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct CreateBotVersionResponse { /// <p>The message that Amazon Lex uses to abort a conversation. For more information, see <a>PutBot</a>.</p> #[serde(rename = "abortStatement")] #[serde(skip_serializing_if = "Option::is_none")] pub abort_statement: Option<Statement>, /// <p>Checksum identifying the version of the bot that was created.</p> #[serde(rename = "checksum")] #[serde(skip_serializing_if = "Option::is_none")] pub checksum: Option<String>, /// <p>For each Amazon Lex bot created with the Amazon Lex Model Building Service, you must specify whether your use of Amazon Lex is related to a website, program, or other application that is directed or targeted, in whole or in part, to children under age 13 and subject to the Children's Online Privacy Protection Act (COPPA) by specifying <code>true</code> or <code>false</code> in the <code>childDirected</code> field. By specifying <code>true</code> in the <code>childDirected</code> field, you confirm that your use of Amazon Lex <b>is</b> related to a website, program, or other application that is directed or targeted, in whole or in part, to children under age 13 and subject to COPPA. By specifying <code>false</code> in the <code>childDirected</code> field, you confirm that your use of Amazon Lex <b>is not</b> related to a website, program, or other application that is directed or targeted, in whole or in part, to children under age 13 and subject to COPPA. You may not specify a default value for the <code>childDirected</code> field that does not accurately reflect whether your use of Amazon Lex is related to a website, program, or other application that is directed or targeted, in whole or in part, to children under age 13 and subject to COPPA.</p> <p>If your use of Amazon Lex relates to a website, program, or other application that is directed in whole or in part, to children under age 13, you must obtain any required verifiable parental consent under COPPA. For information regarding the use of Amazon Lex in connection with websites, programs, or other applications that are directed or targeted, in whole or in part, to children under age 13, see the <a href="https://aws.amazon.com/lex/faqs#data-security">Amazon Lex FAQ.</a> </p> #[serde(rename = "childDirected")] #[serde(skip_serializing_if = "Option::is_none")] pub child_directed: Option<bool>, /// <p>The message that Amazon Lex uses when it doesn't understand the user's request. For more information, see <a>PutBot</a>. </p> #[serde(rename = "clarificationPrompt")] #[serde(skip_serializing_if = "Option::is_none")] pub clarification_prompt: Option<Prompt>, /// <p>The date when the bot version was created.</p> #[serde(rename = "createdDate")] #[serde(skip_serializing_if = "Option::is_none")] pub created_date: Option<f64>, /// <p>A description of the bot.</p> #[serde(rename = "description")] #[serde(skip_serializing_if = "Option::is_none")] pub description: Option<String>, /// <p>If <code>status</code> is <code>FAILED</code>, Amazon Lex provides the reason that it failed to build the bot.</p> #[serde(rename = "failureReason")] #[serde(skip_serializing_if = "Option::is_none")] pub failure_reason: Option<String>, /// <p>The maximum time in seconds that Amazon Lex retains the data gathered in a conversation. For more information, see <a>PutBot</a>.</p> #[serde(rename = "idleSessionTTLInSeconds")] #[serde(skip_serializing_if = "Option::is_none")] pub idle_session_ttl_in_seconds: Option<i64>, /// <p>An array of <code>Intent</code> objects. For more information, see <a>PutBot</a>.</p> #[serde(rename = "intents")] #[serde(skip_serializing_if = "Option::is_none")] pub intents: Option<Vec<Intent>>, /// <p>The date when the <code>$LATEST</code> version of this bot was updated. </p> #[serde(rename = "lastUpdatedDate")] #[serde(skip_serializing_if = "Option::is_none")] pub last_updated_date: Option<f64>, /// <p> Specifies the target locale for the bot. </p> #[serde(rename = "locale")] #[serde(skip_serializing_if = "Option::is_none")] pub locale: Option<String>, /// <p>The name of the bot.</p> #[serde(rename = "name")] #[serde(skip_serializing_if = "Option::is_none")] pub name: Option<String>, /// <p> When you send a request to create or update a bot, Amazon Lex sets the <code>status</code> response element to <code>BUILDING</code>. After Amazon Lex builds the bot, it sets <code>status</code> to <code>READY</code>. If Amazon Lex can't build the bot, it sets <code>status</code> to <code>FAILED</code>. Amazon Lex returns the reason for the failure in the <code>failureReason</code> response element. </p> #[serde(rename = "status")] #[serde(skip_serializing_if = "Option::is_none")] pub status: Option<String>, /// <p>The version of the bot. </p> #[serde(rename = "version")] #[serde(skip_serializing_if = "Option::is_none")] pub version: Option<String>, /// <p>The Amazon Polly voice ID that Amazon Lex uses for voice interactions with the user.</p> #[serde(rename = "voiceId")] #[serde(skip_serializing_if = "Option::is_none")] pub voice_id: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct CreateIntentVersionRequest { /// <p>Checksum of the <code>$LATEST</code> version of the intent that should be used to create the new version. If you specify a checksum and the <code>$LATEST</code> version of the intent has a different checksum, Amazon Lex returns a <code>PreconditionFailedException</code> exception and doesn't publish a new version. If you don't specify a checksum, Amazon Lex publishes the <code>$LATEST</code> version.</p> #[serde(rename = "checksum")] #[serde(skip_serializing_if = "Option::is_none")] pub checksum: Option<String>, /// <p>The name of the intent that you want to create a new version of. The name is case sensitive. </p> #[serde(rename = "name")] pub name: String, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct CreateIntentVersionResponse { /// <p>Checksum of the intent version created.</p> #[serde(rename = "checksum")] #[serde(skip_serializing_if = "Option::is_none")] pub checksum: Option<String>, /// <p>After the Lambda function specified in the <code>fulfillmentActivity</code> field fulfills the intent, Amazon Lex conveys this statement to the user. </p> #[serde(rename = "conclusionStatement")] #[serde(skip_serializing_if = "Option::is_none")] pub conclusion_statement: Option<Statement>, /// <p>If defined, the prompt that Amazon Lex uses to confirm the user's intent before fulfilling it. </p> #[serde(rename = "confirmationPrompt")] #[serde(skip_serializing_if = "Option::is_none")] pub confirmation_prompt: Option<Prompt>, /// <p>The date that the intent was created.</p> #[serde(rename = "createdDate")] #[serde(skip_serializing_if = "Option::is_none")] pub created_date: Option<f64>, /// <p>A description of the intent.</p> #[serde(rename = "description")] #[serde(skip_serializing_if = "Option::is_none")] pub description: Option<String>, /// <p>If defined, Amazon Lex invokes this Lambda function for each user input.</p> #[serde(rename = "dialogCodeHook")] #[serde(skip_serializing_if = "Option::is_none")] pub dialog_code_hook: Option<CodeHook>, /// <p>If defined, Amazon Lex uses this prompt to solicit additional user activity after the intent is fulfilled. </p> #[serde(rename = "followUpPrompt")] #[serde(skip_serializing_if = "Option::is_none")] pub follow_up_prompt: Option<FollowUpPrompt>, /// <p> Describes how the intent is fulfilled. </p> #[serde(rename = "fulfillmentActivity")] #[serde(skip_serializing_if = "Option::is_none")] pub fulfillment_activity: Option<FulfillmentActivity>, /// <p>The date that the intent was updated. </p> #[serde(rename = "lastUpdatedDate")] #[serde(skip_serializing_if = "Option::is_none")] pub last_updated_date: Option<f64>, /// <p>The name of the intent.</p> #[serde(rename = "name")] #[serde(skip_serializing_if = "Option::is_none")] pub name: Option<String>, /// <p>A unique identifier for a built-in intent.</p> #[serde(rename = "parentIntentSignature")] #[serde(skip_serializing_if = "Option::is_none")] pub parent_intent_signature: Option<String>, /// <p>If the user answers "no" to the question defined in <code>confirmationPrompt</code>, Amazon Lex responds with this statement to acknowledge that the intent was canceled. </p> #[serde(rename = "rejectionStatement")] #[serde(skip_serializing_if = "Option::is_none")] pub rejection_statement: Option<Statement>, /// <p>An array of sample utterances configured for the intent. </p> #[serde(rename = "sampleUtterances")] #[serde(skip_serializing_if = "Option::is_none")] pub sample_utterances: Option<Vec<String>>, /// <p>An array of slot types that defines the information required to fulfill the intent.</p> #[serde(rename = "slots")] #[serde(skip_serializing_if = "Option::is_none")] pub slots: Option<Vec<Slot>>, /// <p>The version number assigned to the new version of the intent.</p> #[serde(rename = "version")] #[serde(skip_serializing_if = "Option::is_none")] pub version: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct CreateSlotTypeVersionRequest { /// <p>Checksum for the <code>$LATEST</code> version of the slot type that you want to publish. If you specify a checksum and the <code>$LATEST</code> version of the slot type has a different checksum, Amazon Lex returns a <code>PreconditionFailedException</code> exception and doesn't publish the new version. If you don't specify a checksum, Amazon Lex publishes the <code>$LATEST</code> version.</p> #[serde(rename = "checksum")] #[serde(skip_serializing_if = "Option::is_none")] pub checksum: Option<String>, /// <p>The name of the slot type that you want to create a new version for. The name is case sensitive. </p> #[serde(rename = "name")] pub name: String, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct CreateSlotTypeVersionResponse { /// <p>Checksum of the <code>$LATEST</code> version of the slot type.</p> #[serde(rename = "checksum")] #[serde(skip_serializing_if = "Option::is_none")] pub checksum: Option<String>, /// <p>The date that the slot type was created.</p> #[serde(rename = "createdDate")] #[serde(skip_serializing_if = "Option::is_none")] pub created_date: Option<f64>, /// <p>A description of the slot type.</p> #[serde(rename = "description")] #[serde(skip_serializing_if = "Option::is_none")] pub description: Option<String>, /// <p>A list of <code>EnumerationValue</code> objects that defines the values that the slot type can take.</p> #[serde(rename = "enumerationValues")] #[serde(skip_serializing_if = "Option::is_none")] pub enumeration_values: Option<Vec<EnumerationValue>>, /// <p>The date that the slot type was updated. When you create a resource, the creation date and last update date are the same.</p> #[serde(rename = "lastUpdatedDate")] #[serde(skip_serializing_if = "Option::is_none")] pub last_updated_date: Option<f64>, /// <p>The name of the slot type.</p> #[serde(rename = "name")] #[serde(skip_serializing_if = "Option::is_none")] pub name: Option<String>, /// <p>The strategy that Amazon Lex uses to determine the value of the slot. For more information, see <a>PutSlotType</a>.</p> #[serde(rename = "valueSelectionStrategy")] #[serde(skip_serializing_if = "Option::is_none")] pub value_selection_strategy: Option<String>, /// <p>The version assigned to the new slot type version. </p> #[serde(rename = "version")] #[serde(skip_serializing_if = "Option::is_none")] pub version: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct DeleteBotAliasRequest { /// <p>The name of the bot that the alias points to.</p> #[serde(rename = "botName")] pub bot_name: String, /// <p>The name of the alias to delete. The name is case sensitive. </p> #[serde(rename = "name")] pub name: String, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct DeleteBotChannelAssociationRequest { /// <p>An alias that points to the specific version of the Amazon Lex bot to which this association is being made.</p> #[serde(rename = "botAlias")] pub bot_alias: String, /// <p>The name of the Amazon Lex bot.</p> #[serde(rename = "botName")] pub bot_name: String, /// <p>The name of the association. The name is case sensitive. </p> #[serde(rename = "name")] pub name: String, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct DeleteBotRequest { /// <p>The name of the bot. The name is case sensitive. </p> #[serde(rename = "name")] pub name: String, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct DeleteBotVersionRequest { /// <p>The name of the bot.</p> #[serde(rename = "name")] pub name: String, /// <p>The version of the bot to delete. You cannot delete the <code>$LATEST</code> version of the bot. To delete the <code>$LATEST</code> version, use the <a>DeleteBot</a> operation.</p> #[serde(rename = "version")] pub version: String, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct DeleteIntentRequest { /// <p>The name of the intent. The name is case sensitive. </p> #[serde(rename = "name")] pub name: String, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct DeleteIntentVersionRequest { /// <p>The name of the intent.</p> #[serde(rename = "name")] pub name: String, /// <p>The version of the intent to delete. You cannot delete the <code>$LATEST</code> version of the intent. To delete the <code>$LATEST</code> version, use the <a>DeleteIntent</a> operation.</p> #[serde(rename = "version")] pub version: String, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct DeleteSlotTypeRequest { /// <p>The name of the slot type. The name is case sensitive. </p> #[serde(rename = "name")] pub name: String, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct DeleteSlotTypeVersionRequest { /// <p>The name of the slot type.</p> #[serde(rename = "name")] pub name: String, /// <p>The version of the slot type to delete. You cannot delete the <code>$LATEST</code> version of the slot type. To delete the <code>$LATEST</code> version, use the <a>DeleteSlotType</a> operation.</p> #[serde(rename = "version")] pub version: String, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct DeleteUtterancesRequest { /// <p>The name of the bot that stored the utterances.</p> #[serde(rename = "botName")] pub bot_name: String, /// <p> The unique identifier for the user that made the utterances. This is the user ID that was sent in the <a href="http://docs.aws.amazon.com/lex/latest/dg/API_runtime_PostContent.html">PostContent</a> or <a href="http://docs.aws.amazon.com/lex/latest/dg/API_runtime_PostText.html">PostText</a> operation request that contained the utterance.</p> #[serde(rename = "userId")] pub user_id: String, } /// <p><p>Each slot type can have a set of values. Each enumeration value represents a value the slot type can take. </p> <p>For example, a pizza ordering bot could have a slot type that specifies the type of crust that the pizza should have. The slot type could include the values </p> <ul> <li> <p>thick</p> </li> <li> <p>thin</p> </li> <li> <p>stuffed</p> </li> </ul></p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct EnumerationValue { /// <p>Additional values related to the slot type value.</p> #[serde(rename = "synonyms")] #[serde(skip_serializing_if = "Option::is_none")] pub synonyms: Option<Vec<String>>, /// <p>The value of the slot type.</p> #[serde(rename = "value")] pub value: String, } /// <p>A prompt for additional activity after an intent is fulfilled. For example, after the <code>OrderPizza</code> intent is fulfilled, you might prompt the user to find out whether the user wants to order drinks.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct FollowUpPrompt { /// <p>Prompts for information from the user. </p> #[serde(rename = "prompt")] pub prompt: Prompt, /// <p>If the user answers "no" to the question defined in the <code>prompt</code> field, Amazon Lex responds with this statement to acknowledge that the intent was canceled. </p> #[serde(rename = "rejectionStatement")] pub rejection_statement: Statement, } /// <p><p> Describes how the intent is fulfilled after the user provides all of the information required for the intent. You can provide a Lambda function to process the intent, or you can return the intent information to the client application. We recommend that you use a Lambda function so that the relevant logic lives in the Cloud and limit the client-side code primarily to presentation. If you need to update the logic, you only update the Lambda function; you don't need to upgrade your client application. </p> <p>Consider the following examples:</p> <ul> <li> <p>In a pizza ordering application, after the user provides all of the information for placing an order, you use a Lambda function to place an order with a pizzeria. </p> </li> <li> <p>In a gaming application, when a user says "pick up a rock," this information must go back to the client application so that it can perform the operation and update the graphics. In this case, you want Amazon Lex to return the intent data to the client. </p> </li> </ul></p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct FulfillmentActivity { /// <p> A description of the Lambda function that is run to fulfill the intent. </p> #[serde(rename = "codeHook")] #[serde(skip_serializing_if = "Option::is_none")] pub code_hook: Option<CodeHook>, /// <p> How the intent should be fulfilled, either by running a Lambda function or by returning the slot data to the client application. </p> #[serde(rename = "type")] pub type_: String, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct GetBotAliasRequest { /// <p>The name of the bot.</p> #[serde(rename = "botName")] pub bot_name: String, /// <p>The name of the bot alias. The name is case sensitive.</p> #[serde(rename = "name")] pub name: String, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct GetBotAliasResponse { /// <p>The name of the bot that the alias points to.</p> #[serde(rename = "botName")] #[serde(skip_serializing_if = "Option::is_none")] pub bot_name: Option<String>, /// <p>The version of the bot that the alias points to.</p> #[serde(rename = "botVersion")] #[serde(skip_serializing_if = "Option::is_none")] pub bot_version: Option<String>, /// <p>Checksum of the bot alias.</p> #[serde(rename = "checksum")] #[serde(skip_serializing_if = "Option::is_none")] pub checksum: Option<String>, /// <p>The date that the bot alias was created.</p> #[serde(rename = "createdDate")] #[serde(skip_serializing_if = "Option::is_none")] pub created_date: Option<f64>, /// <p>A description of the bot alias.</p> #[serde(rename = "description")] #[serde(skip_serializing_if = "Option::is_none")] pub description: Option<String>, /// <p>The date that the bot alias was updated. When you create a resource, the creation date and the last updated date are the same.</p> #[serde(rename = "lastUpdatedDate")] #[serde(skip_serializing_if = "Option::is_none")] pub last_updated_date: Option<f64>, /// <p>The name of the bot alias.</p> #[serde(rename = "name")] #[serde(skip_serializing_if = "Option::is_none")] pub name: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct GetBotAliasesRequest { /// <p>The name of the bot.</p> #[serde(rename = "botName")] pub bot_name: String, /// <p>The maximum number of aliases to return in the response. The default is 50. . </p> #[serde(rename = "maxResults")] #[serde(skip_serializing_if = "Option::is_none")] pub max_results: Option<i64>, /// <p>Substring to match in bot alias names. An alias will be returned if any part of its name matches the substring. For example, "xyz" matches both "xyzabc" and "abcxyz."</p> #[serde(rename = "nameContains")] #[serde(skip_serializing_if = "Option::is_none")] pub name_contains: Option<String>, /// <p>A pagination token for fetching the next page of aliases. If the response to this call is truncated, Amazon Lex returns a pagination token in the response. To fetch the next page of aliases, specify the pagination token in the next request. </p> #[serde(rename = "nextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct GetBotAliasesResponse { /// <p>An array of <code>BotAliasMetadata</code> objects, each describing a bot alias.</p> #[serde(rename = "BotAliases")] #[serde(skip_serializing_if = "Option::is_none")] pub bot_aliases: Option<Vec<BotAliasMetadata>>, /// <p>A pagination token for fetching next page of aliases. If the response to this call is truncated, Amazon Lex returns a pagination token in the response. To fetch the next page of aliases, specify the pagination token in the next request. </p> #[serde(rename = "nextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct GetBotChannelAssociationRequest { /// <p>An alias pointing to the specific version of the Amazon Lex bot to which this association is being made.</p> #[serde(rename = "botAlias")] pub bot_alias: String, /// <p>The name of the Amazon Lex bot.</p> #[serde(rename = "botName")] pub bot_name: String, /// <p>The name of the association between the bot and the channel. The name is case sensitive. </p> #[serde(rename = "name")] pub name: String, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct GetBotChannelAssociationResponse { /// <p>An alias pointing to the specific version of the Amazon Lex bot to which this association is being made.</p> #[serde(rename = "botAlias")] #[serde(skip_serializing_if = "Option::is_none")] pub bot_alias: Option<String>, /// <p>Provides information that the messaging platform needs to communicate with the Amazon Lex bot.</p> #[serde(rename = "botConfiguration")] #[serde(skip_serializing_if = "Option::is_none")] pub bot_configuration: Option<::std::collections::HashMap<String, String>>, /// <p>The name of the Amazon Lex bot.</p> #[serde(rename = "botName")] #[serde(skip_serializing_if = "Option::is_none")] pub bot_name: Option<String>, /// <p>The date that the association between the bot and the channel was created.</p> #[serde(rename = "createdDate")] #[serde(skip_serializing_if = "Option::is_none")] pub created_date: Option<f64>, /// <p>A description of the association between the bot and the channel.</p> #[serde(rename = "description")] #[serde(skip_serializing_if = "Option::is_none")] pub description: Option<String>, /// <p>If <code>status</code> is <code>FAILED</code>, Amazon Lex provides the reason that it failed to create the association.</p> #[serde(rename = "failureReason")] #[serde(skip_serializing_if = "Option::is_none")] pub failure_reason: Option<String>, /// <p>The name of the association between the bot and the channel.</p> #[serde(rename = "name")] #[serde(skip_serializing_if = "Option::is_none")] pub name: Option<String>, /// <p><p>The status of the bot channel. </p> <ul> <li> <p> <code>CREATED</code> - The channel has been created and is ready for use.</p> </li> <li> <p> <code>IN_PROGRESS</code> - Channel creation is in progress.</p> </li> <li> <p> <code>FAILED</code> - There was an error creating the channel. For information about the reason for the failure, see the <code>failureReason</code> field.</p> </li> </ul></p> #[serde(rename = "status")] #[serde(skip_serializing_if = "Option::is_none")] pub status: Option<String>, /// <p>The type of the messaging platform.</p> #[serde(rename = "type")] #[serde(skip_serializing_if = "Option::is_none")] pub type_: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct GetBotChannelAssociationsRequest { /// <p>An alias pointing to the specific version of the Amazon Lex bot to which this association is being made.</p> #[serde(rename = "botAlias")] pub bot_alias: String, /// <p>The name of the Amazon Lex bot in the association.</p> #[serde(rename = "botName")] pub bot_name: String, /// <p>The maximum number of associations to return in the response. The default is 50. </p> #[serde(rename = "maxResults")] #[serde(skip_serializing_if = "Option::is_none")] pub max_results: Option<i64>, /// <p>Substring to match in channel association names. An association will be returned if any part of its name matches the substring. For example, "xyz" matches both "xyzabc" and "abcxyz." To return all bot channel associations, use a hyphen ("-") as the <code>nameContains</code> parameter.</p> #[serde(rename = "nameContains")] #[serde(skip_serializing_if = "Option::is_none")] pub name_contains: Option<String>, /// <p>A pagination token for fetching the next page of associations. If the response to this call is truncated, Amazon Lex returns a pagination token in the response. To fetch the next page of associations, specify the pagination token in the next request. </p> #[serde(rename = "nextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct GetBotChannelAssociationsResponse { /// <p>An array of objects, one for each association, that provides information about the Amazon Lex bot and its association with the channel. </p> #[serde(rename = "botChannelAssociations")] #[serde(skip_serializing_if = "Option::is_none")] pub bot_channel_associations: Option<Vec<BotChannelAssociation>>, /// <p>A pagination token that fetches the next page of associations. If the response to this call is truncated, Amazon Lex returns a pagination token in the response. To fetch the next page of associations, specify the pagination token in the next request. </p> #[serde(rename = "nextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct GetBotRequest { /// <p>The name of the bot. The name is case sensitive. </p> #[serde(rename = "name")] pub name: String, /// <p>The version or alias of the bot.</p> #[serde(rename = "versionOrAlias")] pub version_or_alias: String, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct GetBotResponse { /// <p>The message that Amazon Lex returns when the user elects to end the conversation without completing it. For more information, see <a>PutBot</a>.</p> #[serde(rename = "abortStatement")] #[serde(skip_serializing_if = "Option::is_none")] pub abort_statement: Option<Statement>, /// <p>Checksum of the bot used to identify a specific revision of the bot's <code>$LATEST</code> version.</p> #[serde(rename = "checksum")] #[serde(skip_serializing_if = "Option::is_none")] pub checksum: Option<String>, /// <p>For each Amazon Lex bot created with the Amazon Lex Model Building Service, you must specify whether your use of Amazon Lex is related to a website, program, or other application that is directed or targeted, in whole or in part, to children under age 13 and subject to the Children's Online Privacy Protection Act (COPPA) by specifying <code>true</code> or <code>false</code> in the <code>childDirected</code> field. By specifying <code>true</code> in the <code>childDirected</code> field, you confirm that your use of Amazon Lex <b>is</b> related to a website, program, or other application that is directed or targeted, in whole or in part, to children under age 13 and subject to COPPA. By specifying <code>false</code> in the <code>childDirected</code> field, you confirm that your use of Amazon Lex <b>is not</b> related to a website, program, or other application that is directed or targeted, in whole or in part, to children under age 13 and subject to COPPA. You may not specify a default value for the <code>childDirected</code> field that does not accurately reflect whether your use of Amazon Lex is related to a website, program, or other application that is directed or targeted, in whole or in part, to children under age 13 and subject to COPPA.</p> <p>If your use of Amazon Lex relates to a website, program, or other application that is directed in whole or in part, to children under age 13, you must obtain any required verifiable parental consent under COPPA. For information regarding the use of Amazon Lex in connection with websites, programs, or other applications that are directed or targeted, in whole or in part, to children under age 13, see the <a href="https://aws.amazon.com/lex/faqs#data-security">Amazon Lex FAQ.</a> </p> #[serde(rename = "childDirected")] #[serde(skip_serializing_if = "Option::is_none")] pub child_directed: Option<bool>, /// <p>The message Amazon Lex uses when it doesn't understand the user's request. For more information, see <a>PutBot</a>. </p> #[serde(rename = "clarificationPrompt")] #[serde(skip_serializing_if = "Option::is_none")] pub clarification_prompt: Option<Prompt>, /// <p>The date that the bot was created.</p> #[serde(rename = "createdDate")] #[serde(skip_serializing_if = "Option::is_none")] pub created_date: Option<f64>, /// <p>A description of the bot.</p> #[serde(rename = "description")] #[serde(skip_serializing_if = "Option::is_none")] pub description: Option<String>, /// <p>If <code>status</code> is <code>FAILED</code>, Amazon Lex explains why it failed to build the bot.</p> #[serde(rename = "failureReason")] #[serde(skip_serializing_if = "Option::is_none")] pub failure_reason: Option<String>, /// <p>The maximum time in seconds that Amazon Lex retains the data gathered in a conversation. For more information, see <a>PutBot</a>.</p> #[serde(rename = "idleSessionTTLInSeconds")] #[serde(skip_serializing_if = "Option::is_none")] pub idle_session_ttl_in_seconds: Option<i64>, /// <p>An array of <code>intent</code> objects. For more information, see <a>PutBot</a>.</p> #[serde(rename = "intents")] #[serde(skip_serializing_if = "Option::is_none")] pub intents: Option<Vec<Intent>>, /// <p>The date that the bot was updated. When you create a resource, the creation date and last updated date are the same. </p> #[serde(rename = "lastUpdatedDate")] #[serde(skip_serializing_if = "Option::is_none")] pub last_updated_date: Option<f64>, /// <p> The target locale for the bot. </p> #[serde(rename = "locale")] #[serde(skip_serializing_if = "Option::is_none")] pub locale: Option<String>, /// <p>The name of the bot.</p> #[serde(rename = "name")] #[serde(skip_serializing_if = "Option::is_none")] pub name: Option<String>, /// <p>The status of the bot. If the bot is ready to run, the status is <code>READY</code>. If there was a problem with building the bot, the status is <code>FAILED</code> and the <code>failureReason</code> explains why the bot did not build. If the bot was saved but not built, the status is <code>NOT BUILT</code>.</p> #[serde(rename = "status")] #[serde(skip_serializing_if = "Option::is_none")] pub status: Option<String>, /// <p>The version of the bot. For a new bot, the version is always <code>$LATEST</code>.</p> #[serde(rename = "version")] #[serde(skip_serializing_if = "Option::is_none")] pub version: Option<String>, /// <p>The Amazon Polly voice ID that Amazon Lex uses for voice interaction with the user. For more information, see <a>PutBot</a>.</p> #[serde(rename = "voiceId")] #[serde(skip_serializing_if = "Option::is_none")] pub voice_id: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct GetBotVersionsRequest { /// <p>The maximum number of bot versions to return in the response. The default is 10.</p> #[serde(rename = "maxResults")] #[serde(skip_serializing_if = "Option::is_none")] pub max_results: Option<i64>, /// <p>The name of the bot for which versions should be returned.</p> #[serde(rename = "name")] pub name: String, /// <p>A pagination token for fetching the next page of bot versions. If the response to this call is truncated, Amazon Lex returns a pagination token in the response. To fetch the next page of versions, specify the pagination token in the next request. </p> #[serde(rename = "nextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct GetBotVersionsResponse { /// <p>An array of <code>BotMetadata</code> objects, one for each numbered version of the bot plus one for the <code>$LATEST</code> version.</p> #[serde(rename = "bots")] #[serde(skip_serializing_if = "Option::is_none")] pub bots: Option<Vec<BotMetadata>>, /// <p>A pagination token for fetching the next page of bot versions. If the response to this call is truncated, Amazon Lex returns a pagination token in the response. To fetch the next page of versions, specify the pagination token in the next request. </p> #[serde(rename = "nextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct GetBotsRequest { /// <p>The maximum number of bots to return in the response that the request will return. The default is 10.</p> #[serde(rename = "maxResults")] #[serde(skip_serializing_if = "Option::is_none")] pub max_results: Option<i64>, /// <p>Substring to match in bot names. A bot will be returned if any part of its name matches the substring. For example, "xyz" matches both "xyzabc" and "abcxyz."</p> #[serde(rename = "nameContains")] #[serde(skip_serializing_if = "Option::is_none")] pub name_contains: Option<String>, /// <p>A pagination token that fetches the next page of bots. If the response to this call is truncated, Amazon Lex returns a pagination token in the response. To fetch the next page of bots, specify the pagination token in the next request. </p> #[serde(rename = "nextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct GetBotsResponse { /// <p>An array of <code>botMetadata</code> objects, with one entry for each bot. </p> #[serde(rename = "bots")] #[serde(skip_serializing_if = "Option::is_none")] pub bots: Option<Vec<BotMetadata>>, /// <p>If the response is truncated, it includes a pagination token that you can specify in your next request to fetch the next page of bots. </p> #[serde(rename = "nextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct GetBuiltinIntentRequest { /// <p>The unique identifier for a built-in intent. To find the signature for an intent, see <a href="https://developer.amazon.com/public/solutions/alexa/alexa-skills-kit/docs/built-in-intent-ref/standard-intents">Standard Built-in Intents</a> in the <i>Alexa Skills Kit</i>.</p> #[serde(rename = "signature")] pub signature: String, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct GetBuiltinIntentResponse { /// <p>The unique identifier for a built-in intent.</p> #[serde(rename = "signature")] #[serde(skip_serializing_if = "Option::is_none")] pub signature: Option<String>, /// <p>An array of <code>BuiltinIntentSlot</code> objects, one entry for each slot type in the intent.</p> #[serde(rename = "slots")] #[serde(skip_serializing_if = "Option::is_none")] pub slots: Option<Vec<BuiltinIntentSlot>>, /// <p>A list of locales that the intent supports.</p> #[serde(rename = "supportedLocales")] #[serde(skip_serializing_if = "Option::is_none")] pub supported_locales: Option<Vec<String>>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct GetBuiltinIntentsRequest { /// <p>A list of locales that the intent supports.</p> #[serde(rename = "locale")] #[serde(skip_serializing_if = "Option::is_none")] pub locale: Option<String>, /// <p>The maximum number of intents to return in the response. The default is 10.</p> #[serde(rename = "maxResults")] #[serde(skip_serializing_if = "Option::is_none")] pub max_results: Option<i64>, /// <p>A pagination token that fetches the next page of intents. If this API call is truncated, Amazon Lex returns a pagination token in the response. To fetch the next page of intents, use the pagination token in the next request.</p> #[serde(rename = "nextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, /// <p>Substring to match in built-in intent signatures. An intent will be returned if any part of its signature matches the substring. For example, "xyz" matches both "xyzabc" and "abcxyz." To find the signature for an intent, see <a href="https://developer.amazon.com/public/solutions/alexa/alexa-skills-kit/docs/built-in-intent-ref/standard-intents">Standard Built-in Intents</a> in the <i>Alexa Skills Kit</i>.</p> #[serde(rename = "signatureContains")] #[serde(skip_serializing_if = "Option::is_none")] pub signature_contains: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct GetBuiltinIntentsResponse { /// <p>An array of <code>builtinIntentMetadata</code> objects, one for each intent in the response.</p> #[serde(rename = "intents")] #[serde(skip_serializing_if = "Option::is_none")] pub intents: Option<Vec<BuiltinIntentMetadata>>, /// <p>A pagination token that fetches the next page of intents. If the response to this API call is truncated, Amazon Lex returns a pagination token in the response. To fetch the next page of intents, specify the pagination token in the next request.</p> #[serde(rename = "nextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct GetBuiltinSlotTypesRequest { /// <p>A list of locales that the slot type supports.</p> #[serde(rename = "locale")] #[serde(skip_serializing_if = "Option::is_none")] pub locale: Option<String>, /// <p>The maximum number of slot types to return in the response. The default is 10.</p> #[serde(rename = "maxResults")] #[serde(skip_serializing_if = "Option::is_none")] pub max_results: Option<i64>, /// <p>A pagination token that fetches the next page of slot types. If the response to this API call is truncated, Amazon Lex returns a pagination token in the response. To fetch the next page of slot types, specify the pagination token in the next request.</p> #[serde(rename = "nextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, /// <p>Substring to match in built-in slot type signatures. A slot type will be returned if any part of its signature matches the substring. For example, "xyz" matches both "xyzabc" and "abcxyz."</p> #[serde(rename = "signatureContains")] #[serde(skip_serializing_if = "Option::is_none")] pub signature_contains: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct GetBuiltinSlotTypesResponse { /// <p>If the response is truncated, the response includes a pagination token that you can use in your next request to fetch the next page of slot types.</p> #[serde(rename = "nextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, /// <p>An array of <code>BuiltInSlotTypeMetadata</code> objects, one entry for each slot type returned.</p> #[serde(rename = "slotTypes")] #[serde(skip_serializing_if = "Option::is_none")] pub slot_types: Option<Vec<BuiltinSlotTypeMetadata>>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct GetExportRequest { /// <p>The format of the exported data.</p> #[serde(rename = "exportType")] pub export_type: String, /// <p>The name of the bot to export.</p> #[serde(rename = "name")] pub name: String, /// <p>The type of resource to export. </p> #[serde(rename = "resourceType")] pub resource_type: String, /// <p>The version of the bot to export.</p> #[serde(rename = "version")] pub version: String, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct GetExportResponse { /// <p><p>The status of the export. </p> <ul> <li> <p> <code>IN_PROGRESS</code> - The export is in progress.</p> </li> <li> <p> <code>READY</code> - The export is complete.</p> </li> <li> <p> <code>FAILED</code> - The export could not be completed.</p> </li> </ul></p> #[serde(rename = "exportStatus")] #[serde(skip_serializing_if = "Option::is_none")] pub export_status: Option<String>, /// <p>The format of the exported data.</p> #[serde(rename = "exportType")] #[serde(skip_serializing_if = "Option::is_none")] pub export_type: Option<String>, /// <p>If <code>status</code> is <code>FAILED</code>, Amazon Lex provides the reason that it failed to export the resource.</p> #[serde(rename = "failureReason")] #[serde(skip_serializing_if = "Option::is_none")] pub failure_reason: Option<String>, /// <p>The name of the bot being exported.</p> #[serde(rename = "name")] #[serde(skip_serializing_if = "Option::is_none")] pub name: Option<String>, /// <p>The type of the exported resource.</p> #[serde(rename = "resourceType")] #[serde(skip_serializing_if = "Option::is_none")] pub resource_type: Option<String>, /// <p>An S3 pre-signed URL that provides the location of the exported resource. The exported resource is a ZIP archive that contains the exported resource in JSON format. The structure of the archive may change. Your code should not rely on the archive structure.</p> #[serde(rename = "url")] #[serde(skip_serializing_if = "Option::is_none")] pub url: Option<String>, /// <p>The version of the bot being exported.</p> #[serde(rename = "version")] #[serde(skip_serializing_if = "Option::is_none")] pub version: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct GetImportRequest { /// <p>The identifier of the import job information to return.</p> #[serde(rename = "importId")] pub import_id: String, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct GetImportResponse { /// <p>A timestamp for the date and time that the import job was created.</p> #[serde(rename = "createdDate")] #[serde(skip_serializing_if = "Option::is_none")] pub created_date: Option<f64>, /// <p>A string that describes why an import job failed to complete.</p> #[serde(rename = "failureReason")] #[serde(skip_serializing_if = "Option::is_none")] pub failure_reason: Option<Vec<String>>, /// <p>The identifier for the specific import job.</p> #[serde(rename = "importId")] #[serde(skip_serializing_if = "Option::is_none")] pub import_id: Option<String>, /// <p>The status of the import job. If the status is <code>FAILED</code>, you can get the reason for the failure from the <code>failureReason</code> field.</p> #[serde(rename = "importStatus")] #[serde(skip_serializing_if = "Option::is_none")] pub import_status: Option<String>, /// <p>The action taken when there was a conflict between an existing resource and a resource in the import file.</p> #[serde(rename = "mergeStrategy")] #[serde(skip_serializing_if = "Option::is_none")] pub merge_strategy: Option<String>, /// <p>The name given to the import job.</p> #[serde(rename = "name")] #[serde(skip_serializing_if = "Option::is_none")] pub name: Option<String>, /// <p>The type of resource imported.</p> #[serde(rename = "resourceType")] #[serde(skip_serializing_if = "Option::is_none")] pub resource_type: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct GetIntentRequest { /// <p>The name of the intent. The name is case sensitive. </p> #[serde(rename = "name")] pub name: String, /// <p>The version of the intent.</p> #[serde(rename = "version")] pub version: String, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct GetIntentResponse { /// <p>Checksum of the intent.</p> #[serde(rename = "checksum")] #[serde(skip_serializing_if = "Option::is_none")] pub checksum: Option<String>, /// <p>After the Lambda function specified in the <code>fulfillmentActivity</code> element fulfills the intent, Amazon Lex conveys this statement to the user.</p> #[serde(rename = "conclusionStatement")] #[serde(skip_serializing_if = "Option::is_none")] pub conclusion_statement: Option<Statement>, /// <p>If defined in the bot, Amazon Lex uses prompt to confirm the intent before fulfilling the user's request. For more information, see <a>PutIntent</a>. </p> #[serde(rename = "confirmationPrompt")] #[serde(skip_serializing_if = "Option::is_none")] pub confirmation_prompt: Option<Prompt>, /// <p>The date that the intent was created.</p> #[serde(rename = "createdDate")] #[serde(skip_serializing_if = "Option::is_none")] pub created_date: Option<f64>, /// <p>A description of the intent.</p> #[serde(rename = "description")] #[serde(skip_serializing_if = "Option::is_none")] pub description: Option<String>, /// <p>If defined in the bot, Amazon Amazon Lex invokes this Lambda function for each user input. For more information, see <a>PutIntent</a>. </p> #[serde(rename = "dialogCodeHook")] #[serde(skip_serializing_if = "Option::is_none")] pub dialog_code_hook: Option<CodeHook>, /// <p>If defined in the bot, Amazon Lex uses this prompt to solicit additional user activity after the intent is fulfilled. For more information, see <a>PutIntent</a>.</p> #[serde(rename = "followUpPrompt")] #[serde(skip_serializing_if = "Option::is_none")] pub follow_up_prompt: Option<FollowUpPrompt>, /// <p>Describes how the intent is fulfilled. For more information, see <a>PutIntent</a>. </p> #[serde(rename = "fulfillmentActivity")] #[serde(skip_serializing_if = "Option::is_none")] pub fulfillment_activity: Option<FulfillmentActivity>, /// <p>The date that the intent was updated. When you create a resource, the creation date and the last updated date are the same. </p> #[serde(rename = "lastUpdatedDate")] #[serde(skip_serializing_if = "Option::is_none")] pub last_updated_date: Option<f64>, /// <p>The name of the intent.</p> #[serde(rename = "name")] #[serde(skip_serializing_if = "Option::is_none")] pub name: Option<String>, /// <p>A unique identifier for a built-in intent.</p> #[serde(rename = "parentIntentSignature")] #[serde(skip_serializing_if = "Option::is_none")] pub parent_intent_signature: Option<String>, /// <p>If the user answers "no" to the question defined in <code>confirmationPrompt</code>, Amazon Lex responds with this statement to acknowledge that the intent was canceled. </p> #[serde(rename = "rejectionStatement")] #[serde(skip_serializing_if = "Option::is_none")] pub rejection_statement: Option<Statement>, /// <p>An array of sample utterances configured for the intent.</p> #[serde(rename = "sampleUtterances")] #[serde(skip_serializing_if = "Option::is_none")] pub sample_utterances: Option<Vec<String>>, /// <p>An array of intent slots configured for the intent.</p> #[serde(rename = "slots")] #[serde(skip_serializing_if = "Option::is_none")] pub slots: Option<Vec<Slot>>, /// <p>The version of the intent.</p> #[serde(rename = "version")] #[serde(skip_serializing_if = "Option::is_none")] pub version: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct GetIntentVersionsRequest { /// <p>The maximum number of intent versions to return in the response. The default is 10.</p> #[serde(rename = "maxResults")] #[serde(skip_serializing_if = "Option::is_none")] pub max_results: Option<i64>, /// <p>The name of the intent for which versions should be returned.</p> #[serde(rename = "name")] pub name: String, /// <p>A pagination token for fetching the next page of intent versions. If the response to this call is truncated, Amazon Lex returns a pagination token in the response. To fetch the next page of versions, specify the pagination token in the next request. </p> #[serde(rename = "nextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct GetIntentVersionsResponse { /// <p>An array of <code>IntentMetadata</code> objects, one for each numbered version of the intent plus one for the <code>$LATEST</code> version.</p> #[serde(rename = "intents")] #[serde(skip_serializing_if = "Option::is_none")] pub intents: Option<Vec<IntentMetadata>>, /// <p>A pagination token for fetching the next page of intent versions. If the response to this call is truncated, Amazon Lex returns a pagination token in the response. To fetch the next page of versions, specify the pagination token in the next request. </p> #[serde(rename = "nextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct GetIntentsRequest { /// <p>The maximum number of intents to return in the response. The default is 10.</p> #[serde(rename = "maxResults")] #[serde(skip_serializing_if = "Option::is_none")] pub max_results: Option<i64>, /// <p>Substring to match in intent names. An intent will be returned if any part of its name matches the substring. For example, "xyz" matches both "xyzabc" and "abcxyz."</p> #[serde(rename = "nameContains")] #[serde(skip_serializing_if = "Option::is_none")] pub name_contains: Option<String>, /// <p>A pagination token that fetches the next page of intents. If the response to this API call is truncated, Amazon Lex returns a pagination token in the response. To fetch the next page of intents, specify the pagination token in the next request. </p> #[serde(rename = "nextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct GetIntentsResponse { /// <p>An array of <code>Intent</code> objects. For more information, see <a>PutBot</a>.</p> #[serde(rename = "intents")] #[serde(skip_serializing_if = "Option::is_none")] pub intents: Option<Vec<IntentMetadata>>, /// <p>If the response is truncated, the response includes a pagination token that you can specify in your next request to fetch the next page of intents. </p> #[serde(rename = "nextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct GetSlotTypeRequest { /// <p>The name of the slot type. The name is case sensitive. </p> #[serde(rename = "name")] pub name: String, /// <p>The version of the slot type. </p> #[serde(rename = "version")] pub version: String, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct GetSlotTypeResponse { /// <p>Checksum of the <code>$LATEST</code> version of the slot type.</p> #[serde(rename = "checksum")] #[serde(skip_serializing_if = "Option::is_none")] pub checksum: Option<String>, /// <p>The date that the slot type was created.</p> #[serde(rename = "createdDate")] #[serde(skip_serializing_if = "Option::is_none")] pub created_date: Option<f64>, /// <p>A description of the slot type.</p> #[serde(rename = "description")] #[serde(skip_serializing_if = "Option::is_none")] pub description: Option<String>, /// <p>A list of <code>EnumerationValue</code> objects that defines the values that the slot type can take.</p> #[serde(rename = "enumerationValues")] #[serde(skip_serializing_if = "Option::is_none")] pub enumeration_values: Option<Vec<EnumerationValue>>, /// <p>The date that the slot type was updated. When you create a resource, the creation date and last update date are the same.</p> #[serde(rename = "lastUpdatedDate")] #[serde(skip_serializing_if = "Option::is_none")] pub last_updated_date: Option<f64>, /// <p>The name of the slot type.</p> #[serde(rename = "name")] #[serde(skip_serializing_if = "Option::is_none")] pub name: Option<String>, /// <p>The strategy that Amazon Lex uses to determine the value of the slot. For more information, see <a>PutSlotType</a>.</p> #[serde(rename = "valueSelectionStrategy")] #[serde(skip_serializing_if = "Option::is_none")] pub value_selection_strategy: Option<String>, /// <p>The version of the slot type.</p> #[serde(rename = "version")] #[serde(skip_serializing_if = "Option::is_none")] pub version: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct GetSlotTypeVersionsRequest { /// <p>The maximum number of slot type versions to return in the response. The default is 10.</p> #[serde(rename = "maxResults")] #[serde(skip_serializing_if = "Option::is_none")] pub max_results: Option<i64>, /// <p>The name of the slot type for which versions should be returned.</p> #[serde(rename = "name")] pub name: String, /// <p>A pagination token for fetching the next page of slot type versions. If the response to this call is truncated, Amazon Lex returns a pagination token in the response. To fetch the next page of versions, specify the pagination token in the next request. </p> #[serde(rename = "nextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct GetSlotTypeVersionsResponse { /// <p>A pagination token for fetching the next page of slot type versions. If the response to this call is truncated, Amazon Lex returns a pagination token in the response. To fetch the next page of versions, specify the pagination token in the next request. </p> #[serde(rename = "nextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, /// <p>An array of <code>SlotTypeMetadata</code> objects, one for each numbered version of the slot type plus one for the <code>$LATEST</code> version.</p> #[serde(rename = "slotTypes")] #[serde(skip_serializing_if = "Option::is_none")] pub slot_types: Option<Vec<SlotTypeMetadata>>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct GetSlotTypesRequest { /// <p>The maximum number of slot types to return in the response. The default is 10.</p> #[serde(rename = "maxResults")] #[serde(skip_serializing_if = "Option::is_none")] pub max_results: Option<i64>, /// <p>Substring to match in slot type names. A slot type will be returned if any part of its name matches the substring. For example, "xyz" matches both "xyzabc" and "abcxyz."</p> #[serde(rename = "nameContains")] #[serde(skip_serializing_if = "Option::is_none")] pub name_contains: Option<String>, /// <p>A pagination token that fetches the next page of slot types. If the response to this API call is truncated, Amazon Lex returns a pagination token in the response. To fetch next page of slot types, specify the pagination token in the next request.</p> #[serde(rename = "nextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct GetSlotTypesResponse { /// <p>If the response is truncated, it includes a pagination token that you can specify in your next request to fetch the next page of slot types.</p> #[serde(rename = "nextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, /// <p>An array of objects, one for each slot type, that provides information such as the name of the slot type, the version, and a description.</p> #[serde(rename = "slotTypes")] #[serde(skip_serializing_if = "Option::is_none")] pub slot_types: Option<Vec<SlotTypeMetadata>>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct GetUtterancesViewRequest { /// <p>The name of the bot for which utterance information should be returned.</p> #[serde(rename = "botName")] pub bot_name: String, /// <p>An array of bot versions for which utterance information should be returned. The limit is 5 versions per request.</p> #[serde(rename = "botVersions")] pub bot_versions: Vec<String>, /// <p>To return utterances that were recognized and handled, use<code>Detected</code>. To return utterances that were not recognized, use <code>Missed</code>.</p> #[serde(rename = "statusType")] pub status_type: String, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct GetUtterancesViewResponse { /// <p>The name of the bot for which utterance information was returned.</p> #[serde(rename = "botName")] #[serde(skip_serializing_if = "Option::is_none")] pub bot_name: Option<String>, /// <p>An array of <a>UtteranceList</a> objects, each containing a list of <a>UtteranceData</a> objects describing the utterances that were processed by your bot. The response contains a maximum of 100 <code>UtteranceData</code> objects for each version.</p> #[serde(rename = "utterances")] #[serde(skip_serializing_if = "Option::is_none")] pub utterances: Option<Vec<UtteranceList>>, } /// <p>Identifies the specific version of an intent.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct Intent { /// <p>The name of the intent.</p> #[serde(rename = "intentName")] pub intent_name: String, /// <p>The version of the intent.</p> #[serde(rename = "intentVersion")] pub intent_version: String, } /// <p>Provides information about an intent.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct IntentMetadata { /// <p>The date that the intent was created.</p> #[serde(rename = "createdDate")] #[serde(skip_serializing_if = "Option::is_none")] pub created_date: Option<f64>, /// <p>A description of the intent.</p> #[serde(rename = "description")] #[serde(skip_serializing_if = "Option::is_none")] pub description: Option<String>, /// <p>The date that the intent was updated. When you create an intent, the creation date and last updated date are the same.</p> #[serde(rename = "lastUpdatedDate")] #[serde(skip_serializing_if = "Option::is_none")] pub last_updated_date: Option<f64>, /// <p>The name of the intent.</p> #[serde(rename = "name")] #[serde(skip_serializing_if = "Option::is_none")] pub name: Option<String>, /// <p>The version of the intent.</p> #[serde(rename = "version")] #[serde(skip_serializing_if = "Option::is_none")] pub version: Option<String>, } /// <p>The message object that provides the message text and its type.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct Message { /// <p>The text of the message.</p> #[serde(rename = "content")] pub content: String, /// <p>The content type of the message string.</p> #[serde(rename = "contentType")] pub content_type: String, /// <p>Identifies the message group that the message belongs to. When a group is assigned to a message, Amazon Lex returns one message from each group in the response.</p> #[serde(rename = "groupNumber")] #[serde(skip_serializing_if = "Option::is_none")] pub group_number: Option<i64>, } /// <p>Obtains information from the user. To define a prompt, provide one or more messages and specify the number of attempts to get information from the user. If you provide more than one message, Amazon Lex chooses one of the messages to use to prompt the user. For more information, see <a>how-it-works</a>.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct Prompt { /// <p>The number of times to prompt the user for information.</p> #[serde(rename = "maxAttempts")] pub max_attempts: i64, /// <p>An array of objects, each of which provides a message string and its type. You can specify the message string in plain text or in Speech Synthesis Markup Language (SSML).</p> #[serde(rename = "messages")] pub messages: Vec<Message>, /// <p>A response card. Amazon Lex uses this prompt at runtime, in the <code>PostText</code> API response. It substitutes session attributes and slot values for placeholders in the response card. For more information, see <a>ex-resp-card</a>. </p> #[serde(rename = "responseCard")] #[serde(skip_serializing_if = "Option::is_none")] pub response_card: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct PutBotAliasRequest { /// <p>The name of the bot.</p> #[serde(rename = "botName")] pub bot_name: String, /// <p>The version of the bot.</p> #[serde(rename = "botVersion")] pub bot_version: String, /// <p>Identifies a specific revision of the <code>$LATEST</code> version.</p> <p>When you create a new bot alias, leave the <code>checksum</code> field blank. If you specify a checksum you get a <code>BadRequestException</code> exception.</p> <p>When you want to update a bot alias, set the <code>checksum</code> field to the checksum of the most recent revision of the <code>$LATEST</code> version. If you don't specify the <code> checksum</code> field, or if the checksum does not match the <code>$LATEST</code> version, you get a <code>PreconditionFailedException</code> exception.</p> #[serde(rename = "checksum")] #[serde(skip_serializing_if = "Option::is_none")] pub checksum: Option<String>, /// <p>A description of the alias.</p> #[serde(rename = "description")] #[serde(skip_serializing_if = "Option::is_none")] pub description: Option<String>, /// <p>The name of the alias. The name is <i>not</i> case sensitive.</p> #[serde(rename = "name")] pub name: String, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct PutBotAliasResponse { /// <p>The name of the bot that the alias points to.</p> #[serde(rename = "botName")] #[serde(skip_serializing_if = "Option::is_none")] pub bot_name: Option<String>, /// <p>The version of the bot that the alias points to.</p> #[serde(rename = "botVersion")] #[serde(skip_serializing_if = "Option::is_none")] pub bot_version: Option<String>, /// <p>The checksum for the current version of the alias.</p> #[serde(rename = "checksum")] #[serde(skip_serializing_if = "Option::is_none")] pub checksum: Option<String>, /// <p>The date that the bot alias was created.</p> #[serde(rename = "createdDate")] #[serde(skip_serializing_if = "Option::is_none")] pub created_date: Option<f64>, /// <p>A description of the alias.</p> #[serde(rename = "description")] #[serde(skip_serializing_if = "Option::is_none")] pub description: Option<String>, /// <p>The date that the bot alias was updated. When you create a resource, the creation date and the last updated date are the same.</p> #[serde(rename = "lastUpdatedDate")] #[serde(skip_serializing_if = "Option::is_none")] pub last_updated_date: Option<f64>, /// <p>The name of the alias.</p> #[serde(rename = "name")] #[serde(skip_serializing_if = "Option::is_none")] pub name: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct PutBotRequest { /// <p>When Amazon Lex can't understand the user's input in context, it tries to elicit the information a few times. After that, Amazon Lex sends the message defined in <code>abortStatement</code> to the user, and then aborts the conversation. To set the number of retries, use the <code>valueElicitationPrompt</code> field for the slot type. </p> <p>For example, in a pizza ordering bot, Amazon Lex might ask a user "What type of crust would you like?" If the user's response is not one of the expected responses (for example, "thin crust, "deep dish," etc.), Amazon Lex tries to elicit a correct response a few more times. </p> <p>For example, in a pizza ordering application, <code>OrderPizza</code> might be one of the intents. This intent might require the <code>CrustType</code> slot. You specify the <code>valueElicitationPrompt</code> field when you create the <code>CrustType</code> slot.</p> #[serde(rename = "abortStatement")] #[serde(skip_serializing_if = "Option::is_none")] pub abort_statement: Option<Statement>, /// <p>Identifies a specific revision of the <code>$LATEST</code> version.</p> <p>When you create a new bot, leave the <code>checksum</code> field blank. If you specify a checksum you get a <code>BadRequestException</code> exception.</p> <p>When you want to update a bot, set the <code>checksum</code> field to the checksum of the most recent revision of the <code>$LATEST</code> version. If you don't specify the <code> checksum</code> field, or if the checksum does not match the <code>$LATEST</code> version, you get a <code>PreconditionFailedException</code> exception.</p> #[serde(rename = "checksum")] #[serde(skip_serializing_if = "Option::is_none")] pub checksum: Option<String>, /// <p>For each Amazon Lex bot created with the Amazon Lex Model Building Service, you must specify whether your use of Amazon Lex is related to a website, program, or other application that is directed or targeted, in whole or in part, to children under age 13 and subject to the Children's Online Privacy Protection Act (COPPA) by specifying <code>true</code> or <code>false</code> in the <code>childDirected</code> field. By specifying <code>true</code> in the <code>childDirected</code> field, you confirm that your use of Amazon Lex <b>is</b> related to a website, program, or other application that is directed or targeted, in whole or in part, to children under age 13 and subject to COPPA. By specifying <code>false</code> in the <code>childDirected</code> field, you confirm that your use of Amazon Lex <b>is not</b> related to a website, program, or other application that is directed or targeted, in whole or in part, to children under age 13 and subject to COPPA. You may not specify a default value for the <code>childDirected</code> field that does not accurately reflect whether your use of Amazon Lex is related to a website, program, or other application that is directed or targeted, in whole or in part, to children under age 13 and subject to COPPA.</p> <p>If your use of Amazon Lex relates to a website, program, or other application that is directed in whole or in part, to children under age 13, you must obtain any required verifiable parental consent under COPPA. For information regarding the use of Amazon Lex in connection with websites, programs, or other applications that are directed or targeted, in whole or in part, to children under age 13, see the <a href="https://aws.amazon.com/lex/faqs#data-security">Amazon Lex FAQ.</a> </p> #[serde(rename = "childDirected")] pub child_directed: bool, /// <p>When Amazon Lex doesn't understand the user's intent, it uses this message to get clarification. To specify how many times Amazon Lex should repeate the clarification prompt, use the <code>maxAttempts</code> field. If Amazon Lex still doesn't understand, it sends the message in the <code>abortStatement</code> field. </p> <p>When you create a clarification prompt, make sure that it suggests the correct response from the user. for example, for a bot that orders pizza and drinks, you might create this clarification prompt: "What would you like to do? You can say 'Order a pizza' or 'Order a drink.'"</p> #[serde(rename = "clarificationPrompt")] #[serde(skip_serializing_if = "Option::is_none")] pub clarification_prompt: Option<Prompt>, #[serde(rename = "createVersion")] #[serde(skip_serializing_if = "Option::is_none")] pub create_version: Option<bool>, /// <p>A description of the bot.</p> #[serde(rename = "description")] #[serde(skip_serializing_if = "Option::is_none")] pub description: Option<String>, /// <p>The maximum time in seconds that Amazon Lex retains the data gathered in a conversation.</p> <p>A user interaction session remains active for the amount of time specified. If no conversation occurs during this time, the session expires and Amazon Lex deletes any data provided before the timeout.</p> <p>For example, suppose that a user chooses the OrderPizza intent, but gets sidetracked halfway through placing an order. If the user doesn't complete the order within the specified time, Amazon Lex discards the slot information that it gathered, and the user must start over.</p> <p>If you don't include the <code>idleSessionTTLInSeconds</code> element in a <code>PutBot</code> operation request, Amazon Lex uses the default value. This is also true if the request replaces an existing bot.</p> <p>The default is 300 seconds (5 minutes).</p> #[serde(rename = "idleSessionTTLInSeconds")] #[serde(skip_serializing_if = "Option::is_none")] pub idle_session_ttl_in_seconds: Option<i64>, /// <p>An array of <code>Intent</code> objects. Each intent represents a command that a user can express. For example, a pizza ordering bot might support an OrderPizza intent. For more information, see <a>how-it-works</a>.</p> #[serde(rename = "intents")] #[serde(skip_serializing_if = "Option::is_none")] pub intents: Option<Vec<Intent>>, /// <p> Specifies the target locale for the bot. Any intent used in the bot must be compatible with the locale of the bot. </p> <p>The default is <code>en-US</code>.</p> #[serde(rename = "locale")] pub locale: String, /// <p>The name of the bot. The name is <i>not</i> case sensitive. </p> #[serde(rename = "name")] pub name: String, /// <p>If you set the <code>processBehavior</code> element to <code>BUILD</code>, Amazon Lex builds the bot so that it can be run. If you set the element to <code>SAVE</code> Amazon Lex saves the bot, but doesn't build it. </p> <p>If you don't specify this value, the default value is <code>BUILD</code>.</p> #[serde(rename = "processBehavior")] #[serde(skip_serializing_if = "Option::is_none")] pub process_behavior: Option<String>, /// <p>The Amazon Polly voice ID that you want Amazon Lex to use for voice interactions with the user. The locale configured for the voice must match the locale of the bot. For more information, see <a href="http://docs.aws.amazon.com/polly/latest/dg/voicelist.html">Available Voices</a> in the <i>Amazon Polly Developer Guide</i>.</p> #[serde(rename = "voiceId")] #[serde(skip_serializing_if = "Option::is_none")] pub voice_id: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct PutBotResponse { /// <p>The message that Amazon Lex uses to abort a conversation. For more information, see <a>PutBot</a>.</p> #[serde(rename = "abortStatement")] #[serde(skip_serializing_if = "Option::is_none")] pub abort_statement: Option<Statement>, /// <p>Checksum of the bot that you created.</p> #[serde(rename = "checksum")] #[serde(skip_serializing_if = "Option::is_none")] pub checksum: Option<String>, /// <p>For each Amazon Lex bot created with the Amazon Lex Model Building Service, you must specify whether your use of Amazon Lex is related to a website, program, or other application that is directed or targeted, in whole or in part, to children under age 13 and subject to the Children's Online Privacy Protection Act (COPPA) by specifying <code>true</code> or <code>false</code> in the <code>childDirected</code> field. By specifying <code>true</code> in the <code>childDirected</code> field, you confirm that your use of Amazon Lex <b>is</b> related to a website, program, or other application that is directed or targeted, in whole or in part, to children under age 13 and subject to COPPA. By specifying <code>false</code> in the <code>childDirected</code> field, you confirm that your use of Amazon Lex <b>is not</b> related to a website, program, or other application that is directed or targeted, in whole or in part, to children under age 13 and subject to COPPA. You may not specify a default value for the <code>childDirected</code> field that does not accurately reflect whether your use of Amazon Lex is related to a website, program, or other application that is directed or targeted, in whole or in part, to children under age 13 and subject to COPPA.</p> <p>If your use of Amazon Lex relates to a website, program, or other application that is directed in whole or in part, to children under age 13, you must obtain any required verifiable parental consent under COPPA. For information regarding the use of Amazon Lex in connection with websites, programs, or other applications that are directed or targeted, in whole or in part, to children under age 13, see the <a href="https://aws.amazon.com/lex/faqs#data-security">Amazon Lex FAQ.</a> </p> #[serde(rename = "childDirected")] #[serde(skip_serializing_if = "Option::is_none")] pub child_directed: Option<bool>, /// <p> The prompts that Amazon Lex uses when it doesn't understand the user's intent. For more information, see <a>PutBot</a>. </p> #[serde(rename = "clarificationPrompt")] #[serde(skip_serializing_if = "Option::is_none")] pub clarification_prompt: Option<Prompt>, #[serde(rename = "createVersion")] #[serde(skip_serializing_if = "Option::is_none")] pub create_version: Option<bool>, /// <p>The date that the bot was created.</p> #[serde(rename = "createdDate")] #[serde(skip_serializing_if = "Option::is_none")] pub created_date: Option<f64>, /// <p>A description of the bot.</p> #[serde(rename = "description")] #[serde(skip_serializing_if = "Option::is_none")] pub description: Option<String>, /// <p>If <code>status</code> is <code>FAILED</code>, Amazon Lex provides the reason that it failed to build the bot.</p> #[serde(rename = "failureReason")] #[serde(skip_serializing_if = "Option::is_none")] pub failure_reason: Option<String>, /// <p>The maximum length of time that Amazon Lex retains the data gathered in a conversation. For more information, see <a>PutBot</a>.</p> #[serde(rename = "idleSessionTTLInSeconds")] #[serde(skip_serializing_if = "Option::is_none")] pub idle_session_ttl_in_seconds: Option<i64>, /// <p>An array of <code>Intent</code> objects. For more information, see <a>PutBot</a>.</p> #[serde(rename = "intents")] #[serde(skip_serializing_if = "Option::is_none")] pub intents: Option<Vec<Intent>>, /// <p>The date that the bot was updated. When you create a resource, the creation date and last updated date are the same.</p> #[serde(rename = "lastUpdatedDate")] #[serde(skip_serializing_if = "Option::is_none")] pub last_updated_date: Option<f64>, /// <p> The target locale for the bot. </p> #[serde(rename = "locale")] #[serde(skip_serializing_if = "Option::is_none")] pub locale: Option<String>, /// <p>The name of the bot.</p> #[serde(rename = "name")] #[serde(skip_serializing_if = "Option::is_none")] pub name: Option<String>, /// <p> When you send a request to create a bot with <code>processBehavior</code> set to <code>BUILD</code>, Amazon Lex sets the <code>status</code> response element to <code>BUILDING</code>. After Amazon Lex builds the bot, it sets <code>status</code> to <code>READY</code>. If Amazon Lex can't build the bot, Amazon Lex sets <code>status</code> to <code>FAILED</code>. Amazon Lex returns the reason for the failure in the <code>failureReason</code> response element. </p> <p>When you set <code>processBehavior</code>to <code>SAVE</code>, Amazon Lex sets the status code to <code>NOT BUILT</code>.</p> #[serde(rename = "status")] #[serde(skip_serializing_if = "Option::is_none")] pub status: Option<String>, /// <p>The version of the bot. For a new bot, the version is always <code>$LATEST</code>.</p> #[serde(rename = "version")] #[serde(skip_serializing_if = "Option::is_none")] pub version: Option<String>, /// <p>The Amazon Polly voice ID that Amazon Lex uses for voice interaction with the user. For more information, see <a>PutBot</a>.</p> #[serde(rename = "voiceId")] #[serde(skip_serializing_if = "Option::is_none")] pub voice_id: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct PutIntentRequest { /// <p>Identifies a specific revision of the <code>$LATEST</code> version.</p> <p>When you create a new intent, leave the <code>checksum</code> field blank. If you specify a checksum you get a <code>BadRequestException</code> exception.</p> <p>When you want to update a intent, set the <code>checksum</code> field to the checksum of the most recent revision of the <code>$LATEST</code> version. If you don't specify the <code> checksum</code> field, or if the checksum does not match the <code>$LATEST</code> version, you get a <code>PreconditionFailedException</code> exception.</p> #[serde(rename = "checksum")] #[serde(skip_serializing_if = "Option::is_none")] pub checksum: Option<String>, /// <p><p> The statement that you want Amazon Lex to convey to the user after the intent is successfully fulfilled by the Lambda function. </p> <p>This element is relevant only if you provide a Lambda function in the <code>fulfillmentActivity</code>. If you return the intent to the client application, you can't specify this element.</p> <note> <p>The <code>followUpPrompt</code> and <code>conclusionStatement</code> are mutually exclusive. You can specify only one.</p> </note></p> #[serde(rename = "conclusionStatement")] #[serde(skip_serializing_if = "Option::is_none")] pub conclusion_statement: Option<Statement>, /// <p><p>Prompts the user to confirm the intent. This question should have a yes or no answer.</p> <p>Amazon Lex uses this prompt to ensure that the user acknowledges that the intent is ready for fulfillment. For example, with the <code>OrderPizza</code> intent, you might want to confirm that the order is correct before placing it. For other intents, such as intents that simply respond to user questions, you might not need to ask the user for confirmation before providing the information. </p> <note> <p>You you must provide both the <code>rejectionStatement</code> and the <code>confirmationPrompt</code>, or neither.</p> </note></p> #[serde(rename = "confirmationPrompt")] #[serde(skip_serializing_if = "Option::is_none")] pub confirmation_prompt: Option<Prompt>, #[serde(rename = "createVersion")] #[serde(skip_serializing_if = "Option::is_none")] pub create_version: Option<bool>, /// <p>A description of the intent.</p> #[serde(rename = "description")] #[serde(skip_serializing_if = "Option::is_none")] pub description: Option<String>, /// <p> Specifies a Lambda function to invoke for each user input. You can invoke this Lambda function to personalize user interaction. </p> <p>For example, suppose your bot determines that the user is John. Your Lambda function might retrieve John's information from a backend database and prepopulate some of the values. For example, if you find that John is gluten intolerant, you might set the corresponding intent slot, <code>GlutenIntolerant</code>, to true. You might find John's phone number and set the corresponding session attribute. </p> #[serde(rename = "dialogCodeHook")] #[serde(skip_serializing_if = "Option::is_none")] pub dialog_code_hook: Option<CodeHook>, /// <p>Amazon Lex uses this prompt to solicit additional activity after fulfilling an intent. For example, after the <code>OrderPizza</code> intent is fulfilled, you might prompt the user to order a drink.</p> <p>The action that Amazon Lex takes depends on the user's response, as follows:</p> <ul> <li> <p>If the user says "Yes" it responds with the clarification prompt that is configured for the bot.</p> </li> <li> <p>if the user says "Yes" and continues with an utterance that triggers an intent it starts a conversation for the intent.</p> </li> <li> <p>If the user says "No" it responds with the rejection statement configured for the the follow-up prompt.</p> </li> <li> <p>If it doesn't recognize the utterance it repeats the follow-up prompt again.</p> </li> </ul> <p>The <code>followUpPrompt</code> field and the <code>conclusionStatement</code> field are mutually exclusive. You can specify only one. </p> #[serde(rename = "followUpPrompt")] #[serde(skip_serializing_if = "Option::is_none")] pub follow_up_prompt: Option<FollowUpPrompt>, /// <p>Required. Describes how the intent is fulfilled. For example, after a user provides all of the information for a pizza order, <code>fulfillmentActivity</code> defines how the bot places an order with a local pizza store. </p> <p> You might configure Amazon Lex to return all of the intent information to the client application, or direct it to invoke a Lambda function that can process the intent (for example, place an order with a pizzeria). </p> #[serde(rename = "fulfillmentActivity")] #[serde(skip_serializing_if = "Option::is_none")] pub fulfillment_activity: Option<FulfillmentActivity>, /// <p>The name of the intent. The name is <i>not</i> case sensitive. </p> <p>The name can't match a built-in intent name, or a built-in intent name with "AMAZON." removed. For example, because there is a built-in intent called <code>AMAZON.HelpIntent</code>, you can't create a custom intent called <code>HelpIntent</code>.</p> <p>For a list of built-in intents, see <a href="https://developer.amazon.com/public/solutions/alexa/alexa-skills-kit/docs/built-in-intent-ref/standard-intents">Standard Built-in Intents</a> in the <i>Alexa Skills Kit</i>.</p> #[serde(rename = "name")] pub name: String, /// <p>A unique identifier for the built-in intent to base this intent on. To find the signature for an intent, see <a href="https://developer.amazon.com/public/solutions/alexa/alexa-skills-kit/docs/built-in-intent-ref/standard-intents">Standard Built-in Intents</a> in the <i>Alexa Skills Kit</i>.</p> #[serde(rename = "parentIntentSignature")] #[serde(skip_serializing_if = "Option::is_none")] pub parent_intent_signature: Option<String>, /// <p><p>When the user answers "no" to the question defined in <code>confirmationPrompt</code>, Amazon Lex responds with this statement to acknowledge that the intent was canceled. </p> <note> <p>You must provide both the <code>rejectionStatement</code> and the <code>confirmationPrompt</code>, or neither.</p> </note></p> #[serde(rename = "rejectionStatement")] #[serde(skip_serializing_if = "Option::is_none")] pub rejection_statement: Option<Statement>, /// <p>An array of utterances (strings) that a user might say to signal the intent. For example, "I want {PizzaSize} pizza", "Order {Quantity} {PizzaSize} pizzas". </p> <p>In each utterance, a slot name is enclosed in curly braces. </p> #[serde(rename = "sampleUtterances")] #[serde(skip_serializing_if = "Option::is_none")] pub sample_utterances: Option<Vec<String>>, /// <p>An array of intent slots. At runtime, Amazon Lex elicits required slot values from the user using prompts defined in the slots. For more information, see <a>how-it-works</a>. </p> #[serde(rename = "slots")] #[serde(skip_serializing_if = "Option::is_none")] pub slots: Option<Vec<Slot>>, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct PutIntentResponse { /// <p>Checksum of the <code>$LATEST</code>version of the intent created or updated.</p> #[serde(rename = "checksum")] #[serde(skip_serializing_if = "Option::is_none")] pub checksum: Option<String>, /// <p>After the Lambda function specified in the<code>fulfillmentActivity</code>intent fulfills the intent, Amazon Lex conveys this statement to the user.</p> #[serde(rename = "conclusionStatement")] #[serde(skip_serializing_if = "Option::is_none")] pub conclusion_statement: Option<Statement>, /// <p>If defined in the intent, Amazon Lex prompts the user to confirm the intent before fulfilling it.</p> #[serde(rename = "confirmationPrompt")] #[serde(skip_serializing_if = "Option::is_none")] pub confirmation_prompt: Option<Prompt>, #[serde(rename = "createVersion")] #[serde(skip_serializing_if = "Option::is_none")] pub create_version: Option<bool>, /// <p>The date that the intent was created.</p> #[serde(rename = "createdDate")] #[serde(skip_serializing_if = "Option::is_none")] pub created_date: Option<f64>, /// <p>A description of the intent.</p> #[serde(rename = "description")] #[serde(skip_serializing_if = "Option::is_none")] pub description: Option<String>, /// <p>If defined in the intent, Amazon Lex invokes this Lambda function for each user input.</p> #[serde(rename = "dialogCodeHook")] #[serde(skip_serializing_if = "Option::is_none")] pub dialog_code_hook: Option<CodeHook>, /// <p>If defined in the intent, Amazon Lex uses this prompt to solicit additional user activity after the intent is fulfilled.</p> #[serde(rename = "followUpPrompt")] #[serde(skip_serializing_if = "Option::is_none")] pub follow_up_prompt: Option<FollowUpPrompt>, /// <p>If defined in the intent, Amazon Lex invokes this Lambda function to fulfill the intent after the user provides all of the information required by the intent.</p> #[serde(rename = "fulfillmentActivity")] #[serde(skip_serializing_if = "Option::is_none")] pub fulfillment_activity: Option<FulfillmentActivity>, /// <p>The date that the intent was updated. When you create a resource, the creation date and last update dates are the same.</p> #[serde(rename = "lastUpdatedDate")] #[serde(skip_serializing_if = "Option::is_none")] pub last_updated_date: Option<f64>, /// <p>The name of the intent.</p> #[serde(rename = "name")] #[serde(skip_serializing_if = "Option::is_none")] pub name: Option<String>, /// <p>A unique identifier for the built-in intent that this intent is based on.</p> #[serde(rename = "parentIntentSignature")] #[serde(skip_serializing_if = "Option::is_none")] pub parent_intent_signature: Option<String>, /// <p>If the user answers "no" to the question defined in <code>confirmationPrompt</code> Amazon Lex responds with this statement to acknowledge that the intent was canceled. </p> #[serde(rename = "rejectionStatement")] #[serde(skip_serializing_if = "Option::is_none")] pub rejection_statement: Option<Statement>, /// <p> An array of sample utterances that are configured for the intent. </p> #[serde(rename = "sampleUtterances")] #[serde(skip_serializing_if = "Option::is_none")] pub sample_utterances: Option<Vec<String>>, /// <p>An array of intent slots that are configured for the intent.</p> #[serde(rename = "slots")] #[serde(skip_serializing_if = "Option::is_none")] pub slots: Option<Vec<Slot>>, /// <p>The version of the intent. For a new intent, the version is always <code>$LATEST</code>.</p> #[serde(rename = "version")] #[serde(skip_serializing_if = "Option::is_none")] pub version: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct PutSlotTypeRequest { /// <p>Identifies a specific revision of the <code>$LATEST</code> version.</p> <p>When you create a new slot type, leave the <code>checksum</code> field blank. If you specify a checksum you get a <code>BadRequestException</code> exception.</p> <p>When you want to update a slot type, set the <code>checksum</code> field to the checksum of the most recent revision of the <code>$LATEST</code> version. If you don't specify the <code> checksum</code> field, or if the checksum does not match the <code>$LATEST</code> version, you get a <code>PreconditionFailedException</code> exception.</p> #[serde(rename = "checksum")] #[serde(skip_serializing_if = "Option::is_none")] pub checksum: Option<String>, #[serde(rename = "createVersion")] #[serde(skip_serializing_if = "Option::is_none")] pub create_version: Option<bool>, /// <p>A description of the slot type.</p> #[serde(rename = "description")] #[serde(skip_serializing_if = "Option::is_none")] pub description: Option<String>, /// <p>A list of <code>EnumerationValue</code> objects that defines the values that the slot type can take. Each value can have a list of <code>synonyms</code>, which are additional values that help train the machine learning model about the values that it resolves for a slot. </p> <p>When Amazon Lex resolves a slot value, it generates a resolution list that contains up to five possible values for the slot. If you are using a Lambda function, this resolution list is passed to the function. If you are not using a Lambda function you can choose to return the value that the user entered or the first value in the resolution list as the slot value. The <code>valueSelectionStrategy</code> field indicates the option to use. </p> #[serde(rename = "enumerationValues")] #[serde(skip_serializing_if = "Option::is_none")] pub enumeration_values: Option<Vec<EnumerationValue>>, /// <p>The name of the slot type. The name is <i>not</i> case sensitive. </p> <p>The name can't match a built-in slot type name, or a built-in slot type name with "AMAZON." removed. For example, because there is a built-in slot type called <code>AMAZON.DATE</code>, you can't create a custom slot type called <code>DATE</code>.</p> <p>For a list of built-in slot types, see <a href="https://developer.amazon.com/public/solutions/alexa/alexa-skills-kit/docs/built-in-intent-ref/slot-type-reference">Slot Type Reference</a> in the <i>Alexa Skills Kit</i>.</p> #[serde(rename = "name")] pub name: String, /// <p>Determines the slot resolution strategy that Amazon Lex uses to return slot type values. The field can be set to one of the following values:</p> <ul> <li> <p> <code>ORIGINAL_VALUE</code> - Returns the value entered by the user, if the user value is similar to the slot value.</p> </li> <li> <p> <code>TOP_RESOLUTION</code> - If there is a resolution list for the slot, return the first value in the resolution list as the slot type value. If there is no resolution list, null is returned.</p> </li> </ul> <p>If you don't specify the <code>valueSelectionStrategy</code>, the default is <code>ORIGINAL_VALUE</code>.</p> #[serde(rename = "valueSelectionStrategy")] #[serde(skip_serializing_if = "Option::is_none")] pub value_selection_strategy: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct PutSlotTypeResponse { /// <p>Checksum of the <code>$LATEST</code> version of the slot type.</p> #[serde(rename = "checksum")] #[serde(skip_serializing_if = "Option::is_none")] pub checksum: Option<String>, #[serde(rename = "createVersion")] #[serde(skip_serializing_if = "Option::is_none")] pub create_version: Option<bool>, /// <p>The date that the slot type was created.</p> #[serde(rename = "createdDate")] #[serde(skip_serializing_if = "Option::is_none")] pub created_date: Option<f64>, /// <p>A description of the slot type.</p> #[serde(rename = "description")] #[serde(skip_serializing_if = "Option::is_none")] pub description: Option<String>, /// <p>A list of <code>EnumerationValue</code> objects that defines the values that the slot type can take.</p> #[serde(rename = "enumerationValues")] #[serde(skip_serializing_if = "Option::is_none")] pub enumeration_values: Option<Vec<EnumerationValue>>, /// <p>The date that the slot type was updated. When you create a slot type, the creation date and last update date are the same.</p> #[serde(rename = "lastUpdatedDate")] #[serde(skip_serializing_if = "Option::is_none")] pub last_updated_date: Option<f64>, /// <p>The name of the slot type.</p> #[serde(rename = "name")] #[serde(skip_serializing_if = "Option::is_none")] pub name: Option<String>, /// <p>The slot resolution strategy that Amazon Lex uses to determine the value of the slot. For more information, see <a>PutSlotType</a>.</p> #[serde(rename = "valueSelectionStrategy")] #[serde(skip_serializing_if = "Option::is_none")] pub value_selection_strategy: Option<String>, /// <p>The version of the slot type. For a new slot type, the version is always <code>$LATEST</code>. </p> #[serde(rename = "version")] #[serde(skip_serializing_if = "Option::is_none")] pub version: Option<String>, } /// <p>Describes the resource that refers to the resource that you are attempting to delete. This object is returned as part of the <code>ResourceInUseException</code> exception. </p> #[derive(Default, Debug, Clone, PartialEq)] pub struct ResourceReference { /// <p>The name of the resource that is using the resource that you are trying to delete.</p> pub name: Option<String>, /// <p>The version of the resource that is using the resource that you are trying to delete.</p> pub version: Option<String>, } /// <p>Identifies the version of a specific slot.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct Slot { /// <p>A description of the slot.</p> #[serde(rename = "description")] #[serde(skip_serializing_if = "Option::is_none")] pub description: Option<String>, /// <p>The name of the slot.</p> #[serde(rename = "name")] pub name: String, /// <p> Directs Lex the order in which to elicit this slot value from the user. For example, if the intent has two slots with priorities 1 and 2, AWS Lex first elicits a value for the slot with priority 1.</p> <p>If multiple slots share the same priority, the order in which Lex elicits values is arbitrary.</p> #[serde(rename = "priority")] #[serde(skip_serializing_if = "Option::is_none")] pub priority: Option<i64>, /// <p> A set of possible responses for the slot type used by text-based clients. A user chooses an option from the response card, instead of using text to reply. </p> #[serde(rename = "responseCard")] #[serde(skip_serializing_if = "Option::is_none")] pub response_card: Option<String>, /// <p> If you know a specific pattern with which users might respond to an Amazon Lex request for a slot value, you can provide those utterances to improve accuracy. This is optional. In most cases, Amazon Lex is capable of understanding user utterances. </p> #[serde(rename = "sampleUtterances")] #[serde(skip_serializing_if = "Option::is_none")] pub sample_utterances: Option<Vec<String>>, /// <p>Specifies whether the slot is required or optional. </p> #[serde(rename = "slotConstraint")] pub slot_constraint: String, /// <p>The type of the slot, either a custom slot type that you defined or one of the built-in slot types.</p> #[serde(rename = "slotType")] #[serde(skip_serializing_if = "Option::is_none")] pub slot_type: Option<String>, /// <p>The version of the slot type.</p> #[serde(rename = "slotTypeVersion")] #[serde(skip_serializing_if = "Option::is_none")] pub slot_type_version: Option<String>, /// <p>The prompt that Amazon Lex uses to elicit the slot value from the user.</p> #[serde(rename = "valueElicitationPrompt")] #[serde(skip_serializing_if = "Option::is_none")] pub value_elicitation_prompt: Option<Prompt>, } /// <p>Provides information about a slot type..</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct SlotTypeMetadata { /// <p>The date that the slot type was created.</p> #[serde(rename = "createdDate")] #[serde(skip_serializing_if = "Option::is_none")] pub created_date: Option<f64>, /// <p>A description of the slot type.</p> #[serde(rename = "description")] #[serde(skip_serializing_if = "Option::is_none")] pub description: Option<String>, /// <p>The date that the slot type was updated. When you create a resource, the creation date and last updated date are the same. </p> #[serde(rename = "lastUpdatedDate")] #[serde(skip_serializing_if = "Option::is_none")] pub last_updated_date: Option<f64>, /// <p>The name of the slot type.</p> #[serde(rename = "name")] #[serde(skip_serializing_if = "Option::is_none")] pub name: Option<String>, /// <p>The version of the slot type.</p> #[serde(rename = "version")] #[serde(skip_serializing_if = "Option::is_none")] pub version: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct StartImportRequest { /// <p><p>Specifies the action that the <code>StartImport</code> operation should take when there is an existing resource with the same name.</p> <ul> <li> <p>FAIL<em>ON</em>CONFLICT - The import operation is stopped on the first conflict between a resource in the import file and an existing resource. The name of the resource causing the conflict is in the <code>failureReason</code> field of the response to the <code>GetImport</code> operation.</p> <p>OVERWRITE_LATEST - The import operation proceeds even if there is a conflict with an existing resource. The $LASTEST version of the existing resource is overwritten with the data from the import file.</p> </li> </ul></p> #[serde(rename = "mergeStrategy")] pub merge_strategy: String, /// <p>A zip archive in binary format. The archive should contain one file, a JSON file containing the resource to import. The resource should match the type specified in the <code>resourceType</code> field.</p> #[serde(rename = "payload")] #[serde( deserialize_with = "::rusoto_core::serialization::SerdeBlob::deserialize_blob", serialize_with = "::rusoto_core::serialization::SerdeBlob::serialize_blob", default )] pub payload: bytes::Bytes, /// <p><p>Specifies the type of resource to export. Each resource also exports any resources that it depends on. </p> <ul> <li> <p>A bot exports dependent intents.</p> </li> <li> <p>An intent exports dependent slot types.</p> </li> </ul></p> #[serde(rename = "resourceType")] pub resource_type: String, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct StartImportResponse { /// <p>A timestamp for the date and time that the import job was requested.</p> #[serde(rename = "createdDate")] #[serde(skip_serializing_if = "Option::is_none")] pub created_date: Option<f64>, /// <p>The identifier for the specific import job.</p> #[serde(rename = "importId")] #[serde(skip_serializing_if = "Option::is_none")] pub import_id: Option<String>, /// <p>The status of the import job. If the status is <code>FAILED</code>, you can get the reason for the failure using the <code>GetImport</code> operation.</p> #[serde(rename = "importStatus")] #[serde(skip_serializing_if = "Option::is_none")] pub import_status: Option<String>, /// <p>The action to take when there is a merge conflict.</p> #[serde(rename = "mergeStrategy")] #[serde(skip_serializing_if = "Option::is_none")] pub merge_strategy: Option<String>, /// <p>The name given to the import job.</p> #[serde(rename = "name")] #[serde(skip_serializing_if = "Option::is_none")] pub name: Option<String>, /// <p>The type of resource to import.</p> #[serde(rename = "resourceType")] #[serde(skip_serializing_if = "Option::is_none")] pub resource_type: Option<String>, } /// <p>A collection of messages that convey information to the user. At runtime, Amazon Lex selects the message to convey. </p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct Statement { /// <p>A collection of message objects.</p> #[serde(rename = "messages")] pub messages: Vec<Message>, /// <p> At runtime, if the client is using the <a href="http://docs.aws.amazon.com/lex/latest/dg/API_runtime_PostText.html">PostText</a> API, Amazon Lex includes the response card in the response. It substitutes all of the session attributes and slot values for placeholders in the response card. </p> #[serde(rename = "responseCard")] #[serde(skip_serializing_if = "Option::is_none")] pub response_card: Option<String>, } /// <p>Provides information about a single utterance that was made to your bot. </p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct UtteranceData { /// <p>The number of times that the utterance was processed.</p> #[serde(rename = "count")] #[serde(skip_serializing_if = "Option::is_none")] pub count: Option<i64>, /// <p>The total number of individuals that used the utterance.</p> #[serde(rename = "distinctUsers")] #[serde(skip_serializing_if = "Option::is_none")] pub distinct_users: Option<i64>, /// <p>The date that the utterance was first recorded.</p> #[serde(rename = "firstUtteredDate")] #[serde(skip_serializing_if = "Option::is_none")] pub first_uttered_date: Option<f64>, /// <p>The date that the utterance was last recorded.</p> #[serde(rename = "lastUtteredDate")] #[serde(skip_serializing_if = "Option::is_none")] pub last_uttered_date: Option<f64>, /// <p>The text that was entered by the user or the text representation of an audio clip.</p> #[serde(rename = "utteranceString")] #[serde(skip_serializing_if = "Option::is_none")] pub utterance_string: Option<String>, } /// <p>Provides a list of utterances that have been made to a specific version of your bot. The list contains a maximum of 100 utterances.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct UtteranceList { /// <p>The version of the bot that processed the list.</p> #[serde(rename = "botVersion")] #[serde(skip_serializing_if = "Option::is_none")] pub bot_version: Option<String>, /// <p>One or more <a>UtteranceData</a> objects that contain information about the utterances that have been made to a bot. The maximum number of object is 100.</p> #[serde(rename = "utterances")] #[serde(skip_serializing_if = "Option::is_none")] pub utterances: Option<Vec<UtteranceData>>, } /// Errors returned by CreateBotVersion #[derive(Debug, PartialEq)] pub enum CreateBotVersionError { /// <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the field values, and try again.</p> BadRequest(String), /// <p> There was a conflict processing the request. Try your request again. </p> Conflict(String), /// <p>An internal Amazon Lex error occurred. Try your request again.</p> InternalFailure(String), /// <p>The request exceeded a limit. Try your request again.</p> LimitExceeded(String), /// <p>The resource specified in the request was not found. Check the resource and try again.</p> NotFound(String), /// <p> The checksum of the resource that you are trying to change does not match the checksum in the request. Check the resource's checksum and try again.</p> PreconditionFailed(String), } impl CreateBotVersionError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<CreateBotVersionError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "BadRequestException" => { return RusotoError::Service(CreateBotVersionError::BadRequest(err.msg)) } "ConflictException" => { return RusotoError::Service(CreateBotVersionError::Conflict(err.msg)) } "InternalFailureException" => { return RusotoError::Service(CreateBotVersionError::InternalFailure(err.msg)) } "LimitExceededException" => { return RusotoError::Service(CreateBotVersionError::LimitExceeded(err.msg)) } "NotFoundException" => { return RusotoError::Service(CreateBotVersionError::NotFound(err.msg)) } "PreconditionFailedException" => { return RusotoError::Service(CreateBotVersionError::PreconditionFailed(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for CreateBotVersionError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for CreateBotVersionError { fn description(&self) -> &str { match *self { CreateBotVersionError::BadRequest(ref cause) => cause, CreateBotVersionError::Conflict(ref cause) => cause, CreateBotVersionError::InternalFailure(ref cause) => cause, CreateBotVersionError::LimitExceeded(ref cause) => cause, CreateBotVersionError::NotFound(ref cause) => cause, CreateBotVersionError::PreconditionFailed(ref cause) => cause, } } } /// Errors returned by CreateIntentVersion #[derive(Debug, PartialEq)] pub enum CreateIntentVersionError { /// <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the field values, and try again.</p> BadRequest(String), /// <p> There was a conflict processing the request. Try your request again. </p> Conflict(String), /// <p>An internal Amazon Lex error occurred. Try your request again.</p> InternalFailure(String), /// <p>The request exceeded a limit. Try your request again.</p> LimitExceeded(String), /// <p>The resource specified in the request was not found. Check the resource and try again.</p> NotFound(String), /// <p> The checksum of the resource that you are trying to change does not match the checksum in the request. Check the resource's checksum and try again.</p> PreconditionFailed(String), } impl CreateIntentVersionError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<CreateIntentVersionError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "BadRequestException" => { return RusotoError::Service(CreateIntentVersionError::BadRequest(err.msg)) } "ConflictException" => { return RusotoError::Service(CreateIntentVersionError::Conflict(err.msg)) } "InternalFailureException" => { return RusotoError::Service(CreateIntentVersionError::InternalFailure(err.msg)) } "LimitExceededException" => { return RusotoError::Service(CreateIntentVersionError::LimitExceeded(err.msg)) } "NotFoundException" => { return RusotoError::Service(CreateIntentVersionError::NotFound(err.msg)) } "PreconditionFailedException" => { return RusotoError::Service(CreateIntentVersionError::PreconditionFailed( err.msg, )) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for CreateIntentVersionError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for CreateIntentVersionError { fn description(&self) -> &str { match *self { CreateIntentVersionError::BadRequest(ref cause) => cause, CreateIntentVersionError::Conflict(ref cause) => cause, CreateIntentVersionError::InternalFailure(ref cause) => cause, CreateIntentVersionError::LimitExceeded(ref cause) => cause, CreateIntentVersionError::NotFound(ref cause) => cause, CreateIntentVersionError::PreconditionFailed(ref cause) => cause, } } } /// Errors returned by CreateSlotTypeVersion #[derive(Debug, PartialEq)] pub enum CreateSlotTypeVersionError { /// <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the field values, and try again.</p> BadRequest(String), /// <p> There was a conflict processing the request. Try your request again. </p> Conflict(String), /// <p>An internal Amazon Lex error occurred. Try your request again.</p> InternalFailure(String), /// <p>The request exceeded a limit. Try your request again.</p> LimitExceeded(String), /// <p>The resource specified in the request was not found. Check the resource and try again.</p> NotFound(String), /// <p> The checksum of the resource that you are trying to change does not match the checksum in the request. Check the resource's checksum and try again.</p> PreconditionFailed(String), } impl CreateSlotTypeVersionError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<CreateSlotTypeVersionError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "BadRequestException" => { return RusotoError::Service(CreateSlotTypeVersionError::BadRequest(err.msg)) } "ConflictException" => { return RusotoError::Service(CreateSlotTypeVersionError::Conflict(err.msg)) } "InternalFailureException" => { return RusotoError::Service(CreateSlotTypeVersionError::InternalFailure( err.msg, )) } "LimitExceededException" => { return RusotoError::Service(CreateSlotTypeVersionError::LimitExceeded(err.msg)) } "NotFoundException" => { return RusotoError::Service(CreateSlotTypeVersionError::NotFound(err.msg)) } "PreconditionFailedException" => { return RusotoError::Service(CreateSlotTypeVersionError::PreconditionFailed( err.msg, )) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for CreateSlotTypeVersionError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for CreateSlotTypeVersionError { fn description(&self) -> &str { match *self { CreateSlotTypeVersionError::BadRequest(ref cause) => cause, CreateSlotTypeVersionError::Conflict(ref cause) => cause, CreateSlotTypeVersionError::InternalFailure(ref cause) => cause, CreateSlotTypeVersionError::LimitExceeded(ref cause) => cause, CreateSlotTypeVersionError::NotFound(ref cause) => cause, CreateSlotTypeVersionError::PreconditionFailed(ref cause) => cause, } } } /// Errors returned by DeleteBot #[derive(Debug, PartialEq)] pub enum DeleteBotError { /// <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the field values, and try again.</p> BadRequest(String), /// <p> There was a conflict processing the request. Try your request again. </p> Conflict(String), /// <p>An internal Amazon Lex error occurred. Try your request again.</p> InternalFailure(String), /// <p>The request exceeded a limit. Try your request again.</p> LimitExceeded(String), /// <p>The resource specified in the request was not found. Check the resource and try again.</p> NotFound(String), /// <p>The resource that you are attempting to delete is referred to by another resource. Use this information to remove references to the resource that you are trying to delete.</p> <p>The body of the exception contains a JSON object that describes the resource.</p> <p> <code>{ "resourceType": BOT | BOTALIAS | BOTCHANNEL | INTENT,</code> </p> <p> <code>"resourceReference": {</code> </p> <p> <code>"name": <i>string</i>, "version": <i>string</i> } }</code> </p> ResourceInUse(String), } impl DeleteBotError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<DeleteBotError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "BadRequestException" => { return RusotoError::Service(DeleteBotError::BadRequest(err.msg)) } "ConflictException" => { return RusotoError::Service(DeleteBotError::Conflict(err.msg)) } "InternalFailureException" => { return RusotoError::Service(DeleteBotError::InternalFailure(err.msg)) } "LimitExceededException" => { return RusotoError::Service(DeleteBotError::LimitExceeded(err.msg)) } "NotFoundException" => { return RusotoError::Service(DeleteBotError::NotFound(err.msg)) } "ResourceInUseException" => { return RusotoError::Service(DeleteBotError::ResourceInUse(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for DeleteBotError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for DeleteBotError { fn description(&self) -> &str { match *self { DeleteBotError::BadRequest(ref cause) => cause, DeleteBotError::Conflict(ref cause) => cause, DeleteBotError::InternalFailure(ref cause) => cause, DeleteBotError::LimitExceeded(ref cause) => cause, DeleteBotError::NotFound(ref cause) => cause, DeleteBotError::ResourceInUse(ref cause) => cause, } } } /// Errors returned by DeleteBotAlias #[derive(Debug, PartialEq)] pub enum DeleteBotAliasError { /// <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the field values, and try again.</p> BadRequest(String), /// <p> There was a conflict processing the request. Try your request again. </p> Conflict(String), /// <p>An internal Amazon Lex error occurred. Try your request again.</p> InternalFailure(String), /// <p>The request exceeded a limit. Try your request again.</p> LimitExceeded(String), /// <p>The resource specified in the request was not found. Check the resource and try again.</p> NotFound(String), /// <p>The resource that you are attempting to delete is referred to by another resource. Use this information to remove references to the resource that you are trying to delete.</p> <p>The body of the exception contains a JSON object that describes the resource.</p> <p> <code>{ "resourceType": BOT | BOTALIAS | BOTCHANNEL | INTENT,</code> </p> <p> <code>"resourceReference": {</code> </p> <p> <code>"name": <i>string</i>, "version": <i>string</i> } }</code> </p> ResourceInUse(String), } impl DeleteBotAliasError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<DeleteBotAliasError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "BadRequestException" => { return RusotoError::Service(DeleteBotAliasError::BadRequest(err.msg)) } "ConflictException" => { return RusotoError::Service(DeleteBotAliasError::Conflict(err.msg)) } "InternalFailureException" => { return RusotoError::Service(DeleteBotAliasError::InternalFailure(err.msg)) } "LimitExceededException" => { return RusotoError::Service(DeleteBotAliasError::LimitExceeded(err.msg)) } "NotFoundException" => { return RusotoError::Service(DeleteBotAliasError::NotFound(err.msg)) } "ResourceInUseException" => { return RusotoError::Service(DeleteBotAliasError::ResourceInUse(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for DeleteBotAliasError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for DeleteBotAliasError { fn description(&self) -> &str { match *self { DeleteBotAliasError::BadRequest(ref cause) => cause, DeleteBotAliasError::Conflict(ref cause) => cause, DeleteBotAliasError::InternalFailure(ref cause) => cause, DeleteBotAliasError::LimitExceeded(ref cause) => cause, DeleteBotAliasError::NotFound(ref cause) => cause, DeleteBotAliasError::ResourceInUse(ref cause) => cause, } } } /// Errors returned by DeleteBotChannelAssociation #[derive(Debug, PartialEq)] pub enum DeleteBotChannelAssociationError { /// <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the field values, and try again.</p> BadRequest(String), /// <p> There was a conflict processing the request. Try your request again. </p> Conflict(String), /// <p>An internal Amazon Lex error occurred. Try your request again.</p> InternalFailure(String), /// <p>The request exceeded a limit. Try your request again.</p> LimitExceeded(String), /// <p>The resource specified in the request was not found. Check the resource and try again.</p> NotFound(String), } impl DeleteBotChannelAssociationError { pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DeleteBotChannelAssociationError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "BadRequestException" => { return RusotoError::Service(DeleteBotChannelAssociationError::BadRequest( err.msg, )) } "ConflictException" => { return RusotoError::Service(DeleteBotChannelAssociationError::Conflict( err.msg, )) } "InternalFailureException" => { return RusotoError::Service(DeleteBotChannelAssociationError::InternalFailure( err.msg, )) } "LimitExceededException" => { return RusotoError::Service(DeleteBotChannelAssociationError::LimitExceeded( err.msg, )) } "NotFoundException" => { return RusotoError::Service(DeleteBotChannelAssociationError::NotFound( err.msg, )) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for DeleteBotChannelAssociationError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for DeleteBotChannelAssociationError { fn description(&self) -> &str { match *self { DeleteBotChannelAssociationError::BadRequest(ref cause) => cause, DeleteBotChannelAssociationError::Conflict(ref cause) => cause, DeleteBotChannelAssociationError::InternalFailure(ref cause) => cause, DeleteBotChannelAssociationError::LimitExceeded(ref cause) => cause, DeleteBotChannelAssociationError::NotFound(ref cause) => cause, } } } /// Errors returned by DeleteBotVersion #[derive(Debug, PartialEq)] pub enum DeleteBotVersionError { /// <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the field values, and try again.</p> BadRequest(String), /// <p> There was a conflict processing the request. Try your request again. </p> Conflict(String), /// <p>An internal Amazon Lex error occurred. Try your request again.</p> InternalFailure(String), /// <p>The request exceeded a limit. Try your request again.</p> LimitExceeded(String), /// <p>The resource specified in the request was not found. Check the resource and try again.</p> NotFound(String), /// <p>The resource that you are attempting to delete is referred to by another resource. Use this information to remove references to the resource that you are trying to delete.</p> <p>The body of the exception contains a JSON object that describes the resource.</p> <p> <code>{ "resourceType": BOT | BOTALIAS | BOTCHANNEL | INTENT,</code> </p> <p> <code>"resourceReference": {</code> </p> <p> <code>"name": <i>string</i>, "version": <i>string</i> } }</code> </p> ResourceInUse(String), } impl DeleteBotVersionError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<DeleteBotVersionError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "BadRequestException" => { return RusotoError::Service(DeleteBotVersionError::BadRequest(err.msg)) } "ConflictException" => { return RusotoError::Service(DeleteBotVersionError::Conflict(err.msg)) } "InternalFailureException" => { return RusotoError::Service(DeleteBotVersionError::InternalFailure(err.msg)) } "LimitExceededException" => { return RusotoError::Service(DeleteBotVersionError::LimitExceeded(err.msg)) } "NotFoundException" => { return RusotoError::Service(DeleteBotVersionError::NotFound(err.msg)) } "ResourceInUseException" => { return RusotoError::Service(DeleteBotVersionError::ResourceInUse(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for DeleteBotVersionError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for DeleteBotVersionError { fn description(&self) -> &str { match *self { DeleteBotVersionError::BadRequest(ref cause) => cause, DeleteBotVersionError::Conflict(ref cause) => cause, DeleteBotVersionError::InternalFailure(ref cause) => cause, DeleteBotVersionError::LimitExceeded(ref cause) => cause, DeleteBotVersionError::NotFound(ref cause) => cause, DeleteBotVersionError::ResourceInUse(ref cause) => cause, } } } /// Errors returned by DeleteIntent #[derive(Debug, PartialEq)] pub enum DeleteIntentError { /// <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the field values, and try again.</p> BadRequest(String), /// <p> There was a conflict processing the request. Try your request again. </p> Conflict(String), /// <p>An internal Amazon Lex error occurred. Try your request again.</p> InternalFailure(String), /// <p>The request exceeded a limit. Try your request again.</p> LimitExceeded(String), /// <p>The resource specified in the request was not found. Check the resource and try again.</p> NotFound(String), /// <p>The resource that you are attempting to delete is referred to by another resource. Use this information to remove references to the resource that you are trying to delete.</p> <p>The body of the exception contains a JSON object that describes the resource.</p> <p> <code>{ "resourceType": BOT | BOTALIAS | BOTCHANNEL | INTENT,</code> </p> <p> <code>"resourceReference": {</code> </p> <p> <code>"name": <i>string</i>, "version": <i>string</i> } }</code> </p> ResourceInUse(String), } impl DeleteIntentError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<DeleteIntentError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "BadRequestException" => { return RusotoError::Service(DeleteIntentError::BadRequest(err.msg)) } "ConflictException" => { return RusotoError::Service(DeleteIntentError::Conflict(err.msg)) } "InternalFailureException" => { return RusotoError::Service(DeleteIntentError::InternalFailure(err.msg)) } "LimitExceededException" => { return RusotoError::Service(DeleteIntentError::LimitExceeded(err.msg)) } "NotFoundException" => { return RusotoError::Service(DeleteIntentError::NotFound(err.msg)) } "ResourceInUseException" => { return RusotoError::Service(DeleteIntentError::ResourceInUse(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for DeleteIntentError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for DeleteIntentError { fn description(&self) -> &str { match *self { DeleteIntentError::BadRequest(ref cause) => cause, DeleteIntentError::Conflict(ref cause) => cause, DeleteIntentError::InternalFailure(ref cause) => cause, DeleteIntentError::LimitExceeded(ref cause) => cause, DeleteIntentError::NotFound(ref cause) => cause, DeleteIntentError::ResourceInUse(ref cause) => cause, } } } /// Errors returned by DeleteIntentVersion #[derive(Debug, PartialEq)] pub enum DeleteIntentVersionError { /// <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the field values, and try again.</p> BadRequest(String), /// <p> There was a conflict processing the request. Try your request again. </p> Conflict(String), /// <p>An internal Amazon Lex error occurred. Try your request again.</p> InternalFailure(String), /// <p>The request exceeded a limit. Try your request again.</p> LimitExceeded(String), /// <p>The resource specified in the request was not found. Check the resource and try again.</p> NotFound(String), /// <p>The resource that you are attempting to delete is referred to by another resource. Use this information to remove references to the resource that you are trying to delete.</p> <p>The body of the exception contains a JSON object that describes the resource.</p> <p> <code>{ "resourceType": BOT | BOTALIAS | BOTCHANNEL | INTENT,</code> </p> <p> <code>"resourceReference": {</code> </p> <p> <code>"name": <i>string</i>, "version": <i>string</i> } }</code> </p> ResourceInUse(String), } impl DeleteIntentVersionError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<DeleteIntentVersionError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "BadRequestException" => { return RusotoError::Service(DeleteIntentVersionError::BadRequest(err.msg)) } "ConflictException" => { return RusotoError::Service(DeleteIntentVersionError::Conflict(err.msg)) } "InternalFailureException" => { return RusotoError::Service(DeleteIntentVersionError::InternalFailure(err.msg)) } "LimitExceededException" => { return RusotoError::Service(DeleteIntentVersionError::LimitExceeded(err.msg)) } "NotFoundException" => { return RusotoError::Service(DeleteIntentVersionError::NotFound(err.msg)) } "ResourceInUseException" => { return RusotoError::Service(DeleteIntentVersionError::ResourceInUse(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for DeleteIntentVersionError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for DeleteIntentVersionError { fn description(&self) -> &str { match *self { DeleteIntentVersionError::BadRequest(ref cause) => cause, DeleteIntentVersionError::Conflict(ref cause) => cause, DeleteIntentVersionError::InternalFailure(ref cause) => cause, DeleteIntentVersionError::LimitExceeded(ref cause) => cause, DeleteIntentVersionError::NotFound(ref cause) => cause, DeleteIntentVersionError::ResourceInUse(ref cause) => cause, } } } /// Errors returned by DeleteSlotType #[derive(Debug, PartialEq)] pub enum DeleteSlotTypeError { /// <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the field values, and try again.</p> BadRequest(String), /// <p> There was a conflict processing the request. Try your request again. </p> Conflict(String), /// <p>An internal Amazon Lex error occurred. Try your request again.</p> InternalFailure(String), /// <p>The request exceeded a limit. Try your request again.</p> LimitExceeded(String), /// <p>The resource specified in the request was not found. Check the resource and try again.</p> NotFound(String), /// <p>The resource that you are attempting to delete is referred to by another resource. Use this information to remove references to the resource that you are trying to delete.</p> <p>The body of the exception contains a JSON object that describes the resource.</p> <p> <code>{ "resourceType": BOT | BOTALIAS | BOTCHANNEL | INTENT,</code> </p> <p> <code>"resourceReference": {</code> </p> <p> <code>"name": <i>string</i>, "version": <i>string</i> } }</code> </p> ResourceInUse(String), } impl DeleteSlotTypeError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<DeleteSlotTypeError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "BadRequestException" => { return RusotoError::Service(DeleteSlotTypeError::BadRequest(err.msg)) } "ConflictException" => { return RusotoError::Service(DeleteSlotTypeError::Conflict(err.msg)) } "InternalFailureException" => { return RusotoError::Service(DeleteSlotTypeError::InternalFailure(err.msg)) } "LimitExceededException" => { return RusotoError::Service(DeleteSlotTypeError::LimitExceeded(err.msg)) } "NotFoundException" => { return RusotoError::Service(DeleteSlotTypeError::NotFound(err.msg)) } "ResourceInUseException" => { return RusotoError::Service(DeleteSlotTypeError::ResourceInUse(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for DeleteSlotTypeError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for DeleteSlotTypeError { fn description(&self) -> &str { match *self { DeleteSlotTypeError::BadRequest(ref cause) => cause, DeleteSlotTypeError::Conflict(ref cause) => cause, DeleteSlotTypeError::InternalFailure(ref cause) => cause, DeleteSlotTypeError::LimitExceeded(ref cause) => cause, DeleteSlotTypeError::NotFound(ref cause) => cause, DeleteSlotTypeError::ResourceInUse(ref cause) => cause, } } } /// Errors returned by DeleteSlotTypeVersion #[derive(Debug, PartialEq)] pub enum DeleteSlotTypeVersionError { /// <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the field values, and try again.</p> BadRequest(String), /// <p> There was a conflict processing the request. Try your request again. </p> Conflict(String), /// <p>An internal Amazon Lex error occurred. Try your request again.</p> InternalFailure(String), /// <p>The request exceeded a limit. Try your request again.</p> LimitExceeded(String), /// <p>The resource specified in the request was not found. Check the resource and try again.</p> NotFound(String), /// <p>The resource that you are attempting to delete is referred to by another resource. Use this information to remove references to the resource that you are trying to delete.</p> <p>The body of the exception contains a JSON object that describes the resource.</p> <p> <code>{ "resourceType": BOT | BOTALIAS | BOTCHANNEL | INTENT,</code> </p> <p> <code>"resourceReference": {</code> </p> <p> <code>"name": <i>string</i>, "version": <i>string</i> } }</code> </p> ResourceInUse(String), } impl DeleteSlotTypeVersionError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<DeleteSlotTypeVersionError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "BadRequestException" => { return RusotoError::Service(DeleteSlotTypeVersionError::BadRequest(err.msg)) } "ConflictException" => { return RusotoError::Service(DeleteSlotTypeVersionError::Conflict(err.msg)) } "InternalFailureException" => { return RusotoError::Service(DeleteSlotTypeVersionError::InternalFailure( err.msg, )) } "LimitExceededException" => { return RusotoError::Service(DeleteSlotTypeVersionError::LimitExceeded(err.msg)) } "NotFoundException" => { return RusotoError::Service(DeleteSlotTypeVersionError::NotFound(err.msg)) } "ResourceInUseException" => { return RusotoError::Service(DeleteSlotTypeVersionError::ResourceInUse(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for DeleteSlotTypeVersionError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for DeleteSlotTypeVersionError { fn description(&self) -> &str { match *self { DeleteSlotTypeVersionError::BadRequest(ref cause) => cause, DeleteSlotTypeVersionError::Conflict(ref cause) => cause, DeleteSlotTypeVersionError::InternalFailure(ref cause) => cause, DeleteSlotTypeVersionError::LimitExceeded(ref cause) => cause, DeleteSlotTypeVersionError::NotFound(ref cause) => cause, DeleteSlotTypeVersionError::ResourceInUse(ref cause) => cause, } } } /// Errors returned by DeleteUtterances #[derive(Debug, PartialEq)] pub enum DeleteUtterancesError { /// <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the field values, and try again.</p> BadRequest(String), /// <p>An internal Amazon Lex error occurred. Try your request again.</p> InternalFailure(String), /// <p>The request exceeded a limit. Try your request again.</p> LimitExceeded(String), /// <p>The resource specified in the request was not found. Check the resource and try again.</p> NotFound(String), } impl DeleteUtterancesError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<DeleteUtterancesError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "BadRequestException" => { return RusotoError::Service(DeleteUtterancesError::BadRequest(err.msg)) } "InternalFailureException" => { return RusotoError::Service(DeleteUtterancesError::InternalFailure(err.msg)) } "LimitExceededException" => { return RusotoError::Service(DeleteUtterancesError::LimitExceeded(err.msg)) } "NotFoundException" => { return RusotoError::Service(DeleteUtterancesError::NotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for DeleteUtterancesError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for DeleteUtterancesError { fn description(&self) -> &str { match *self { DeleteUtterancesError::BadRequest(ref cause) => cause, DeleteUtterancesError::InternalFailure(ref cause) => cause, DeleteUtterancesError::LimitExceeded(ref cause) => cause, DeleteUtterancesError::NotFound(ref cause) => cause, } } } /// Errors returned by GetBot #[derive(Debug, PartialEq)] pub enum GetBotError { /// <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the field values, and try again.</p> BadRequest(String), /// <p>An internal Amazon Lex error occurred. Try your request again.</p> InternalFailure(String), /// <p>The request exceeded a limit. Try your request again.</p> LimitExceeded(String), /// <p>The resource specified in the request was not found. Check the resource and try again.</p> NotFound(String), } impl GetBotError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<GetBotError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "BadRequestException" => { return RusotoError::Service(GetBotError::BadRequest(err.msg)) } "InternalFailureException" => { return RusotoError::Service(GetBotError::InternalFailure(err.msg)) } "LimitExceededException" => { return RusotoError::Service(GetBotError::LimitExceeded(err.msg)) } "NotFoundException" => return RusotoError::Service(GetBotError::NotFound(err.msg)), "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for GetBotError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for GetBotError { fn description(&self) -> &str { match *self { GetBotError::BadRequest(ref cause) => cause, GetBotError::InternalFailure(ref cause) => cause, GetBotError::LimitExceeded(ref cause) => cause, GetBotError::NotFound(ref cause) => cause, } } } /// Errors returned by GetBotAlias #[derive(Debug, PartialEq)] pub enum GetBotAliasError { /// <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the field values, and try again.</p> BadRequest(String), /// <p>An internal Amazon Lex error occurred. Try your request again.</p> InternalFailure(String), /// <p>The request exceeded a limit. Try your request again.</p> LimitExceeded(String), /// <p>The resource specified in the request was not found. Check the resource and try again.</p> NotFound(String), } impl GetBotAliasError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<GetBotAliasError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "BadRequestException" => { return RusotoError::Service(GetBotAliasError::BadRequest(err.msg)) } "InternalFailureException" => { return RusotoError::Service(GetBotAliasError::InternalFailure(err.msg)) } "LimitExceededException" => { return RusotoError::Service(GetBotAliasError::LimitExceeded(err.msg)) } "NotFoundException" => { return RusotoError::Service(GetBotAliasError::NotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for GetBotAliasError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for GetBotAliasError { fn description(&self) -> &str { match *self { GetBotAliasError::BadRequest(ref cause) => cause, GetBotAliasError::InternalFailure(ref cause) => cause, GetBotAliasError::LimitExceeded(ref cause) => cause, GetBotAliasError::NotFound(ref cause) => cause, } } } /// Errors returned by GetBotAliases #[derive(Debug, PartialEq)] pub enum GetBotAliasesError { /// <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the field values, and try again.</p> BadRequest(String), /// <p>An internal Amazon Lex error occurred. Try your request again.</p> InternalFailure(String), /// <p>The request exceeded a limit. Try your request again.</p> LimitExceeded(String), } impl GetBotAliasesError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<GetBotAliasesError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "BadRequestException" => { return RusotoError::Service(GetBotAliasesError::BadRequest(err.msg)) } "InternalFailureException" => { return RusotoError::Service(GetBotAliasesError::InternalFailure(err.msg)) } "LimitExceededException" => { return RusotoError::Service(GetBotAliasesError::LimitExceeded(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for GetBotAliasesError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for GetBotAliasesError { fn description(&self) -> &str { match *self { GetBotAliasesError::BadRequest(ref cause) => cause, GetBotAliasesError::InternalFailure(ref cause) => cause, GetBotAliasesError::LimitExceeded(ref cause) => cause, } } } /// Errors returned by GetBotChannelAssociation #[derive(Debug, PartialEq)] pub enum GetBotChannelAssociationError { /// <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the field values, and try again.</p> BadRequest(String), /// <p>An internal Amazon Lex error occurred. Try your request again.</p> InternalFailure(String), /// <p>The request exceeded a limit. Try your request again.</p> LimitExceeded(String), /// <p>The resource specified in the request was not found. Check the resource and try again.</p> NotFound(String), } impl GetBotChannelAssociationError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<GetBotChannelAssociationError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "BadRequestException" => { return RusotoError::Service(GetBotChannelAssociationError::BadRequest(err.msg)) } "InternalFailureException" => { return RusotoError::Service(GetBotChannelAssociationError::InternalFailure( err.msg, )) } "LimitExceededException" => { return RusotoError::Service(GetBotChannelAssociationError::LimitExceeded( err.msg, )) } "NotFoundException" => { return RusotoError::Service(GetBotChannelAssociationError::NotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for GetBotChannelAssociationError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for GetBotChannelAssociationError { fn description(&self) -> &str { match *self { GetBotChannelAssociationError::BadRequest(ref cause) => cause, GetBotChannelAssociationError::InternalFailure(ref cause) => cause, GetBotChannelAssociationError::LimitExceeded(ref cause) => cause, GetBotChannelAssociationError::NotFound(ref cause) => cause, } } } /// Errors returned by GetBotChannelAssociations #[derive(Debug, PartialEq)] pub enum GetBotChannelAssociationsError { /// <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the field values, and try again.</p> BadRequest(String), /// <p>An internal Amazon Lex error occurred. Try your request again.</p> InternalFailure(String), /// <p>The request exceeded a limit. Try your request again.</p> LimitExceeded(String), } impl GetBotChannelAssociationsError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<GetBotChannelAssociationsError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "BadRequestException" => { return RusotoError::Service(GetBotChannelAssociationsError::BadRequest( err.msg, )) } "InternalFailureException" => { return RusotoError::Service(GetBotChannelAssociationsError::InternalFailure( err.msg, )) } "LimitExceededException" => { return RusotoError::Service(GetBotChannelAssociationsError::LimitExceeded( err.msg, )) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for GetBotChannelAssociationsError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for GetBotChannelAssociationsError { fn description(&self) -> &str { match *self { GetBotChannelAssociationsError::BadRequest(ref cause) => cause, GetBotChannelAssociationsError::InternalFailure(ref cause) => cause, GetBotChannelAssociationsError::LimitExceeded(ref cause) => cause, } } } /// Errors returned by GetBotVersions #[derive(Debug, PartialEq)] pub enum GetBotVersionsError { /// <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the field values, and try again.</p> BadRequest(String), /// <p>An internal Amazon Lex error occurred. Try your request again.</p> InternalFailure(String), /// <p>The request exceeded a limit. Try your request again.</p> LimitExceeded(String), /// <p>The resource specified in the request was not found. Check the resource and try again.</p> NotFound(String), } impl GetBotVersionsError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<GetBotVersionsError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "BadRequestException" => { return RusotoError::Service(GetBotVersionsError::BadRequest(err.msg)) } "InternalFailureException" => { return RusotoError::Service(GetBotVersionsError::InternalFailure(err.msg)) } "LimitExceededException" => { return RusotoError::Service(GetBotVersionsError::LimitExceeded(err.msg)) } "NotFoundException" => { return RusotoError::Service(GetBotVersionsError::NotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for GetBotVersionsError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for GetBotVersionsError { fn description(&self) -> &str { match *self { GetBotVersionsError::BadRequest(ref cause) => cause, GetBotVersionsError::InternalFailure(ref cause) => cause, GetBotVersionsError::LimitExceeded(ref cause) => cause, GetBotVersionsError::NotFound(ref cause) => cause, } } } /// Errors returned by GetBots #[derive(Debug, PartialEq)] pub enum GetBotsError { /// <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the field values, and try again.</p> BadRequest(String), /// <p>An internal Amazon Lex error occurred. Try your request again.</p> InternalFailure(String), /// <p>The request exceeded a limit. Try your request again.</p> LimitExceeded(String), /// <p>The resource specified in the request was not found. Check the resource and try again.</p> NotFound(String), } impl GetBotsError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<GetBotsError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "BadRequestException" => { return RusotoError::Service(GetBotsError::BadRequest(err.msg)) } "InternalFailureException" => { return RusotoError::Service(GetBotsError::InternalFailure(err.msg)) } "LimitExceededException" => { return RusotoError::Service(GetBotsError::LimitExceeded(err.msg)) } "NotFoundException" => { return RusotoError::Service(GetBotsError::NotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for GetBotsError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for GetBotsError { fn description(&self) -> &str { match *self { GetBotsError::BadRequest(ref cause) => cause, GetBotsError::InternalFailure(ref cause) => cause, GetBotsError::LimitExceeded(ref cause) => cause, GetBotsError::NotFound(ref cause) => cause, } } } /// Errors returned by GetBuiltinIntent #[derive(Debug, PartialEq)] pub enum GetBuiltinIntentError { /// <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the field values, and try again.</p> BadRequest(String), /// <p>An internal Amazon Lex error occurred. Try your request again.</p> InternalFailure(String), /// <p>The request exceeded a limit. Try your request again.</p> LimitExceeded(String), /// <p>The resource specified in the request was not found. Check the resource and try again.</p> NotFound(String), } impl GetBuiltinIntentError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<GetBuiltinIntentError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "BadRequestException" => { return RusotoError::Service(GetBuiltinIntentError::BadRequest(err.msg)) } "InternalFailureException" => { return RusotoError::Service(GetBuiltinIntentError::InternalFailure(err.msg)) } "LimitExceededException" => { return RusotoError::Service(GetBuiltinIntentError::LimitExceeded(err.msg)) } "NotFoundException" => { return RusotoError::Service(GetBuiltinIntentError::NotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for GetBuiltinIntentError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for GetBuiltinIntentError { fn description(&self) -> &str { match *self { GetBuiltinIntentError::BadRequest(ref cause) => cause, GetBuiltinIntentError::InternalFailure(ref cause) => cause, GetBuiltinIntentError::LimitExceeded(ref cause) => cause, GetBuiltinIntentError::NotFound(ref cause) => cause, } } } /// Errors returned by GetBuiltinIntents #[derive(Debug, PartialEq)] pub enum GetBuiltinIntentsError { /// <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the field values, and try again.</p> BadRequest(String), /// <p>An internal Amazon Lex error occurred. Try your request again.</p> InternalFailure(String), /// <p>The request exceeded a limit. Try your request again.</p> LimitExceeded(String), } impl GetBuiltinIntentsError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<GetBuiltinIntentsError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "BadRequestException" => { return RusotoError::Service(GetBuiltinIntentsError::BadRequest(err.msg)) } "InternalFailureException" => { return RusotoError::Service(GetBuiltinIntentsError::InternalFailure(err.msg)) } "LimitExceededException" => { return RusotoError::Service(GetBuiltinIntentsError::LimitExceeded(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for GetBuiltinIntentsError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for GetBuiltinIntentsError { fn description(&self) -> &str { match *self { GetBuiltinIntentsError::BadRequest(ref cause) => cause, GetBuiltinIntentsError::InternalFailure(ref cause) => cause, GetBuiltinIntentsError::LimitExceeded(ref cause) => cause, } } } /// Errors returned by GetBuiltinSlotTypes #[derive(Debug, PartialEq)] pub enum GetBuiltinSlotTypesError { /// <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the field values, and try again.</p> BadRequest(String), /// <p>An internal Amazon Lex error occurred. Try your request again.</p> InternalFailure(String), /// <p>The request exceeded a limit. Try your request again.</p> LimitExceeded(String), } impl GetBuiltinSlotTypesError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<GetBuiltinSlotTypesError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "BadRequestException" => { return RusotoError::Service(GetBuiltinSlotTypesError::BadRequest(err.msg)) } "InternalFailureException" => { return RusotoError::Service(GetBuiltinSlotTypesError::InternalFailure(err.msg)) } "LimitExceededException" => { return RusotoError::Service(GetBuiltinSlotTypesError::LimitExceeded(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for GetBuiltinSlotTypesError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for GetBuiltinSlotTypesError { fn description(&self) -> &str { match *self { GetBuiltinSlotTypesError::BadRequest(ref cause) => cause, GetBuiltinSlotTypesError::InternalFailure(ref cause) => cause, GetBuiltinSlotTypesError::LimitExceeded(ref cause) => cause, } } } /// Errors returned by GetExport #[derive(Debug, PartialEq)] pub enum GetExportError { /// <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the field values, and try again.</p> BadRequest(String), /// <p>An internal Amazon Lex error occurred. Try your request again.</p> InternalFailure(String), /// <p>The request exceeded a limit. Try your request again.</p> LimitExceeded(String), /// <p>The resource specified in the request was not found. Check the resource and try again.</p> NotFound(String), } impl GetExportError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<GetExportError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "BadRequestException" => { return RusotoError::Service(GetExportError::BadRequest(err.msg)) } "InternalFailureException" => { return RusotoError::Service(GetExportError::InternalFailure(err.msg)) } "LimitExceededException" => { return RusotoError::Service(GetExportError::LimitExceeded(err.msg)) } "NotFoundException" => { return RusotoError::Service(GetExportError::NotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for GetExportError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for GetExportError { fn description(&self) -> &str { match *self { GetExportError::BadRequest(ref cause) => cause, GetExportError::InternalFailure(ref cause) => cause, GetExportError::LimitExceeded(ref cause) => cause, GetExportError::NotFound(ref cause) => cause, } } } /// Errors returned by GetImport #[derive(Debug, PartialEq)] pub enum GetImportError { /// <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the field values, and try again.</p> BadRequest(String), /// <p>An internal Amazon Lex error occurred. Try your request again.</p> InternalFailure(String), /// <p>The request exceeded a limit. Try your request again.</p> LimitExceeded(String), /// <p>The resource specified in the request was not found. Check the resource and try again.</p> NotFound(String), } impl GetImportError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<GetImportError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "BadRequestException" => { return RusotoError::Service(GetImportError::BadRequest(err.msg)) } "InternalFailureException" => { return RusotoError::Service(GetImportError::InternalFailure(err.msg)) } "LimitExceededException" => { return RusotoError::Service(GetImportError::LimitExceeded(err.msg)) } "NotFoundException" => { return RusotoError::Service(GetImportError::NotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for GetImportError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for GetImportError { fn description(&self) -> &str { match *self { GetImportError::BadRequest(ref cause) => cause, GetImportError::InternalFailure(ref cause) => cause, GetImportError::LimitExceeded(ref cause) => cause, GetImportError::NotFound(ref cause) => cause, } } } /// Errors returned by GetIntent #[derive(Debug, PartialEq)] pub enum GetIntentError { /// <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the field values, and try again.</p> BadRequest(String), /// <p>An internal Amazon Lex error occurred. Try your request again.</p> InternalFailure(String), /// <p>The request exceeded a limit. Try your request again.</p> LimitExceeded(String), /// <p>The resource specified in the request was not found. Check the resource and try again.</p> NotFound(String), } impl GetIntentError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<GetIntentError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "BadRequestException" => { return RusotoError::Service(GetIntentError::BadRequest(err.msg)) } "InternalFailureException" => { return RusotoError::Service(GetIntentError::InternalFailure(err.msg)) } "LimitExceededException" => { return RusotoError::Service(GetIntentError::LimitExceeded(err.msg)) } "NotFoundException" => { return RusotoError::Service(GetIntentError::NotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for GetIntentError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for GetIntentError { fn description(&self) -> &str { match *self { GetIntentError::BadRequest(ref cause) => cause, GetIntentError::InternalFailure(ref cause) => cause, GetIntentError::LimitExceeded(ref cause) => cause, GetIntentError::NotFound(ref cause) => cause, } } } /// Errors returned by GetIntentVersions #[derive(Debug, PartialEq)] pub enum GetIntentVersionsError { /// <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the field values, and try again.</p> BadRequest(String), /// <p>An internal Amazon Lex error occurred. Try your request again.</p> InternalFailure(String), /// <p>The request exceeded a limit. Try your request again.</p> LimitExceeded(String), /// <p>The resource specified in the request was not found. Check the resource and try again.</p> NotFound(String), } impl GetIntentVersionsError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<GetIntentVersionsError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "BadRequestException" => { return RusotoError::Service(GetIntentVersionsError::BadRequest(err.msg)) } "InternalFailureException" => { return RusotoError::Service(GetIntentVersionsError::InternalFailure(err.msg)) } "LimitExceededException" => { return RusotoError::Service(GetIntentVersionsError::LimitExceeded(err.msg)) } "NotFoundException" => { return RusotoError::Service(GetIntentVersionsError::NotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for GetIntentVersionsError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for GetIntentVersionsError { fn description(&self) -> &str { match *self { GetIntentVersionsError::BadRequest(ref cause) => cause, GetIntentVersionsError::InternalFailure(ref cause) => cause, GetIntentVersionsError::LimitExceeded(ref cause) => cause, GetIntentVersionsError::NotFound(ref cause) => cause, } } } /// Errors returned by GetIntents #[derive(Debug, PartialEq)] pub enum GetIntentsError { /// <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the field values, and try again.</p> BadRequest(String), /// <p>An internal Amazon Lex error occurred. Try your request again.</p> InternalFailure(String), /// <p>The request exceeded a limit. Try your request again.</p> LimitExceeded(String), /// <p>The resource specified in the request was not found. Check the resource and try again.</p> NotFound(String), } impl GetIntentsError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<GetIntentsError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "BadRequestException" => { return RusotoError::Service(GetIntentsError::BadRequest(err.msg)) } "InternalFailureException" => { return RusotoError::Service(GetIntentsError::InternalFailure(err.msg)) } "LimitExceededException" => { return RusotoError::Service(GetIntentsError::LimitExceeded(err.msg)) } "NotFoundException" => { return RusotoError::Service(GetIntentsError::NotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for GetIntentsError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for GetIntentsError { fn description(&self) -> &str { match *self { GetIntentsError::BadRequest(ref cause) => cause, GetIntentsError::InternalFailure(ref cause) => cause, GetIntentsError::LimitExceeded(ref cause) => cause, GetIntentsError::NotFound(ref cause) => cause, } } } /// Errors returned by GetSlotType #[derive(Debug, PartialEq)] pub enum GetSlotTypeError { /// <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the field values, and try again.</p> BadRequest(String), /// <p>An internal Amazon Lex error occurred. Try your request again.</p> InternalFailure(String), /// <p>The request exceeded a limit. Try your request again.</p> LimitExceeded(String), /// <p>The resource specified in the request was not found. Check the resource and try again.</p> NotFound(String), } impl GetSlotTypeError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<GetSlotTypeError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "BadRequestException" => { return RusotoError::Service(GetSlotTypeError::BadRequest(err.msg)) } "InternalFailureException" => { return RusotoError::Service(GetSlotTypeError::InternalFailure(err.msg)) } "LimitExceededException" => { return RusotoError::Service(GetSlotTypeError::LimitExceeded(err.msg)) } "NotFoundException" => { return RusotoError::Service(GetSlotTypeError::NotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for GetSlotTypeError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for GetSlotTypeError { fn description(&self) -> &str { match *self { GetSlotTypeError::BadRequest(ref cause) => cause, GetSlotTypeError::InternalFailure(ref cause) => cause, GetSlotTypeError::LimitExceeded(ref cause) => cause, GetSlotTypeError::NotFound(ref cause) => cause, } } } /// Errors returned by GetSlotTypeVersions #[derive(Debug, PartialEq)] pub enum GetSlotTypeVersionsError { /// <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the field values, and try again.</p> BadRequest(String), /// <p>An internal Amazon Lex error occurred. Try your request again.</p> InternalFailure(String), /// <p>The request exceeded a limit. Try your request again.</p> LimitExceeded(String), /// <p>The resource specified in the request was not found. Check the resource and try again.</p> NotFound(String), } impl GetSlotTypeVersionsError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<GetSlotTypeVersionsError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "BadRequestException" => { return RusotoError::Service(GetSlotTypeVersionsError::BadRequest(err.msg)) } "InternalFailureException" => { return RusotoError::Service(GetSlotTypeVersionsError::InternalFailure(err.msg)) } "LimitExceededException" => { return RusotoError::Service(GetSlotTypeVersionsError::LimitExceeded(err.msg)) } "NotFoundException" => { return RusotoError::Service(GetSlotTypeVersionsError::NotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for GetSlotTypeVersionsError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for GetSlotTypeVersionsError { fn description(&self) -> &str { match *self { GetSlotTypeVersionsError::BadRequest(ref cause) => cause, GetSlotTypeVersionsError::InternalFailure(ref cause) => cause, GetSlotTypeVersionsError::LimitExceeded(ref cause) => cause, GetSlotTypeVersionsError::NotFound(ref cause) => cause, } } } /// Errors returned by GetSlotTypes #[derive(Debug, PartialEq)] pub enum GetSlotTypesError { /// <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the field values, and try again.</p> BadRequest(String), /// <p>An internal Amazon Lex error occurred. Try your request again.</p> InternalFailure(String), /// <p>The request exceeded a limit. Try your request again.</p> LimitExceeded(String), /// <p>The resource specified in the request was not found. Check the resource and try again.</p> NotFound(String), } impl GetSlotTypesError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<GetSlotTypesError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "BadRequestException" => { return RusotoError::Service(GetSlotTypesError::BadRequest(err.msg)) } "InternalFailureException" => { return RusotoError::Service(GetSlotTypesError::InternalFailure(err.msg)) } "LimitExceededException" => { return RusotoError::Service(GetSlotTypesError::LimitExceeded(err.msg)) } "NotFoundException" => { return RusotoError::Service(GetSlotTypesError::NotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for GetSlotTypesError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for GetSlotTypesError { fn description(&self) -> &str { match *self { GetSlotTypesError::BadRequest(ref cause) => cause, GetSlotTypesError::InternalFailure(ref cause) => cause, GetSlotTypesError::LimitExceeded(ref cause) => cause, GetSlotTypesError::NotFound(ref cause) => cause, } } } /// Errors returned by GetUtterancesView #[derive(Debug, PartialEq)] pub enum GetUtterancesViewError { /// <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the field values, and try again.</p> BadRequest(String), /// <p>An internal Amazon Lex error occurred. Try your request again.</p> InternalFailure(String), /// <p>The request exceeded a limit. Try your request again.</p> LimitExceeded(String), } impl GetUtterancesViewError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<GetUtterancesViewError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "BadRequestException" => { return RusotoError::Service(GetUtterancesViewError::BadRequest(err.msg)) } "InternalFailureException" => { return RusotoError::Service(GetUtterancesViewError::InternalFailure(err.msg)) } "LimitExceededException" => { return RusotoError::Service(GetUtterancesViewError::LimitExceeded(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for GetUtterancesViewError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for GetUtterancesViewError { fn description(&self) -> &str { match *self { GetUtterancesViewError::BadRequest(ref cause) => cause, GetUtterancesViewError::InternalFailure(ref cause) => cause, GetUtterancesViewError::LimitExceeded(ref cause) => cause, } } } /// Errors returned by PutBot #[derive(Debug, PartialEq)] pub enum PutBotError { /// <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the field values, and try again.</p> BadRequest(String), /// <p> There was a conflict processing the request. Try your request again. </p> Conflict(String), /// <p>An internal Amazon Lex error occurred. Try your request again.</p> InternalFailure(String), /// <p>The request exceeded a limit. Try your request again.</p> LimitExceeded(String), /// <p> The checksum of the resource that you are trying to change does not match the checksum in the request. Check the resource's checksum and try again.</p> PreconditionFailed(String), } impl PutBotError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<PutBotError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "BadRequestException" => { return RusotoError::Service(PutBotError::BadRequest(err.msg)) } "ConflictException" => return RusotoError::Service(PutBotError::Conflict(err.msg)), "InternalFailureException" => { return RusotoError::Service(PutBotError::InternalFailure(err.msg)) } "LimitExceededException" => { return RusotoError::Service(PutBotError::LimitExceeded(err.msg)) } "PreconditionFailedException" => { return RusotoError::Service(PutBotError::PreconditionFailed(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for PutBotError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for PutBotError { fn description(&self) -> &str { match *self { PutBotError::BadRequest(ref cause) => cause, PutBotError::Conflict(ref cause) => cause, PutBotError::InternalFailure(ref cause) => cause, PutBotError::LimitExceeded(ref cause) => cause, PutBotError::PreconditionFailed(ref cause) => cause, } } } /// Errors returned by PutBotAlias #[derive(Debug, PartialEq)] pub enum PutBotAliasError { /// <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the field values, and try again.</p> BadRequest(String), /// <p> There was a conflict processing the request. Try your request again. </p> Conflict(String), /// <p>An internal Amazon Lex error occurred. Try your request again.</p> InternalFailure(String), /// <p>The request exceeded a limit. Try your request again.</p> LimitExceeded(String), /// <p> The checksum of the resource that you are trying to change does not match the checksum in the request. Check the resource's checksum and try again.</p> PreconditionFailed(String), } impl PutBotAliasError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<PutBotAliasError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "BadRequestException" => { return RusotoError::Service(PutBotAliasError::BadRequest(err.msg)) } "ConflictException" => { return RusotoError::Service(PutBotAliasError::Conflict(err.msg)) } "InternalFailureException" => { return RusotoError::Service(PutBotAliasError::InternalFailure(err.msg)) } "LimitExceededException" => { return RusotoError::Service(PutBotAliasError::LimitExceeded(err.msg)) } "PreconditionFailedException" => { return RusotoError::Service(PutBotAliasError::PreconditionFailed(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for PutBotAliasError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for PutBotAliasError { fn description(&self) -> &str { match *self { PutBotAliasError::BadRequest(ref cause) => cause, PutBotAliasError::Conflict(ref cause) => cause, PutBotAliasError::InternalFailure(ref cause) => cause, PutBotAliasError::LimitExceeded(ref cause) => cause, PutBotAliasError::PreconditionFailed(ref cause) => cause, } } } /// Errors returned by PutIntent #[derive(Debug, PartialEq)] pub enum PutIntentError { /// <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the field values, and try again.</p> BadRequest(String), /// <p> There was a conflict processing the request. Try your request again. </p> Conflict(String), /// <p>An internal Amazon Lex error occurred. Try your request again.</p> InternalFailure(String), /// <p>The request exceeded a limit. Try your request again.</p> LimitExceeded(String), /// <p> The checksum of the resource that you are trying to change does not match the checksum in the request. Check the resource's checksum and try again.</p> PreconditionFailed(String), } impl PutIntentError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<PutIntentError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "BadRequestException" => { return RusotoError::Service(PutIntentError::BadRequest(err.msg)) } "ConflictException" => { return RusotoError::Service(PutIntentError::Conflict(err.msg)) } "InternalFailureException" => { return RusotoError::Service(PutIntentError::InternalFailure(err.msg)) } "LimitExceededException" => { return RusotoError::Service(PutIntentError::LimitExceeded(err.msg)) } "PreconditionFailedException" => { return RusotoError::Service(PutIntentError::PreconditionFailed(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for PutIntentError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for PutIntentError { fn description(&self) -> &str { match *self { PutIntentError::BadRequest(ref cause) => cause, PutIntentError::Conflict(ref cause) => cause, PutIntentError::InternalFailure(ref cause) => cause, PutIntentError::LimitExceeded(ref cause) => cause, PutIntentError::PreconditionFailed(ref cause) => cause, } } } /// Errors returned by PutSlotType #[derive(Debug, PartialEq)] pub enum PutSlotTypeError { /// <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the field values, and try again.</p> BadRequest(String), /// <p> There was a conflict processing the request. Try your request again. </p> Conflict(String), /// <p>An internal Amazon Lex error occurred. Try your request again.</p> InternalFailure(String), /// <p>The request exceeded a limit. Try your request again.</p> LimitExceeded(String), /// <p> The checksum of the resource that you are trying to change does not match the checksum in the request. Check the resource's checksum and try again.</p> PreconditionFailed(String), } impl PutSlotTypeError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<PutSlotTypeError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "BadRequestException" => { return RusotoError::Service(PutSlotTypeError::BadRequest(err.msg)) } "ConflictException" => { return RusotoError::Service(PutSlotTypeError::Conflict(err.msg)) } "InternalFailureException" => { return RusotoError::Service(PutSlotTypeError::InternalFailure(err.msg)) } "LimitExceededException" => { return RusotoError::Service(PutSlotTypeError::LimitExceeded(err.msg)) } "PreconditionFailedException" => { return RusotoError::Service(PutSlotTypeError::PreconditionFailed(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for PutSlotTypeError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for PutSlotTypeError { fn description(&self) -> &str { match *self { PutSlotTypeError::BadRequest(ref cause) => cause, PutSlotTypeError::Conflict(ref cause) => cause, PutSlotTypeError::InternalFailure(ref cause) => cause, PutSlotTypeError::LimitExceeded(ref cause) => cause, PutSlotTypeError::PreconditionFailed(ref cause) => cause, } } } /// Errors returned by StartImport #[derive(Debug, PartialEq)] pub enum StartImportError { /// <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the field values, and try again.</p> BadRequest(String), /// <p>An internal Amazon Lex error occurred. Try your request again.</p> InternalFailure(String), /// <p>The request exceeded a limit. Try your request again.</p> LimitExceeded(String), } impl StartImportError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<StartImportError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "BadRequestException" => { return RusotoError::Service(StartImportError::BadRequest(err.msg)) } "InternalFailureException" => { return RusotoError::Service(StartImportError::InternalFailure(err.msg)) } "LimitExceededException" => { return RusotoError::Service(StartImportError::LimitExceeded(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for StartImportError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for StartImportError { fn description(&self) -> &str { match *self { StartImportError::BadRequest(ref cause) => cause, StartImportError::InternalFailure(ref cause) => cause, StartImportError::LimitExceeded(ref cause) => cause, } } } /// Trait representing the capabilities of the Amazon Lex Model Building Service API. Amazon Lex Model Building Service clients implement this trait. pub trait LexModels { /// <p>Creates a new version of the bot based on the <code>$LATEST</code> version. If the <code>$LATEST</code> version of this resource hasn't changed since you created the last version, Amazon Lex doesn't create a new version. It returns the last created version.</p> <note> <p>You can update only the <code>$LATEST</code> version of the bot. You can't update the numbered versions that you create with the <code>CreateBotVersion</code> operation.</p> </note> <p> When you create the first version of a bot, Amazon Lex sets the version to 1. Subsequent versions increment by 1. For more information, see <a>versioning-intro</a>. </p> <p> This operation requires permission for the <code>lex:CreateBotVersion</code> action. </p> fn create_bot_version( &self, input: CreateBotVersionRequest, ) -> RusotoFuture<CreateBotVersionResponse, CreateBotVersionError>; /// <p>Creates a new version of an intent based on the <code>$LATEST</code> version of the intent. If the <code>$LATEST</code> version of this intent hasn't changed since you last updated it, Amazon Lex doesn't create a new version. It returns the last version you created.</p> <note> <p>You can update only the <code>$LATEST</code> version of the intent. You can't update the numbered versions that you create with the <code>CreateIntentVersion</code> operation.</p> </note> <p> When you create a version of an intent, Amazon Lex sets the version to 1. Subsequent versions increment by 1. For more information, see <a>versioning-intro</a>. </p> <p>This operation requires permissions to perform the <code>lex:CreateIntentVersion</code> action. </p> fn create_intent_version( &self, input: CreateIntentVersionRequest, ) -> RusotoFuture<CreateIntentVersionResponse, CreateIntentVersionError>; /// <p>Creates a new version of a slot type based on the <code>$LATEST</code> version of the specified slot type. If the <code>$LATEST</code> version of this resource has not changed since the last version that you created, Amazon Lex doesn't create a new version. It returns the last version that you created. </p> <note> <p>You can update only the <code>$LATEST</code> version of a slot type. You can't update the numbered versions that you create with the <code>CreateSlotTypeVersion</code> operation.</p> </note> <p>When you create a version of a slot type, Amazon Lex sets the version to 1. Subsequent versions increment by 1. For more information, see <a>versioning-intro</a>. </p> <p>This operation requires permissions for the <code>lex:CreateSlotTypeVersion</code> action.</p> fn create_slot_type_version( &self, input: CreateSlotTypeVersionRequest, ) -> RusotoFuture<CreateSlotTypeVersionResponse, CreateSlotTypeVersionError>; /// <p>Deletes all versions of the bot, including the <code>$LATEST</code> version. To delete a specific version of the bot, use the <a>DeleteBotVersion</a> operation.</p> <p>If a bot has an alias, you can't delete it. Instead, the <code>DeleteBot</code> operation returns a <code>ResourceInUseException</code> exception that includes a reference to the alias that refers to the bot. To remove the reference to the bot, delete the alias. If you get the same exception again, delete the referring alias until the <code>DeleteBot</code> operation is successful.</p> <p>This operation requires permissions for the <code>lex:DeleteBot</code> action.</p> fn delete_bot(&self, input: DeleteBotRequest) -> RusotoFuture<(), DeleteBotError>; /// <p>Deletes an alias for the specified bot. </p> <p>You can't delete an alias that is used in the association between a bot and a messaging channel. If an alias is used in a channel association, the <code>DeleteBot</code> operation returns a <code>ResourceInUseException</code> exception that includes a reference to the channel association that refers to the bot. You can remove the reference to the alias by deleting the channel association. If you get the same exception again, delete the referring association until the <code>DeleteBotAlias</code> operation is successful.</p> fn delete_bot_alias( &self, input: DeleteBotAliasRequest, ) -> RusotoFuture<(), DeleteBotAliasError>; /// <p>Deletes the association between an Amazon Lex bot and a messaging platform.</p> <p>This operation requires permission for the <code>lex:DeleteBotChannelAssociation</code> action.</p> fn delete_bot_channel_association( &self, input: DeleteBotChannelAssociationRequest, ) -> RusotoFuture<(), DeleteBotChannelAssociationError>; /// <p>Deletes a specific version of a bot. To delete all versions of a bot, use the <a>DeleteBot</a> operation. </p> <p>This operation requires permissions for the <code>lex:DeleteBotVersion</code> action.</p> fn delete_bot_version( &self, input: DeleteBotVersionRequest, ) -> RusotoFuture<(), DeleteBotVersionError>; /// <p>Deletes all versions of the intent, including the <code>$LATEST</code> version. To delete a specific version of the intent, use the <a>DeleteIntentVersion</a> operation.</p> <p> You can delete a version of an intent only if it is not referenced. To delete an intent that is referred to in one or more bots (see <a>how-it-works</a>), you must remove those references first. </p> <note> <p> If you get the <code>ResourceInUseException</code> exception, it provides an example reference that shows where the intent is referenced. To remove the reference to the intent, either update the bot or delete it. If you get the same exception when you attempt to delete the intent again, repeat until the intent has no references and the call to <code>DeleteIntent</code> is successful. </p> </note> <p> This operation requires permission for the <code>lex:DeleteIntent</code> action. </p> fn delete_intent(&self, input: DeleteIntentRequest) -> RusotoFuture<(), DeleteIntentError>; /// <p>Deletes a specific version of an intent. To delete all versions of a intent, use the <a>DeleteIntent</a> operation. </p> <p>This operation requires permissions for the <code>lex:DeleteIntentVersion</code> action.</p> fn delete_intent_version( &self, input: DeleteIntentVersionRequest, ) -> RusotoFuture<(), DeleteIntentVersionError>; /// <p>Deletes all versions of the slot type, including the <code>$LATEST</code> version. To delete a specific version of the slot type, use the <a>DeleteSlotTypeVersion</a> operation.</p> <p> You can delete a version of a slot type only if it is not referenced. To delete a slot type that is referred to in one or more intents, you must remove those references first. </p> <note> <p> If you get the <code>ResourceInUseException</code> exception, the exception provides an example reference that shows the intent where the slot type is referenced. To remove the reference to the slot type, either update the intent or delete it. If you get the same exception when you attempt to delete the slot type again, repeat until the slot type has no references and the <code>DeleteSlotType</code> call is successful. </p> </note> <p>This operation requires permission for the <code>lex:DeleteSlotType</code> action.</p> fn delete_slot_type( &self, input: DeleteSlotTypeRequest, ) -> RusotoFuture<(), DeleteSlotTypeError>; /// <p>Deletes a specific version of a slot type. To delete all versions of a slot type, use the <a>DeleteSlotType</a> operation. </p> <p>This operation requires permissions for the <code>lex:DeleteSlotTypeVersion</code> action.</p> fn delete_slot_type_version( &self, input: DeleteSlotTypeVersionRequest, ) -> RusotoFuture<(), DeleteSlotTypeVersionError>; /// <p>Deletes stored utterances.</p> <p>Amazon Lex stores the utterances that users send to your bot. Utterances are stored for 15 days for use with the <a>GetUtterancesView</a> operation, and then stored indefinitely for use in improving the ability of your bot to respond to user input.</p> <p>Use the <code>DeleteStoredUtterances</code> operation to manually delete stored utterances for a specific user.</p> <p>This operation requires permissions for the <code>lex:DeleteUtterances</code> action.</p> fn delete_utterances( &self, input: DeleteUtterancesRequest, ) -> RusotoFuture<(), DeleteUtterancesError>; /// <p>Returns metadata information for a specific bot. You must provide the bot name and the bot version or alias. </p> <p> This operation requires permissions for the <code>lex:GetBot</code> action. </p> fn get_bot(&self, input: GetBotRequest) -> RusotoFuture<GetBotResponse, GetBotError>; /// <p>Returns information about an Amazon Lex bot alias. For more information about aliases, see <a>versioning-aliases</a>.</p> <p>This operation requires permissions for the <code>lex:GetBotAlias</code> action.</p> fn get_bot_alias( &self, input: GetBotAliasRequest, ) -> RusotoFuture<GetBotAliasResponse, GetBotAliasError>; /// <p>Returns a list of aliases for a specified Amazon Lex bot.</p> <p>This operation requires permissions for the <code>lex:GetBotAliases</code> action.</p> fn get_bot_aliases( &self, input: GetBotAliasesRequest, ) -> RusotoFuture<GetBotAliasesResponse, GetBotAliasesError>; /// <p>Returns information about the association between an Amazon Lex bot and a messaging platform.</p> <p>This operation requires permissions for the <code>lex:GetBotChannelAssociation</code> action.</p> fn get_bot_channel_association( &self, input: GetBotChannelAssociationRequest, ) -> RusotoFuture<GetBotChannelAssociationResponse, GetBotChannelAssociationError>; /// <p> Returns a list of all of the channels associated with the specified bot. </p> <p>The <code>GetBotChannelAssociations</code> operation requires permissions for the <code>lex:GetBotChannelAssociations</code> action.</p> fn get_bot_channel_associations( &self, input: GetBotChannelAssociationsRequest, ) -> RusotoFuture<GetBotChannelAssociationsResponse, GetBotChannelAssociationsError>; /// <p>Gets information about all of the versions of a bot.</p> <p>The <code>GetBotVersions</code> operation returns a <code>BotMetadata</code> object for each version of a bot. For example, if a bot has three numbered versions, the <code>GetBotVersions</code> operation returns four <code>BotMetadata</code> objects in the response, one for each numbered version and one for the <code>$LATEST</code> version. </p> <p>The <code>GetBotVersions</code> operation always returns at least one version, the <code>$LATEST</code> version.</p> <p>This operation requires permissions for the <code>lex:GetBotVersions</code> action.</p> fn get_bot_versions( &self, input: GetBotVersionsRequest, ) -> RusotoFuture<GetBotVersionsResponse, GetBotVersionsError>; /// <p>Returns bot information as follows: </p> <ul> <li> <p>If you provide the <code>nameContains</code> field, the response includes information for the <code>$LATEST</code> version of all bots whose name contains the specified string.</p> </li> <li> <p>If you don't specify the <code>nameContains</code> field, the operation returns information about the <code>$LATEST</code> version of all of your bots.</p> </li> </ul> <p>This operation requires permission for the <code>lex:GetBots</code> action.</p> fn get_bots(&self, input: GetBotsRequest) -> RusotoFuture<GetBotsResponse, GetBotsError>; /// <p>Returns information about a built-in intent.</p> <p>This operation requires permission for the <code>lex:GetBuiltinIntent</code> action.</p> fn get_builtin_intent( &self, input: GetBuiltinIntentRequest, ) -> RusotoFuture<GetBuiltinIntentResponse, GetBuiltinIntentError>; /// <p>Gets a list of built-in intents that meet the specified criteria.</p> <p>This operation requires permission for the <code>lex:GetBuiltinIntents</code> action.</p> fn get_builtin_intents( &self, input: GetBuiltinIntentsRequest, ) -> RusotoFuture<GetBuiltinIntentsResponse, GetBuiltinIntentsError>; /// <p>Gets a list of built-in slot types that meet the specified criteria.</p> <p>For a list of built-in slot types, see <a href="https://developer.amazon.com/public/solutions/alexa/alexa-skills-kit/docs/built-in-intent-ref/slot-type-reference">Slot Type Reference</a> in the <i>Alexa Skills Kit</i>.</p> <p>This operation requires permission for the <code>lex:GetBuiltInSlotTypes</code> action.</p> fn get_builtin_slot_types( &self, input: GetBuiltinSlotTypesRequest, ) -> RusotoFuture<GetBuiltinSlotTypesResponse, GetBuiltinSlotTypesError>; /// <p>Exports the contents of a Amazon Lex resource in a specified format. </p> fn get_export( &self, input: GetExportRequest, ) -> RusotoFuture<GetExportResponse, GetExportError>; /// <p>Gets information about an import job started with the <code>StartImport</code> operation.</p> fn get_import( &self, input: GetImportRequest, ) -> RusotoFuture<GetImportResponse, GetImportError>; /// <p> Returns information about an intent. In addition to the intent name, you must specify the intent version. </p> <p> This operation requires permissions to perform the <code>lex:GetIntent</code> action. </p> fn get_intent( &self, input: GetIntentRequest, ) -> RusotoFuture<GetIntentResponse, GetIntentError>; /// <p>Gets information about all of the versions of an intent.</p> <p>The <code>GetIntentVersions</code> operation returns an <code>IntentMetadata</code> object for each version of an intent. For example, if an intent has three numbered versions, the <code>GetIntentVersions</code> operation returns four <code>IntentMetadata</code> objects in the response, one for each numbered version and one for the <code>$LATEST</code> version. </p> <p>The <code>GetIntentVersions</code> operation always returns at least one version, the <code>$LATEST</code> version.</p> <p>This operation requires permissions for the <code>lex:GetIntentVersions</code> action.</p> fn get_intent_versions( &self, input: GetIntentVersionsRequest, ) -> RusotoFuture<GetIntentVersionsResponse, GetIntentVersionsError>; /// <p>Returns intent information as follows: </p> <ul> <li> <p>If you specify the <code>nameContains</code> field, returns the <code>$LATEST</code> version of all intents that contain the specified string.</p> </li> <li> <p> If you don't specify the <code>nameContains</code> field, returns information about the <code>$LATEST</code> version of all intents. </p> </li> </ul> <p> The operation requires permission for the <code>lex:GetIntents</code> action. </p> fn get_intents( &self, input: GetIntentsRequest, ) -> RusotoFuture<GetIntentsResponse, GetIntentsError>; /// <p>Returns information about a specific version of a slot type. In addition to specifying the slot type name, you must specify the slot type version.</p> <p>This operation requires permissions for the <code>lex:GetSlotType</code> action.</p> fn get_slot_type( &self, input: GetSlotTypeRequest, ) -> RusotoFuture<GetSlotTypeResponse, GetSlotTypeError>; /// <p>Gets information about all versions of a slot type.</p> <p>The <code>GetSlotTypeVersions</code> operation returns a <code>SlotTypeMetadata</code> object for each version of a slot type. For example, if a slot type has three numbered versions, the <code>GetSlotTypeVersions</code> operation returns four <code>SlotTypeMetadata</code> objects in the response, one for each numbered version and one for the <code>$LATEST</code> version. </p> <p>The <code>GetSlotTypeVersions</code> operation always returns at least one version, the <code>$LATEST</code> version.</p> <p>This operation requires permissions for the <code>lex:GetSlotTypeVersions</code> action.</p> fn get_slot_type_versions( &self, input: GetSlotTypeVersionsRequest, ) -> RusotoFuture<GetSlotTypeVersionsResponse, GetSlotTypeVersionsError>; /// <p>Returns slot type information as follows: </p> <ul> <li> <p>If you specify the <code>nameContains</code> field, returns the <code>$LATEST</code> version of all slot types that contain the specified string.</p> </li> <li> <p> If you don't specify the <code>nameContains</code> field, returns information about the <code>$LATEST</code> version of all slot types. </p> </li> </ul> <p> The operation requires permission for the <code>lex:GetSlotTypes</code> action. </p> fn get_slot_types( &self, input: GetSlotTypesRequest, ) -> RusotoFuture<GetSlotTypesResponse, GetSlotTypesError>; /// <p>Use the <code>GetUtterancesView</code> operation to get information about the utterances that your users have made to your bot. You can use this list to tune the utterances that your bot responds to.</p> <p>For example, say that you have created a bot to order flowers. After your users have used your bot for a while, use the <code>GetUtterancesView</code> operation to see the requests that they have made and whether they have been successful. You might find that the utterance "I want flowers" is not being recognized. You could add this utterance to the <code>OrderFlowers</code> intent so that your bot recognizes that utterance.</p> <p>After you publish a new version of a bot, you can get information about the old version and the new so that you can compare the performance across the two versions. </p> <note> <p>Utterance statistics are generated once a day. Data is available for the last 15 days. You can request information for up to 5 versions in each request. The response contains information about a maximum of 100 utterances for each version.</p> </note> <p>This operation requires permissions for the <code>lex:GetUtterancesView</code> action.</p> fn get_utterances_view( &self, input: GetUtterancesViewRequest, ) -> RusotoFuture<GetUtterancesViewResponse, GetUtterancesViewError>; /// <p>Creates an Amazon Lex conversational bot or replaces an existing bot. When you create or update a bot you are only required to specify a name, a locale, and whether the bot is directed toward children under age 13. You can use this to add intents later, or to remove intents from an existing bot. When you create a bot with the minimum information, the bot is created or updated but Amazon Lex returns the <code/> response <code>FAILED</code>. You can build the bot after you add one or more intents. For more information about Amazon Lex bots, see <a>how-it-works</a>. </p> <p>If you specify the name of an existing bot, the fields in the request replace the existing values in the <code>$LATEST</code> version of the bot. Amazon Lex removes any fields that you don't provide values for in the request, except for the <code>idleTTLInSeconds</code> and <code>privacySettings</code> fields, which are set to their default values. If you don't specify values for required fields, Amazon Lex throws an exception.</p> <p>This operation requires permissions for the <code>lex:PutBot</code> action. For more information, see <a>auth-and-access-control</a>.</p> fn put_bot(&self, input: PutBotRequest) -> RusotoFuture<PutBotResponse, PutBotError>; /// <p>Creates an alias for the specified version of the bot or replaces an alias for the specified bot. To change the version of the bot that the alias points to, replace the alias. For more information about aliases, see <a>versioning-aliases</a>.</p> <p>This operation requires permissions for the <code>lex:PutBotAlias</code> action. </p> fn put_bot_alias( &self, input: PutBotAliasRequest, ) -> RusotoFuture<PutBotAliasResponse, PutBotAliasError>; /// <p>Creates an intent or replaces an existing intent.</p> <p>To define the interaction between the user and your bot, you use one or more intents. For a pizza ordering bot, for example, you would create an <code>OrderPizza</code> intent. </p> <p>To create an intent or replace an existing intent, you must provide the following:</p> <ul> <li> <p>Intent name. For example, <code>OrderPizza</code>.</p> </li> <li> <p>Sample utterances. For example, "Can I order a pizza, please." and "I want to order a pizza."</p> </li> <li> <p>Information to be gathered. You specify slot types for the information that your bot will request from the user. You can specify standard slot types, such as a date or a time, or custom slot types such as the size and crust of a pizza.</p> </li> <li> <p>How the intent will be fulfilled. You can provide a Lambda function or configure the intent to return the intent information to the client application. If you use a Lambda function, when all of the intent information is available, Amazon Lex invokes your Lambda function. If you configure your intent to return the intent information to the client application. </p> </li> </ul> <p>You can specify other optional information in the request, such as:</p> <ul> <li> <p>A confirmation prompt to ask the user to confirm an intent. For example, "Shall I order your pizza?"</p> </li> <li> <p>A conclusion statement to send to the user after the intent has been fulfilled. For example, "I placed your pizza order."</p> </li> <li> <p>A follow-up prompt that asks the user for additional activity. For example, asking "Do you want to order a drink with your pizza?"</p> </li> </ul> <p>If you specify an existing intent name to update the intent, Amazon Lex replaces the values in the <code>$LATEST</code> version of the intent with the values in the request. Amazon Lex removes fields that you don't provide in the request. If you don't specify the required fields, Amazon Lex throws an exception. When you update the <code>$LATEST</code> version of an intent, the <code>status</code> field of any bot that uses the <code>$LATEST</code> version of the intent is set to <code>NOT_BUILT</code>.</p> <p>For more information, see <a>how-it-works</a>.</p> <p>This operation requires permissions for the <code>lex:PutIntent</code> action.</p> fn put_intent( &self, input: PutIntentRequest, ) -> RusotoFuture<PutIntentResponse, PutIntentError>; /// <p>Creates a custom slot type or replaces an existing custom slot type.</p> <p>To create a custom slot type, specify a name for the slot type and a set of enumeration values, which are the values that a slot of this type can assume. For more information, see <a>how-it-works</a>.</p> <p>If you specify the name of an existing slot type, the fields in the request replace the existing values in the <code>$LATEST</code> version of the slot type. Amazon Lex removes the fields that you don't provide in the request. If you don't specify required fields, Amazon Lex throws an exception. When you update the <code>$LATEST</code> version of a slot type, if a bot uses the <code>$LATEST</code> version of an intent that contains the slot type, the bot's <code>status</code> field is set to <code>NOT_BUILT</code>.</p> <p>This operation requires permissions for the <code>lex:PutSlotType</code> action.</p> fn put_slot_type( &self, input: PutSlotTypeRequest, ) -> RusotoFuture<PutSlotTypeResponse, PutSlotTypeError>; /// <p>Starts a job to import a resource to Amazon Lex.</p> fn start_import( &self, input: StartImportRequest, ) -> RusotoFuture<StartImportResponse, StartImportError>; } /// A client for the Amazon Lex Model Building Service API. #[derive(Clone)] pub struct LexModelsClient { client: Client, region: region::Region, } impl LexModelsClient { /// 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) -> LexModelsClient { LexModelsClient { client: Client::shared(), region, } } pub fn new_with<P, D>( request_dispatcher: D, credentials_provider: P, region: region::Region, ) -> LexModelsClient where P: ProvideAwsCredentials + Send + Sync + 'static, P::Future: Send, D: DispatchSignedRequest + Send + Sync + 'static, D::Future: Send, { LexModelsClient { client: Client::new_with(credentials_provider, request_dispatcher), region, } } } impl LexModels for LexModelsClient { /// <p>Creates a new version of the bot based on the <code>$LATEST</code> version. If the <code>$LATEST</code> version of this resource hasn't changed since you created the last version, Amazon Lex doesn't create a new version. It returns the last created version.</p> <note> <p>You can update only the <code>$LATEST</code> version of the bot. You can't update the numbered versions that you create with the <code>CreateBotVersion</code> operation.</p> </note> <p> When you create the first version of a bot, Amazon Lex sets the version to 1. Subsequent versions increment by 1. For more information, see <a>versioning-intro</a>. </p> <p> This operation requires permission for the <code>lex:CreateBotVersion</code> action. </p> fn create_bot_version( &self, input: CreateBotVersionRequest, ) -> RusotoFuture<CreateBotVersionResponse, CreateBotVersionError> { let request_uri = format!("/bots/{name}/versions", name = input.name); let mut request = SignedRequest::new("POST", "lex", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.set_endpoint_prefix("models.lex".to_string()); let encoded = Some(serde_json::to_vec(&input).unwrap()); request.set_payload(encoded); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 201 { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<CreateBotVersionResponse, _>()?; Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(CreateBotVersionError::from_response(response))), ) } }) } /// <p>Creates a new version of an intent based on the <code>$LATEST</code> version of the intent. If the <code>$LATEST</code> version of this intent hasn't changed since you last updated it, Amazon Lex doesn't create a new version. It returns the last version you created.</p> <note> <p>You can update only the <code>$LATEST</code> version of the intent. You can't update the numbered versions that you create with the <code>CreateIntentVersion</code> operation.</p> </note> <p> When you create a version of an intent, Amazon Lex sets the version to 1. Subsequent versions increment by 1. For more information, see <a>versioning-intro</a>. </p> <p>This operation requires permissions to perform the <code>lex:CreateIntentVersion</code> action. </p> fn create_intent_version( &self, input: CreateIntentVersionRequest, ) -> RusotoFuture<CreateIntentVersionResponse, CreateIntentVersionError> { let request_uri = format!("/intents/{name}/versions", name = input.name); let mut request = SignedRequest::new("POST", "lex", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.set_endpoint_prefix("models.lex".to_string()); let encoded = Some(serde_json::to_vec(&input).unwrap()); request.set_payload(encoded); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 201 { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<CreateIntentVersionResponse, _>()?; Ok(result) })) } else { Box::new( response.buffer().from_err().and_then(|response| { Err(CreateIntentVersionError::from_response(response)) }), ) } }) } /// <p>Creates a new version of a slot type based on the <code>$LATEST</code> version of the specified slot type. If the <code>$LATEST</code> version of this resource has not changed since the last version that you created, Amazon Lex doesn't create a new version. It returns the last version that you created. </p> <note> <p>You can update only the <code>$LATEST</code> version of a slot type. You can't update the numbered versions that you create with the <code>CreateSlotTypeVersion</code> operation.</p> </note> <p>When you create a version of a slot type, Amazon Lex sets the version to 1. Subsequent versions increment by 1. For more information, see <a>versioning-intro</a>. </p> <p>This operation requires permissions for the <code>lex:CreateSlotTypeVersion</code> action.</p> fn create_slot_type_version( &self, input: CreateSlotTypeVersionRequest, ) -> RusotoFuture<CreateSlotTypeVersionResponse, CreateSlotTypeVersionError> { let request_uri = format!("/slottypes/{name}/versions", name = input.name); let mut request = SignedRequest::new("POST", "lex", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.set_endpoint_prefix("models.lex".to_string()); let encoded = Some(serde_json::to_vec(&input).unwrap()); request.set_payload(encoded); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 201 { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<CreateSlotTypeVersionResponse, _>()?; Ok(result) })) } else { Box::new( response.buffer().from_err().and_then(|response| { Err(CreateSlotTypeVersionError::from_response(response)) }), ) } }) } /// <p>Deletes all versions of the bot, including the <code>$LATEST</code> version. To delete a specific version of the bot, use the <a>DeleteBotVersion</a> operation.</p> <p>If a bot has an alias, you can't delete it. Instead, the <code>DeleteBot</code> operation returns a <code>ResourceInUseException</code> exception that includes a reference to the alias that refers to the bot. To remove the reference to the bot, delete the alias. If you get the same exception again, delete the referring alias until the <code>DeleteBot</code> operation is successful.</p> <p>This operation requires permissions for the <code>lex:DeleteBot</code> action.</p> fn delete_bot(&self, input: DeleteBotRequest) -> RusotoFuture<(), DeleteBotError> { let request_uri = format!("/bots/{name}", name = input.name); let mut request = SignedRequest::new("DELETE", "lex", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.set_endpoint_prefix("models.lex".to_string()); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 204 { Box::new(response.buffer().from_err().and_then(|response| { let result = ::std::mem::drop(response); Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(DeleteBotError::from_response(response))), ) } }) } /// <p>Deletes an alias for the specified bot. </p> <p>You can't delete an alias that is used in the association between a bot and a messaging channel. If an alias is used in a channel association, the <code>DeleteBot</code> operation returns a <code>ResourceInUseException</code> exception that includes a reference to the channel association that refers to the bot. You can remove the reference to the alias by deleting the channel association. If you get the same exception again, delete the referring association until the <code>DeleteBotAlias</code> operation is successful.</p> fn delete_bot_alias( &self, input: DeleteBotAliasRequest, ) -> RusotoFuture<(), DeleteBotAliasError> { let request_uri = format!( "/bots/{bot_name}/aliases/{name}", bot_name = input.bot_name, name = input.name ); let mut request = SignedRequest::new("DELETE", "lex", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.set_endpoint_prefix("models.lex".to_string()); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 204 { Box::new(response.buffer().from_err().and_then(|response| { let result = ::std::mem::drop(response); Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(DeleteBotAliasError::from_response(response))), ) } }) } /// <p>Deletes the association between an Amazon Lex bot and a messaging platform.</p> <p>This operation requires permission for the <code>lex:DeleteBotChannelAssociation</code> action.</p> fn delete_bot_channel_association( &self, input: DeleteBotChannelAssociationRequest, ) -> RusotoFuture<(), DeleteBotChannelAssociationError> { let request_uri = format!( "/bots/{bot_name}/aliases/{alias_name}/channels/{name}", alias_name = input.bot_alias, bot_name = input.bot_name, name = input.name ); let mut request = SignedRequest::new("DELETE", "lex", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.set_endpoint_prefix("models.lex".to_string()); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 204 { Box::new(response.buffer().from_err().and_then(|response| { let result = ::std::mem::drop(response); Ok(result) })) } else { Box::new(response.buffer().from_err().and_then(|response| { Err(DeleteBotChannelAssociationError::from_response(response)) })) } }) } /// <p>Deletes a specific version of a bot. To delete all versions of a bot, use the <a>DeleteBot</a> operation. </p> <p>This operation requires permissions for the <code>lex:DeleteBotVersion</code> action.</p> fn delete_bot_version( &self, input: DeleteBotVersionRequest, ) -> RusotoFuture<(), DeleteBotVersionError> { let request_uri = format!( "/bots/{name}/versions/{version}", name = input.name, version = input.version ); let mut request = SignedRequest::new("DELETE", "lex", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.set_endpoint_prefix("models.lex".to_string()); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 204 { Box::new(response.buffer().from_err().and_then(|response| { let result = ::std::mem::drop(response); Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(DeleteBotVersionError::from_response(response))), ) } }) } /// <p>Deletes all versions of the intent, including the <code>$LATEST</code> version. To delete a specific version of the intent, use the <a>DeleteIntentVersion</a> operation.</p> <p> You can delete a version of an intent only if it is not referenced. To delete an intent that is referred to in one or more bots (see <a>how-it-works</a>), you must remove those references first. </p> <note> <p> If you get the <code>ResourceInUseException</code> exception, it provides an example reference that shows where the intent is referenced. To remove the reference to the intent, either update the bot or delete it. If you get the same exception when you attempt to delete the intent again, repeat until the intent has no references and the call to <code>DeleteIntent</code> is successful. </p> </note> <p> This operation requires permission for the <code>lex:DeleteIntent</code> action. </p> fn delete_intent(&self, input: DeleteIntentRequest) -> RusotoFuture<(), DeleteIntentError> { let request_uri = format!("/intents/{name}", name = input.name); let mut request = SignedRequest::new("DELETE", "lex", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.set_endpoint_prefix("models.lex".to_string()); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 204 { Box::new(response.buffer().from_err().and_then(|response| { let result = ::std::mem::drop(response); Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(DeleteIntentError::from_response(response))), ) } }) } /// <p>Deletes a specific version of an intent. To delete all versions of a intent, use the <a>DeleteIntent</a> operation. </p> <p>This operation requires permissions for the <code>lex:DeleteIntentVersion</code> action.</p> fn delete_intent_version( &self, input: DeleteIntentVersionRequest, ) -> RusotoFuture<(), DeleteIntentVersionError> { let request_uri = format!( "/intents/{name}/versions/{version}", name = input.name, version = input.version ); let mut request = SignedRequest::new("DELETE", "lex", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.set_endpoint_prefix("models.lex".to_string()); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 204 { Box::new(response.buffer().from_err().and_then(|response| { let result = ::std::mem::drop(response); Ok(result) })) } else { Box::new( response.buffer().from_err().and_then(|response| { Err(DeleteIntentVersionError::from_response(response)) }), ) } }) } /// <p>Deletes all versions of the slot type, including the <code>$LATEST</code> version. To delete a specific version of the slot type, use the <a>DeleteSlotTypeVersion</a> operation.</p> <p> You can delete a version of a slot type only if it is not referenced. To delete a slot type that is referred to in one or more intents, you must remove those references first. </p> <note> <p> If you get the <code>ResourceInUseException</code> exception, the exception provides an example reference that shows the intent where the slot type is referenced. To remove the reference to the slot type, either update the intent or delete it. If you get the same exception when you attempt to delete the slot type again, repeat until the slot type has no references and the <code>DeleteSlotType</code> call is successful. </p> </note> <p>This operation requires permission for the <code>lex:DeleteSlotType</code> action.</p> fn delete_slot_type( &self, input: DeleteSlotTypeRequest, ) -> RusotoFuture<(), DeleteSlotTypeError> { let request_uri = format!("/slottypes/{name}", name = input.name); let mut request = SignedRequest::new("DELETE", "lex", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.set_endpoint_prefix("models.lex".to_string()); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 204 { Box::new(response.buffer().from_err().and_then(|response| { let result = ::std::mem::drop(response); Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(DeleteSlotTypeError::from_response(response))), ) } }) } /// <p>Deletes a specific version of a slot type. To delete all versions of a slot type, use the <a>DeleteSlotType</a> operation. </p> <p>This operation requires permissions for the <code>lex:DeleteSlotTypeVersion</code> action.</p> fn delete_slot_type_version( &self, input: DeleteSlotTypeVersionRequest, ) -> RusotoFuture<(), DeleteSlotTypeVersionError> { let request_uri = format!( "/slottypes/{name}/version/{version}", name = input.name, version = input.version ); let mut request = SignedRequest::new("DELETE", "lex", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.set_endpoint_prefix("models.lex".to_string()); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 204 { Box::new(response.buffer().from_err().and_then(|response| { let result = ::std::mem::drop(response); Ok(result) })) } else { Box::new( response.buffer().from_err().and_then(|response| { Err(DeleteSlotTypeVersionError::from_response(response)) }), ) } }) } /// <p>Deletes stored utterances.</p> <p>Amazon Lex stores the utterances that users send to your bot. Utterances are stored for 15 days for use with the <a>GetUtterancesView</a> operation, and then stored indefinitely for use in improving the ability of your bot to respond to user input.</p> <p>Use the <code>DeleteStoredUtterances</code> operation to manually delete stored utterances for a specific user.</p> <p>This operation requires permissions for the <code>lex:DeleteUtterances</code> action.</p> fn delete_utterances( &self, input: DeleteUtterancesRequest, ) -> RusotoFuture<(), DeleteUtterancesError> { let request_uri = format!( "/bots/{bot_name}/utterances/{user_id}", bot_name = input.bot_name, user_id = input.user_id ); let mut request = SignedRequest::new("DELETE", "lex", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.set_endpoint_prefix("models.lex".to_string()); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 204 { Box::new(response.buffer().from_err().and_then(|response| { let result = ::std::mem::drop(response); Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(DeleteUtterancesError::from_response(response))), ) } }) } /// <p>Returns metadata information for a specific bot. You must provide the bot name and the bot version or alias. </p> <p> This operation requires permissions for the <code>lex:GetBot</code> action. </p> fn get_bot(&self, input: GetBotRequest) -> RusotoFuture<GetBotResponse, GetBotError> { let request_uri = format!( "/bots/{name}/versions/{versionoralias}", name = input.name, versionoralias = input.version_or_alias ); let mut request = SignedRequest::new("GET", "lex", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.set_endpoint_prefix("models.lex".to_string()); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 200 { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<GetBotResponse, _>()?; Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(GetBotError::from_response(response))), ) } }) } /// <p>Returns information about an Amazon Lex bot alias. For more information about aliases, see <a>versioning-aliases</a>.</p> <p>This operation requires permissions for the <code>lex:GetBotAlias</code> action.</p> fn get_bot_alias( &self, input: GetBotAliasRequest, ) -> RusotoFuture<GetBotAliasResponse, GetBotAliasError> { let request_uri = format!( "/bots/{bot_name}/aliases/{name}", bot_name = input.bot_name, name = input.name ); let mut request = SignedRequest::new("GET", "lex", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.set_endpoint_prefix("models.lex".to_string()); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 200 { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<GetBotAliasResponse, _>()?; Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(GetBotAliasError::from_response(response))), ) } }) } /// <p>Returns a list of aliases for a specified Amazon Lex bot.</p> <p>This operation requires permissions for the <code>lex:GetBotAliases</code> action.</p> fn get_bot_aliases( &self, input: GetBotAliasesRequest, ) -> RusotoFuture<GetBotAliasesResponse, GetBotAliasesError> { let request_uri = format!("/bots/{bot_name}/aliases/", bot_name = input.bot_name); let mut request = SignedRequest::new("GET", "lex", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.set_endpoint_prefix("models.lex".to_string()); let mut params = Params::new(); if let Some(ref x) = input.max_results { params.put("maxResults", x); } if let Some(ref x) = input.name_contains { params.put("nameContains", x); } if let Some(ref x) = input.next_token { params.put("nextToken", x); } request.set_params(params); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 200 { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<GetBotAliasesResponse, _>()?; Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(GetBotAliasesError::from_response(response))), ) } }) } /// <p>Returns information about the association between an Amazon Lex bot and a messaging platform.</p> <p>This operation requires permissions for the <code>lex:GetBotChannelAssociation</code> action.</p> fn get_bot_channel_association( &self, input: GetBotChannelAssociationRequest, ) -> RusotoFuture<GetBotChannelAssociationResponse, GetBotChannelAssociationError> { let request_uri = format!( "/bots/{bot_name}/aliases/{alias_name}/channels/{name}", alias_name = input.bot_alias, bot_name = input.bot_name, name = input.name ); let mut request = SignedRequest::new("GET", "lex", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.set_endpoint_prefix("models.lex".to_string()); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 200 { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<GetBotChannelAssociationResponse, _>()?; Ok(result) })) } else { Box::new(response.buffer().from_err().and_then(|response| { Err(GetBotChannelAssociationError::from_response(response)) })) } }) } /// <p> Returns a list of all of the channels associated with the specified bot. </p> <p>The <code>GetBotChannelAssociations</code> operation requires permissions for the <code>lex:GetBotChannelAssociations</code> action.</p> fn get_bot_channel_associations( &self, input: GetBotChannelAssociationsRequest, ) -> RusotoFuture<GetBotChannelAssociationsResponse, GetBotChannelAssociationsError> { let request_uri = format!( "/bots/{bot_name}/aliases/{alias_name}/channels/", alias_name = input.bot_alias, bot_name = input.bot_name ); let mut request = SignedRequest::new("GET", "lex", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.set_endpoint_prefix("models.lex".to_string()); let mut params = Params::new(); if let Some(ref x) = input.max_results { params.put("maxResults", x); } if let Some(ref x) = input.name_contains { params.put("nameContains", x); } if let Some(ref x) = input.next_token { params.put("nextToken", x); } request.set_params(params); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 200 { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<GetBotChannelAssociationsResponse, _>()?; Ok(result) })) } else { Box::new(response.buffer().from_err().and_then(|response| { Err(GetBotChannelAssociationsError::from_response(response)) })) } }) } /// <p>Gets information about all of the versions of a bot.</p> <p>The <code>GetBotVersions</code> operation returns a <code>BotMetadata</code> object for each version of a bot. For example, if a bot has three numbered versions, the <code>GetBotVersions</code> operation returns four <code>BotMetadata</code> objects in the response, one for each numbered version and one for the <code>$LATEST</code> version. </p> <p>The <code>GetBotVersions</code> operation always returns at least one version, the <code>$LATEST</code> version.</p> <p>This operation requires permissions for the <code>lex:GetBotVersions</code> action.</p> fn get_bot_versions( &self, input: GetBotVersionsRequest, ) -> RusotoFuture<GetBotVersionsResponse, GetBotVersionsError> { let request_uri = format!("/bots/{name}/versions/", name = input.name); let mut request = SignedRequest::new("GET", "lex", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.set_endpoint_prefix("models.lex".to_string()); let mut params = Params::new(); if let Some(ref x) = input.max_results { params.put("maxResults", x); } if let Some(ref x) = input.next_token { params.put("nextToken", x); } request.set_params(params); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 200 { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<GetBotVersionsResponse, _>()?; Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(GetBotVersionsError::from_response(response))), ) } }) } /// <p>Returns bot information as follows: </p> <ul> <li> <p>If you provide the <code>nameContains</code> field, the response includes information for the <code>$LATEST</code> version of all bots whose name contains the specified string.</p> </li> <li> <p>If you don't specify the <code>nameContains</code> field, the operation returns information about the <code>$LATEST</code> version of all of your bots.</p> </li> </ul> <p>This operation requires permission for the <code>lex:GetBots</code> action.</p> fn get_bots(&self, input: GetBotsRequest) -> RusotoFuture<GetBotsResponse, GetBotsError> { let request_uri = "/bots/"; let mut request = SignedRequest::new("GET", "lex", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.set_endpoint_prefix("models.lex".to_string()); let mut params = Params::new(); if let Some(ref x) = input.max_results { params.put("maxResults", x); } if let Some(ref x) = input.name_contains { params.put("nameContains", x); } if let Some(ref x) = input.next_token { params.put("nextToken", x); } request.set_params(params); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 200 { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<GetBotsResponse, _>()?; Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(GetBotsError::from_response(response))), ) } }) } /// <p>Returns information about a built-in intent.</p> <p>This operation requires permission for the <code>lex:GetBuiltinIntent</code> action.</p> fn get_builtin_intent( &self, input: GetBuiltinIntentRequest, ) -> RusotoFuture<GetBuiltinIntentResponse, GetBuiltinIntentError> { let request_uri = format!("/builtins/intents/{signature}", signature = input.signature); let mut request = SignedRequest::new("GET", "lex", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.set_endpoint_prefix("models.lex".to_string()); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 200 { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<GetBuiltinIntentResponse, _>()?; Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(GetBuiltinIntentError::from_response(response))), ) } }) } /// <p>Gets a list of built-in intents that meet the specified criteria.</p> <p>This operation requires permission for the <code>lex:GetBuiltinIntents</code> action.</p> fn get_builtin_intents( &self, input: GetBuiltinIntentsRequest, ) -> RusotoFuture<GetBuiltinIntentsResponse, GetBuiltinIntentsError> { let request_uri = "/builtins/intents/"; let mut request = SignedRequest::new("GET", "lex", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.set_endpoint_prefix("models.lex".to_string()); let mut params = Params::new(); if let Some(ref x) = input.locale { params.put("locale", x); } if let Some(ref x) = input.max_results { params.put("maxResults", x); } if let Some(ref x) = input.next_token { params.put("nextToken", x); } if let Some(ref x) = input.signature_contains { params.put("signatureContains", x); } request.set_params(params); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 200 { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<GetBuiltinIntentsResponse, _>()?; Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(GetBuiltinIntentsError::from_response(response))), ) } }) } /// <p>Gets a list of built-in slot types that meet the specified criteria.</p> <p>For a list of built-in slot types, see <a href="https://developer.amazon.com/public/solutions/alexa/alexa-skills-kit/docs/built-in-intent-ref/slot-type-reference">Slot Type Reference</a> in the <i>Alexa Skills Kit</i>.</p> <p>This operation requires permission for the <code>lex:GetBuiltInSlotTypes</code> action.</p> fn get_builtin_slot_types( &self, input: GetBuiltinSlotTypesRequest, ) -> RusotoFuture<GetBuiltinSlotTypesResponse, GetBuiltinSlotTypesError> { let request_uri = "/builtins/slottypes/"; let mut request = SignedRequest::new("GET", "lex", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.set_endpoint_prefix("models.lex".to_string()); let mut params = Params::new(); if let Some(ref x) = input.locale { params.put("locale", x); } if let Some(ref x) = input.max_results { params.put("maxResults", x); } if let Some(ref x) = input.next_token { params.put("nextToken", x); } if let Some(ref x) = input.signature_contains { params.put("signatureContains", x); } request.set_params(params); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 200 { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<GetBuiltinSlotTypesResponse, _>()?; Ok(result) })) } else { Box::new( response.buffer().from_err().and_then(|response| { Err(GetBuiltinSlotTypesError::from_response(response)) }), ) } }) } /// <p>Exports the contents of a Amazon Lex resource in a specified format. </p> fn get_export( &self, input: GetExportRequest, ) -> RusotoFuture<GetExportResponse, GetExportError> { let request_uri = "/exports/"; let mut request = SignedRequest::new("GET", "lex", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.set_endpoint_prefix("models.lex".to_string()); let mut params = Params::new(); params.put("exportType", &input.export_type); params.put("name", &input.name); params.put("resourceType", &input.resource_type); params.put("version", &input.version); request.set_params(params); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 200 { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<GetExportResponse, _>()?; Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(GetExportError::from_response(response))), ) } }) } /// <p>Gets information about an import job started with the <code>StartImport</code> operation.</p> fn get_import( &self, input: GetImportRequest, ) -> RusotoFuture<GetImportResponse, GetImportError> { let request_uri = format!("/imports/{import_id}", import_id = input.import_id); let mut request = SignedRequest::new("GET", "lex", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.set_endpoint_prefix("models.lex".to_string()); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 200 { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<GetImportResponse, _>()?; Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(GetImportError::from_response(response))), ) } }) } /// <p> Returns information about an intent. In addition to the intent name, you must specify the intent version. </p> <p> This operation requires permissions to perform the <code>lex:GetIntent</code> action. </p> fn get_intent( &self, input: GetIntentRequest, ) -> RusotoFuture<GetIntentResponse, GetIntentError> { let request_uri = format!( "/intents/{name}/versions/{version}", name = input.name, version = input.version ); let mut request = SignedRequest::new("GET", "lex", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.set_endpoint_prefix("models.lex".to_string()); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 200 { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<GetIntentResponse, _>()?; Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(GetIntentError::from_response(response))), ) } }) } /// <p>Gets information about all of the versions of an intent.</p> <p>The <code>GetIntentVersions</code> operation returns an <code>IntentMetadata</code> object for each version of an intent. For example, if an intent has three numbered versions, the <code>GetIntentVersions</code> operation returns four <code>IntentMetadata</code> objects in the response, one for each numbered version and one for the <code>$LATEST</code> version. </p> <p>The <code>GetIntentVersions</code> operation always returns at least one version, the <code>$LATEST</code> version.</p> <p>This operation requires permissions for the <code>lex:GetIntentVersions</code> action.</p> fn get_intent_versions( &self, input: GetIntentVersionsRequest, ) -> RusotoFuture<GetIntentVersionsResponse, GetIntentVersionsError> { let request_uri = format!("/intents/{name}/versions/", name = input.name); let mut request = SignedRequest::new("GET", "lex", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.set_endpoint_prefix("models.lex".to_string()); let mut params = Params::new(); if let Some(ref x) = input.max_results { params.put("maxResults", x); } if let Some(ref x) = input.next_token { params.put("nextToken", x); } request.set_params(params); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 200 { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<GetIntentVersionsResponse, _>()?; Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(GetIntentVersionsError::from_response(response))), ) } }) } /// <p>Returns intent information as follows: </p> <ul> <li> <p>If you specify the <code>nameContains</code> field, returns the <code>$LATEST</code> version of all intents that contain the specified string.</p> </li> <li> <p> If you don't specify the <code>nameContains</code> field, returns information about the <code>$LATEST</code> version of all intents. </p> </li> </ul> <p> The operation requires permission for the <code>lex:GetIntents</code> action. </p> fn get_intents( &self, input: GetIntentsRequest, ) -> RusotoFuture<GetIntentsResponse, GetIntentsError> { let request_uri = "/intents/"; let mut request = SignedRequest::new("GET", "lex", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.set_endpoint_prefix("models.lex".to_string()); let mut params = Params::new(); if let Some(ref x) = input.max_results { params.put("maxResults", x); } if let Some(ref x) = input.name_contains { params.put("nameContains", x); } if let Some(ref x) = input.next_token { params.put("nextToken", x); } request.set_params(params); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 200 { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<GetIntentsResponse, _>()?; Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(GetIntentsError::from_response(response))), ) } }) } /// <p>Returns information about a specific version of a slot type. In addition to specifying the slot type name, you must specify the slot type version.</p> <p>This operation requires permissions for the <code>lex:GetSlotType</code> action.</p> fn get_slot_type( &self, input: GetSlotTypeRequest, ) -> RusotoFuture<GetSlotTypeResponse, GetSlotTypeError> { let request_uri = format!( "/slottypes/{name}/versions/{version}", name = input.name, version = input.version ); let mut request = SignedRequest::new("GET", "lex", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.set_endpoint_prefix("models.lex".to_string()); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 200 { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<GetSlotTypeResponse, _>()?; Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(GetSlotTypeError::from_response(response))), ) } }) } /// <p>Gets information about all versions of a slot type.</p> <p>The <code>GetSlotTypeVersions</code> operation returns a <code>SlotTypeMetadata</code> object for each version of a slot type. For example, if a slot type has three numbered versions, the <code>GetSlotTypeVersions</code> operation returns four <code>SlotTypeMetadata</code> objects in the response, one for each numbered version and one for the <code>$LATEST</code> version. </p> <p>The <code>GetSlotTypeVersions</code> operation always returns at least one version, the <code>$LATEST</code> version.</p> <p>This operation requires permissions for the <code>lex:GetSlotTypeVersions</code> action.</p> fn get_slot_type_versions( &self, input: GetSlotTypeVersionsRequest, ) -> RusotoFuture<GetSlotTypeVersionsResponse, GetSlotTypeVersionsError> { let request_uri = format!("/slottypes/{name}/versions/", name = input.name); let mut request = SignedRequest::new("GET", "lex", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.set_endpoint_prefix("models.lex".to_string()); let mut params = Params::new(); if let Some(ref x) = input.max_results { params.put("maxResults", x); } if let Some(ref x) = input.next_token { params.put("nextToken", x); } request.set_params(params); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 200 { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<GetSlotTypeVersionsResponse, _>()?; Ok(result) })) } else { Box::new( response.buffer().from_err().and_then(|response| { Err(GetSlotTypeVersionsError::from_response(response)) }), ) } }) } /// <p>Returns slot type information as follows: </p> <ul> <li> <p>If you specify the <code>nameContains</code> field, returns the <code>$LATEST</code> version of all slot types that contain the specified string.</p> </li> <li> <p> If you don't specify the <code>nameContains</code> field, returns information about the <code>$LATEST</code> version of all slot types. </p> </li> </ul> <p> The operation requires permission for the <code>lex:GetSlotTypes</code> action. </p> fn get_slot_types( &self, input: GetSlotTypesRequest, ) -> RusotoFuture<GetSlotTypesResponse, GetSlotTypesError> { let request_uri = "/slottypes/"; let mut request = SignedRequest::new("GET", "lex", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.set_endpoint_prefix("models.lex".to_string()); let mut params = Params::new(); if let Some(ref x) = input.max_results { params.put("maxResults", x); } if let Some(ref x) = input.name_contains { params.put("nameContains", x); } if let Some(ref x) = input.next_token { params.put("nextToken", x); } request.set_params(params); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 200 { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<GetSlotTypesResponse, _>()?; Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(GetSlotTypesError::from_response(response))), ) } }) } /// <p>Use the <code>GetUtterancesView</code> operation to get information about the utterances that your users have made to your bot. You can use this list to tune the utterances that your bot responds to.</p> <p>For example, say that you have created a bot to order flowers. After your users have used your bot for a while, use the <code>GetUtterancesView</code> operation to see the requests that they have made and whether they have been successful. You might find that the utterance "I want flowers" is not being recognized. You could add this utterance to the <code>OrderFlowers</code> intent so that your bot recognizes that utterance.</p> <p>After you publish a new version of a bot, you can get information about the old version and the new so that you can compare the performance across the two versions. </p> <note> <p>Utterance statistics are generated once a day. Data is available for the last 15 days. You can request information for up to 5 versions in each request. The response contains information about a maximum of 100 utterances for each version.</p> </note> <p>This operation requires permissions for the <code>lex:GetUtterancesView</code> action.</p> fn get_utterances_view( &self, input: GetUtterancesViewRequest, ) -> RusotoFuture<GetUtterancesViewResponse, GetUtterancesViewError> { let request_uri = format!("/bots/{botname}/utterances", botname = input.bot_name); let mut request = SignedRequest::new("GET", "lex", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.set_endpoint_prefix("models.lex".to_string()); let mut params = Params::new(); for item in input.bot_versions.iter() { params.put("bot_versions", item); } params.put("status_type", &input.status_type); params.put("view", "aggregation"); request.set_params(params); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 200 { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<GetUtterancesViewResponse, _>()?; Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(GetUtterancesViewError::from_response(response))), ) } }) } /// <p>Creates an Amazon Lex conversational bot or replaces an existing bot. When you create or update a bot you are only required to specify a name, a locale, and whether the bot is directed toward children under age 13. You can use this to add intents later, or to remove intents from an existing bot. When you create a bot with the minimum information, the bot is created or updated but Amazon Lex returns the <code/> response <code>FAILED</code>. You can build the bot after you add one or more intents. For more information about Amazon Lex bots, see <a>how-it-works</a>. </p> <p>If you specify the name of an existing bot, the fields in the request replace the existing values in the <code>$LATEST</code> version of the bot. Amazon Lex removes any fields that you don't provide values for in the request, except for the <code>idleTTLInSeconds</code> and <code>privacySettings</code> fields, which are set to their default values. If you don't specify values for required fields, Amazon Lex throws an exception.</p> <p>This operation requires permissions for the <code>lex:PutBot</code> action. For more information, see <a>auth-and-access-control</a>.</p> fn put_bot(&self, input: PutBotRequest) -> RusotoFuture<PutBotResponse, PutBotError> { let request_uri = format!("/bots/{name}/versions/$LATEST", name = input.name); let mut request = SignedRequest::new("PUT", "lex", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.set_endpoint_prefix("models.lex".to_string()); let encoded = Some(serde_json::to_vec(&input).unwrap()); request.set_payload(encoded); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 200 { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<PutBotResponse, _>()?; Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(PutBotError::from_response(response))), ) } }) } /// <p>Creates an alias for the specified version of the bot or replaces an alias for the specified bot. To change the version of the bot that the alias points to, replace the alias. For more information about aliases, see <a>versioning-aliases</a>.</p> <p>This operation requires permissions for the <code>lex:PutBotAlias</code> action. </p> fn put_bot_alias( &self, input: PutBotAliasRequest, ) -> RusotoFuture<PutBotAliasResponse, PutBotAliasError> { let request_uri = format!( "/bots/{bot_name}/aliases/{name}", bot_name = input.bot_name, name = input.name ); let mut request = SignedRequest::new("PUT", "lex", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.set_endpoint_prefix("models.lex".to_string()); let encoded = Some(serde_json::to_vec(&input).unwrap()); request.set_payload(encoded); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 200 { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<PutBotAliasResponse, _>()?; Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(PutBotAliasError::from_response(response))), ) } }) } /// <p>Creates an intent or replaces an existing intent.</p> <p>To define the interaction between the user and your bot, you use one or more intents. For a pizza ordering bot, for example, you would create an <code>OrderPizza</code> intent. </p> <p>To create an intent or replace an existing intent, you must provide the following:</p> <ul> <li> <p>Intent name. For example, <code>OrderPizza</code>.</p> </li> <li> <p>Sample utterances. For example, "Can I order a pizza, please." and "I want to order a pizza."</p> </li> <li> <p>Information to be gathered. You specify slot types for the information that your bot will request from the user. You can specify standard slot types, such as a date or a time, or custom slot types such as the size and crust of a pizza.</p> </li> <li> <p>How the intent will be fulfilled. You can provide a Lambda function or configure the intent to return the intent information to the client application. If you use a Lambda function, when all of the intent information is available, Amazon Lex invokes your Lambda function. If you configure your intent to return the intent information to the client application. </p> </li> </ul> <p>You can specify other optional information in the request, such as:</p> <ul> <li> <p>A confirmation prompt to ask the user to confirm an intent. For example, "Shall I order your pizza?"</p> </li> <li> <p>A conclusion statement to send to the user after the intent has been fulfilled. For example, "I placed your pizza order."</p> </li> <li> <p>A follow-up prompt that asks the user for additional activity. For example, asking "Do you want to order a drink with your pizza?"</p> </li> </ul> <p>If you specify an existing intent name to update the intent, Amazon Lex replaces the values in the <code>$LATEST</code> version of the intent with the values in the request. Amazon Lex removes fields that you don't provide in the request. If you don't specify the required fields, Amazon Lex throws an exception. When you update the <code>$LATEST</code> version of an intent, the <code>status</code> field of any bot that uses the <code>$LATEST</code> version of the intent is set to <code>NOT_BUILT</code>.</p> <p>For more information, see <a>how-it-works</a>.</p> <p>This operation requires permissions for the <code>lex:PutIntent</code> action.</p> fn put_intent( &self, input: PutIntentRequest, ) -> RusotoFuture<PutIntentResponse, PutIntentError> { let request_uri = format!("/intents/{name}/versions/$LATEST", name = input.name); let mut request = SignedRequest::new("PUT", "lex", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.set_endpoint_prefix("models.lex".to_string()); let encoded = Some(serde_json::to_vec(&input).unwrap()); request.set_payload(encoded); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 200 { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<PutIntentResponse, _>()?; Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(PutIntentError::from_response(response))), ) } }) } /// <p>Creates a custom slot type or replaces an existing custom slot type.</p> <p>To create a custom slot type, specify a name for the slot type and a set of enumeration values, which are the values that a slot of this type can assume. For more information, see <a>how-it-works</a>.</p> <p>If you specify the name of an existing slot type, the fields in the request replace the existing values in the <code>$LATEST</code> version of the slot type. Amazon Lex removes the fields that you don't provide in the request. If you don't specify required fields, Amazon Lex throws an exception. When you update the <code>$LATEST</code> version of a slot type, if a bot uses the <code>$LATEST</code> version of an intent that contains the slot type, the bot's <code>status</code> field is set to <code>NOT_BUILT</code>.</p> <p>This operation requires permissions for the <code>lex:PutSlotType</code> action.</p> fn put_slot_type( &self, input: PutSlotTypeRequest, ) -> RusotoFuture<PutSlotTypeResponse, PutSlotTypeError> { let request_uri = format!("/slottypes/{name}/versions/$LATEST", name = input.name); let mut request = SignedRequest::new("PUT", "lex", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.set_endpoint_prefix("models.lex".to_string()); let encoded = Some(serde_json::to_vec(&input).unwrap()); request.set_payload(encoded); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 200 { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<PutSlotTypeResponse, _>()?; Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(PutSlotTypeError::from_response(response))), ) } }) } /// <p>Starts a job to import a resource to Amazon Lex.</p> fn start_import( &self, input: StartImportRequest, ) -> RusotoFuture<StartImportResponse, StartImportError> { let request_uri = "/imports/"; let mut request = SignedRequest::new("POST", "lex", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.set_endpoint_prefix("models.lex".to_string()); let encoded = Some(serde_json::to_vec(&input).unwrap()); request.set_payload(encoded); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 201 { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<StartImportResponse, _>()?; Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(StartImportError::from_response(response))), ) } }) } }