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
|
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package lexruntimeservice
import (
"fmt"
"io"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/awsutil"
"github.com/aws/aws-sdk-go/aws/request"
"github.com/aws/aws-sdk-go/aws/signer/v4"
"github.com/aws/aws-sdk-go/private/protocol"
)
const opDeleteSession = "DeleteSession"
// DeleteSessionRequest generates a "aws/request.Request" representing the
// client's request for the DeleteSession operation. The "output" return
// value will be populated with the request's response once the request completes
// successfully.
//
// Use "Send" method on the returned Request to send the API call to the service.
// the "output" return value is not valid until after Send returns without error.
//
// See DeleteSession for more information on using the DeleteSession
// API call, and error handling.
//
// This method is useful when you want to inject custom logic or configuration
// into the SDK's request lifecycle. Such as custom headers, or retry logic.
//
// // Example sending a request using the DeleteSessionRequest method.
// req, resp := client.DeleteSessionRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/runtime.lex-2016-11-28/DeleteSession
func (c *LexRuntimeService) DeleteSessionRequest(input *DeleteSessionInput) (req *request.Request, output *DeleteSessionOutput) {
op := &request.Operation{
Name: opDeleteSession,
HTTPMethod: "DELETE",
HTTPPath: "/bot/{botName}/alias/{botAlias}/user/{userId}/session",
}
if input == nil {
input = &DeleteSessionInput{}
}
output = &DeleteSessionOutput{}
req = c.newRequest(op, input, output)
return
}
// DeleteSession API operation for Amazon Lex Runtime Service.
//
// Removes session information for a specified bot, alias, and user ID.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Lex Runtime Service's
// API operation DeleteSession for usage and error information.
//
// Returned Error Types:
//
// - NotFoundException
// The resource (such as the Amazon Lex bot or an alias) that is referred to
// is not found.
//
// - BadRequestException
// Request validation failed, there is no usable message in the context, or
// the bot build failed, is still in progress, or contains unbuilt changes.
//
// - LimitExceededException
// Exceeded a limit.
//
// - InternalFailureException
// Internal service error. Retry the call.
//
// - ConflictException
// Two clients are using the same AWS account, Amazon Lex bot, and user ID.
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/runtime.lex-2016-11-28/DeleteSession
func (c *LexRuntimeService) DeleteSession(input *DeleteSessionInput) (*DeleteSessionOutput, error) {
req, out := c.DeleteSessionRequest(input)
return out, req.Send()
}
// DeleteSessionWithContext is the same as DeleteSession with the addition of
// the ability to pass a context and additional request options.
//
// See DeleteSession for details on how to use this API operation.
//
// The context must be non-nil and will be used for request cancellation. If
// the context is nil a panic will occur. In the future the SDK may create
// sub-contexts for http.Requests. See https://golang.org/pkg/context/
// for more information on using Contexts.
func (c *LexRuntimeService) DeleteSessionWithContext(ctx aws.Context, input *DeleteSessionInput, opts ...request.Option) (*DeleteSessionOutput, error) {
req, out := c.DeleteSessionRequest(input)
req.SetContext(ctx)
req.ApplyOptions(opts...)
return out, req.Send()
}
const opGetSession = "GetSession"
// GetSessionRequest generates a "aws/request.Request" representing the
// client's request for the GetSession operation. The "output" return
// value will be populated with the request's response once the request completes
// successfully.
//
// Use "Send" method on the returned Request to send the API call to the service.
// the "output" return value is not valid until after Send returns without error.
//
// See GetSession for more information on using the GetSession
// API call, and error handling.
//
// This method is useful when you want to inject custom logic or configuration
// into the SDK's request lifecycle. Such as custom headers, or retry logic.
//
// // Example sending a request using the GetSessionRequest method.
// req, resp := client.GetSessionRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/runtime.lex-2016-11-28/GetSession
func (c *LexRuntimeService) GetSessionRequest(input *GetSessionInput) (req *request.Request, output *GetSessionOutput) {
op := &request.Operation{
Name: opGetSession,
HTTPMethod: "GET",
HTTPPath: "/bot/{botName}/alias/{botAlias}/user/{userId}/session/",
}
if input == nil {
input = &GetSessionInput{}
}
output = &GetSessionOutput{}
req = c.newRequest(op, input, output)
return
}
// GetSession API operation for Amazon Lex Runtime Service.
//
// Returns session information for a specified bot, alias, and user ID.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Lex Runtime Service's
// API operation GetSession for usage and error information.
//
// Returned Error Types:
//
// - NotFoundException
// The resource (such as the Amazon Lex bot or an alias) that is referred to
// is not found.
//
// - BadRequestException
// Request validation failed, there is no usable message in the context, or
// the bot build failed, is still in progress, or contains unbuilt changes.
//
// - LimitExceededException
// Exceeded a limit.
//
// - InternalFailureException
// Internal service error. Retry the call.
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/runtime.lex-2016-11-28/GetSession
func (c *LexRuntimeService) GetSession(input *GetSessionInput) (*GetSessionOutput, error) {
req, out := c.GetSessionRequest(input)
return out, req.Send()
}
// GetSessionWithContext is the same as GetSession with the addition of
// the ability to pass a context and additional request options.
//
// See GetSession for details on how to use this API operation.
//
// The context must be non-nil and will be used for request cancellation. If
// the context is nil a panic will occur. In the future the SDK may create
// sub-contexts for http.Requests. See https://golang.org/pkg/context/
// for more information on using Contexts.
func (c *LexRuntimeService) GetSessionWithContext(ctx aws.Context, input *GetSessionInput, opts ...request.Option) (*GetSessionOutput, error) {
req, out := c.GetSessionRequest(input)
req.SetContext(ctx)
req.ApplyOptions(opts...)
return out, req.Send()
}
const opPostContent = "PostContent"
// PostContentRequest generates a "aws/request.Request" representing the
// client's request for the PostContent operation. The "output" return
// value will be populated with the request's response once the request completes
// successfully.
//
// Use "Send" method on the returned Request to send the API call to the service.
// the "output" return value is not valid until after Send returns without error.
//
// See PostContent for more information on using the PostContent
// API call, and error handling.
//
// This method is useful when you want to inject custom logic or configuration
// into the SDK's request lifecycle. Such as custom headers, or retry logic.
//
// // Example sending a request using the PostContentRequest method.
// req, resp := client.PostContentRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/runtime.lex-2016-11-28/PostContent
func (c *LexRuntimeService) PostContentRequest(input *PostContentInput) (req *request.Request, output *PostContentOutput) {
op := &request.Operation{
Name: opPostContent,
HTTPMethod: "POST",
HTTPPath: "/bot/{botName}/alias/{botAlias}/user/{userId}/content",
}
if input == nil {
input = &PostContentInput{}
}
output = &PostContentOutput{}
req = c.newRequest(op, input, output)
req.Handlers.Sign.Remove(v4.SignRequestHandler)
handler := v4.BuildNamedHandler("v4.CustomSignerHandler", v4.WithUnsignedPayload)
req.Handlers.Sign.PushFrontNamed(handler)
return
}
// PostContent API operation for Amazon Lex Runtime Service.
//
// Sends user input (text or speech) to Amazon Lex. Clients use this API to
// send text and audio requests to Amazon Lex at runtime. Amazon Lex interprets
// the user input using the machine learning model that it built for the bot.
//
// The PostContent operation supports audio input at 8kHz and 16kHz. You can
// use 8kHz audio to achieve higher speech recognition accuracy in telephone
// audio applications.
//
// In response, Amazon Lex returns the next message to convey to the user. Consider
// the following example messages:
//
// - For a user input "I would like a pizza," Amazon Lex might return a response
// with a message eliciting slot data (for example, PizzaSize): "What size
// pizza would you like?".
//
// - After the user provides all of the pizza order information, Amazon Lex
// might return a response with a message to get user confirmation: "Order
// the pizza?".
//
// - After the user replies "Yes" to the confirmation prompt, Amazon Lex
// might return a conclusion statement: "Thank you, your cheese pizza has
// been ordered.".
//
// Not all Amazon Lex messages require a response from the user. For example,
// conclusion statements do not require a response. Some messages require only
// a yes or no response. In addition to the message, Amazon Lex provides additional
// context about the message in the response that you can use to enhance client
// behavior, such as displaying the appropriate client user interface. Consider
// the following examples:
//
// - If the message is to elicit slot data, Amazon Lex returns the following
// context information: x-amz-lex-dialog-state header set to ElicitSlot x-amz-lex-intent-name
// header set to the intent name in the current context x-amz-lex-slot-to-elicit
// header set to the slot name for which the message is eliciting information
// x-amz-lex-slots header set to a map of slots configured for the intent
// with their current values
//
// - If the message is a confirmation prompt, the x-amz-lex-dialog-state
// header is set to Confirmation and the x-amz-lex-slot-to-elicit header
// is omitted.
//
// - If the message is a clarification prompt configured for the intent,
// indicating that the user intent is not understood, the x-amz-dialog-state
// header is set to ElicitIntent and the x-amz-slot-to-elicit header is omitted.
//
// In addition, Amazon Lex also returns your application-specific sessionAttributes.
// For more information, see Managing Conversation Context (https://docs.aws.amazon.com/lex/latest/dg/context-mgmt.html).
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Lex Runtime Service's
// API operation PostContent for usage and error information.
//
// Returned Error Types:
//
// - NotFoundException
// The resource (such as the Amazon Lex bot or an alias) that is referred to
// is not found.
//
// - BadRequestException
// Request validation failed, there is no usable message in the context, or
// the bot build failed, is still in progress, or contains unbuilt changes.
//
// - LimitExceededException
// Exceeded a limit.
//
// - InternalFailureException
// Internal service error. Retry the call.
//
// - ConflictException
// Two clients are using the same AWS account, Amazon Lex bot, and user ID.
//
// - UnsupportedMediaTypeException
// The Content-Type header (PostContent API) has an invalid value.
//
// - NotAcceptableException
// The accept header in the request does not have a valid value.
//
// - RequestTimeoutException
// The input speech is too long.
//
// - DependencyFailedException
// One of the dependencies, such as AWS Lambda or Amazon Polly, threw an exception.
// For example,
//
// - If Amazon Lex does not have sufficient permissions to call a Lambda
// function.
//
// - If a Lambda function takes longer than 30 seconds to execute.
//
// - If a fulfillment Lambda function returns a Delegate dialog action without
// removing any slot values.
//
// - BadGatewayException
// Either the Amazon Lex bot is still building, or one of the dependent services
// (Amazon Polly, AWS Lambda) failed with an internal service error.
//
// - LoopDetectedException
// This exception is not used.
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/runtime.lex-2016-11-28/PostContent
func (c *LexRuntimeService) PostContent(input *PostContentInput) (*PostContentOutput, error) {
req, out := c.PostContentRequest(input)
return out, req.Send()
}
// PostContentWithContext is the same as PostContent with the addition of
// the ability to pass a context and additional request options.
//
// See PostContent for details on how to use this API operation.
//
// The context must be non-nil and will be used for request cancellation. If
// the context is nil a panic will occur. In the future the SDK may create
// sub-contexts for http.Requests. See https://golang.org/pkg/context/
// for more information on using Contexts.
func (c *LexRuntimeService) PostContentWithContext(ctx aws.Context, input *PostContentInput, opts ...request.Option) (*PostContentOutput, error) {
req, out := c.PostContentRequest(input)
req.SetContext(ctx)
req.ApplyOptions(opts...)
return out, req.Send()
}
const opPostText = "PostText"
// PostTextRequest generates a "aws/request.Request" representing the
// client's request for the PostText operation. The "output" return
// value will be populated with the request's response once the request completes
// successfully.
//
// Use "Send" method on the returned Request to send the API call to the service.
// the "output" return value is not valid until after Send returns without error.
//
// See PostText for more information on using the PostText
// API call, and error handling.
//
// This method is useful when you want to inject custom logic or configuration
// into the SDK's request lifecycle. Such as custom headers, or retry logic.
//
// // Example sending a request using the PostTextRequest method.
// req, resp := client.PostTextRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/runtime.lex-2016-11-28/PostText
func (c *LexRuntimeService) PostTextRequest(input *PostTextInput) (req *request.Request, output *PostTextOutput) {
op := &request.Operation{
Name: opPostText,
HTTPMethod: "POST",
HTTPPath: "/bot/{botName}/alias/{botAlias}/user/{userId}/text",
}
if input == nil {
input = &PostTextInput{}
}
output = &PostTextOutput{}
req = c.newRequest(op, input, output)
return
}
// PostText API operation for Amazon Lex Runtime Service.
//
// Sends user input to Amazon Lex. Client applications can use this API to send
// requests to Amazon Lex at runtime. Amazon Lex then interprets the user input
// using the machine learning model it built for the bot.
//
// In response, Amazon Lex returns the next message to convey to the user an
// optional responseCard to display. Consider the following example messages:
//
// - For a user input "I would like a pizza", Amazon Lex might return a response
// with a message eliciting slot data (for example, PizzaSize): "What size
// pizza would you like?"
//
// - After the user provides all of the pizza order information, Amazon Lex
// might return a response with a message to obtain user confirmation "Proceed
// with the pizza order?".
//
// - After the user replies to a confirmation prompt with a "yes", Amazon
// Lex might return a conclusion statement: "Thank you, your cheese pizza
// has been ordered.".
//
// Not all Amazon Lex messages require a user response. For example, a conclusion
// statement does not require a response. Some messages require only a "yes"
// or "no" user response. In addition to the message, Amazon Lex provides additional
// context about the message in the response that you might use to enhance client
// behavior, for example, to display the appropriate client user interface.
// These are the slotToElicit, dialogState, intentName, and slots fields in
// the response. Consider the following examples:
//
// - If the message is to elicit slot data, Amazon Lex returns the following
// context information: dialogState set to ElicitSlot intentName set to the
// intent name in the current context slotToElicit set to the slot name for
// which the message is eliciting information slots set to a map of slots,
// configured for the intent, with currently known values
//
// - If the message is a confirmation prompt, the dialogState is set to ConfirmIntent
// and SlotToElicit is set to null.
//
// - If the message is a clarification prompt (configured for the intent)
// that indicates that user intent is not understood, the dialogState is
// set to ElicitIntent and slotToElicit is set to null.
//
// In addition, Amazon Lex also returns your application-specific sessionAttributes.
// For more information, see Managing Conversation Context (https://docs.aws.amazon.com/lex/latest/dg/context-mgmt.html).
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Lex Runtime Service's
// API operation PostText for usage and error information.
//
// Returned Error Types:
//
// - NotFoundException
// The resource (such as the Amazon Lex bot or an alias) that is referred to
// is not found.
//
// - BadRequestException
// Request validation failed, there is no usable message in the context, or
// the bot build failed, is still in progress, or contains unbuilt changes.
//
// - LimitExceededException
// Exceeded a limit.
//
// - InternalFailureException
// Internal service error. Retry the call.
//
// - ConflictException
// Two clients are using the same AWS account, Amazon Lex bot, and user ID.
//
// - DependencyFailedException
// One of the dependencies, such as AWS Lambda or Amazon Polly, threw an exception.
// For example,
//
// - If Amazon Lex does not have sufficient permissions to call a Lambda
// function.
//
// - If a Lambda function takes longer than 30 seconds to execute.
//
// - If a fulfillment Lambda function returns a Delegate dialog action without
// removing any slot values.
//
// - BadGatewayException
// Either the Amazon Lex bot is still building, or one of the dependent services
// (Amazon Polly, AWS Lambda) failed with an internal service error.
//
// - LoopDetectedException
// This exception is not used.
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/runtime.lex-2016-11-28/PostText
func (c *LexRuntimeService) PostText(input *PostTextInput) (*PostTextOutput, error) {
req, out := c.PostTextRequest(input)
return out, req.Send()
}
// PostTextWithContext is the same as PostText with the addition of
// the ability to pass a context and additional request options.
//
// See PostText for details on how to use this API operation.
//
// The context must be non-nil and will be used for request cancellation. If
// the context is nil a panic will occur. In the future the SDK may create
// sub-contexts for http.Requests. See https://golang.org/pkg/context/
// for more information on using Contexts.
func (c *LexRuntimeService) PostTextWithContext(ctx aws.Context, input *PostTextInput, opts ...request.Option) (*PostTextOutput, error) {
req, out := c.PostTextRequest(input)
req.SetContext(ctx)
req.ApplyOptions(opts...)
return out, req.Send()
}
const opPutSession = "PutSession"
// PutSessionRequest generates a "aws/request.Request" representing the
// client's request for the PutSession operation. The "output" return
// value will be populated with the request's response once the request completes
// successfully.
//
// Use "Send" method on the returned Request to send the API call to the service.
// the "output" return value is not valid until after Send returns without error.
//
// See PutSession for more information on using the PutSession
// API call, and error handling.
//
// This method is useful when you want to inject custom logic or configuration
// into the SDK's request lifecycle. Such as custom headers, or retry logic.
//
// // Example sending a request using the PutSessionRequest method.
// req, resp := client.PutSessionRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/runtime.lex-2016-11-28/PutSession
func (c *LexRuntimeService) PutSessionRequest(input *PutSessionInput) (req *request.Request, output *PutSessionOutput) {
op := &request.Operation{
Name: opPutSession,
HTTPMethod: "POST",
HTTPPath: "/bot/{botName}/alias/{botAlias}/user/{userId}/session",
}
if input == nil {
input = &PutSessionInput{}
}
output = &PutSessionOutput{}
req = c.newRequest(op, input, output)
return
}
// PutSession API operation for Amazon Lex Runtime Service.
//
// Creates a new session or modifies an existing session with an Amazon Lex
// bot. Use this operation to enable your application to set the state of the
// bot.
//
// For more information, see Managing Sessions (https://docs.aws.amazon.com/lex/latest/dg/how-session-api.html).
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Lex Runtime Service's
// API operation PutSession for usage and error information.
//
// Returned Error Types:
//
// - NotFoundException
// The resource (such as the Amazon Lex bot or an alias) that is referred to
// is not found.
//
// - BadRequestException
// Request validation failed, there is no usable message in the context, or
// the bot build failed, is still in progress, or contains unbuilt changes.
//
// - LimitExceededException
// Exceeded a limit.
//
// - InternalFailureException
// Internal service error. Retry the call.
//
// - ConflictException
// Two clients are using the same AWS account, Amazon Lex bot, and user ID.
//
// - NotAcceptableException
// The accept header in the request does not have a valid value.
//
// - DependencyFailedException
// One of the dependencies, such as AWS Lambda or Amazon Polly, threw an exception.
// For example,
//
// - If Amazon Lex does not have sufficient permissions to call a Lambda
// function.
//
// - If a Lambda function takes longer than 30 seconds to execute.
//
// - If a fulfillment Lambda function returns a Delegate dialog action without
// removing any slot values.
//
// - BadGatewayException
// Either the Amazon Lex bot is still building, or one of the dependent services
// (Amazon Polly, AWS Lambda) failed with an internal service error.
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/runtime.lex-2016-11-28/PutSession
func (c *LexRuntimeService) PutSession(input *PutSessionInput) (*PutSessionOutput, error) {
req, out := c.PutSessionRequest(input)
return out, req.Send()
}
// PutSessionWithContext is the same as PutSession with the addition of
// the ability to pass a context and additional request options.
//
// See PutSession for details on how to use this API operation.
//
// The context must be non-nil and will be used for request cancellation. If
// the context is nil a panic will occur. In the future the SDK may create
// sub-contexts for http.Requests. See https://golang.org/pkg/context/
// for more information on using Contexts.
func (c *LexRuntimeService) PutSessionWithContext(ctx aws.Context, input *PutSessionInput, opts ...request.Option) (*PutSessionOutput, error) {
req, out := c.PutSessionRequest(input)
req.SetContext(ctx)
req.ApplyOptions(opts...)
return out, req.Send()
}
// A context is a variable that contains information about the current state
// of the conversation between a user and Amazon Lex. Context can be set automatically
// by Amazon Lex when an intent is fulfilled, or it can be set at runtime using
// the PutContent, PutText, or PutSession operation.
type ActiveContext struct {
_ struct{} `type:"structure"`
// The name of the context.
//
// Name is a required field
Name *string `locationName:"name" min:"1" type:"string" required:"true"`
// State variables for the current context. You can use these values as default
// values for slots in subsequent events.
//
// Parameters is a required field
Parameters map[string]*string `locationName:"parameters" type:"map" required:"true"`
// The length of time or number of turns that a context remains active.
//
// TimeToLive is a required field
TimeToLive *ActiveContextTimeToLive `locationName:"timeToLive" type:"structure" required:"true"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s ActiveContext) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s ActiveContext) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *ActiveContext) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "ActiveContext"}
if s.Name == nil {
invalidParams.Add(request.NewErrParamRequired("Name"))
}
if s.Name != nil && len(*s.Name) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Name", 1))
}
if s.Parameters == nil {
invalidParams.Add(request.NewErrParamRequired("Parameters"))
}
if s.TimeToLive == nil {
invalidParams.Add(request.NewErrParamRequired("TimeToLive"))
}
if s.TimeToLive != nil {
if err := s.TimeToLive.Validate(); err != nil {
invalidParams.AddNested("TimeToLive", err.(request.ErrInvalidParams))
}
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetName sets the Name field's value.
func (s *ActiveContext) SetName(v string) *ActiveContext {
s.Name = &v
return s
}
// SetParameters sets the Parameters field's value.
func (s *ActiveContext) SetParameters(v map[string]*string) *ActiveContext {
s.Parameters = v
return s
}
// SetTimeToLive sets the TimeToLive field's value.
func (s *ActiveContext) SetTimeToLive(v *ActiveContextTimeToLive) *ActiveContext {
s.TimeToLive = v
return s
}
// The length of time or number of turns that a context remains active.
type ActiveContextTimeToLive struct {
_ struct{} `type:"structure"`
// The number of seconds that the context should be active after it is first
// sent in a PostContent or PostText response. You can set the value between
// 5 and 86,400 seconds (24 hours).
TimeToLiveInSeconds *int64 `locationName:"timeToLiveInSeconds" min:"5" type:"integer"`
// The number of conversation turns that the context should be active. A conversation
// turn is one PostContent or PostText request and the corresponding response
// from Amazon Lex.
TurnsToLive *int64 `locationName:"turnsToLive" min:"1" type:"integer"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s ActiveContextTimeToLive) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s ActiveContextTimeToLive) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *ActiveContextTimeToLive) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "ActiveContextTimeToLive"}
if s.TimeToLiveInSeconds != nil && *s.TimeToLiveInSeconds < 5 {
invalidParams.Add(request.NewErrParamMinValue("TimeToLiveInSeconds", 5))
}
if s.TurnsToLive != nil && *s.TurnsToLive < 1 {
invalidParams.Add(request.NewErrParamMinValue("TurnsToLive", 1))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetTimeToLiveInSeconds sets the TimeToLiveInSeconds field's value.
func (s *ActiveContextTimeToLive) SetTimeToLiveInSeconds(v int64) *ActiveContextTimeToLive {
s.TimeToLiveInSeconds = &v
return s
}
// SetTurnsToLive sets the TurnsToLive field's value.
func (s *ActiveContextTimeToLive) SetTurnsToLive(v int64) *ActiveContextTimeToLive {
s.TurnsToLive = &v
return s
}
// Either the Amazon Lex bot is still building, or one of the dependent services
// (Amazon Polly, AWS Lambda) failed with an internal service error.
type BadGatewayException struct {
_ struct{} `type:"structure"`
RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`
Message_ *string `locationName:"Message" type:"string"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s BadGatewayException) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s BadGatewayException) GoString() string {
return s.String()
}
func newErrorBadGatewayException(v protocol.ResponseMetadata) error {
return &BadGatewayException{
RespMetadata: v,
}
}
// Code returns the exception type name.
func (s *BadGatewayException) Code() string {
return "BadGatewayException"
}
// Message returns the exception's message.
func (s *BadGatewayException) Message() string {
if s.Message_ != nil {
return *s.Message_
}
return ""
}
// OrigErr always returns nil, satisfies awserr.Error interface.
func (s *BadGatewayException) OrigErr() error {
return nil
}
func (s *BadGatewayException) Error() string {
return fmt.Sprintf("%s: %s", s.Code(), s.Message())
}
// Status code returns the HTTP status code for the request's response error.
func (s *BadGatewayException) StatusCode() int {
return s.RespMetadata.StatusCode
}
// RequestID returns the service's response RequestID for request.
func (s *BadGatewayException) RequestID() string {
return s.RespMetadata.RequestID
}
// Request validation failed, there is no usable message in the context, or
// the bot build failed, is still in progress, or contains unbuilt changes.
type BadRequestException struct {
_ struct{} `type:"structure"`
RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`
Message_ *string `locationName:"message" type:"string"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s BadRequestException) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s BadRequestException) GoString() string {
return s.String()
}
func newErrorBadRequestException(v protocol.ResponseMetadata) error {
return &BadRequestException{
RespMetadata: v,
}
}
// Code returns the exception type name.
func (s *BadRequestException) Code() string {
return "BadRequestException"
}
// Message returns the exception's message.
func (s *BadRequestException) Message() string {
if s.Message_ != nil {
return *s.Message_
}
return ""
}
// OrigErr always returns nil, satisfies awserr.Error interface.
func (s *BadRequestException) OrigErr() error {
return nil
}
func (s *BadRequestException) Error() string {
return fmt.Sprintf("%s: %s", s.Code(), s.Message())
}
// Status code returns the HTTP status code for the request's response error.
func (s *BadRequestException) StatusCode() int {
return s.RespMetadata.StatusCode
}
// RequestID returns the service's response RequestID for request.
func (s *BadRequestException) RequestID() string {
return s.RespMetadata.RequestID
}
// Represents an option to be shown on the client platform (Facebook, Slack,
// etc.)
type Button struct {
_ struct{} `type:"structure"`
// Text that is visible to the user on the button.
//
// Text is a required field
Text *string `locationName:"text" min:"1" type:"string" required:"true"`
// The value sent to Amazon Lex when a user chooses the button. For example,
// consider button text "NYC." When the user chooses the button, the value sent
// can be "New York City."
//
// Value is a required field
Value *string `locationName:"value" min:"1" type:"string" required:"true"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s Button) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s Button) GoString() string {
return s.String()
}
// SetText sets the Text field's value.
func (s *Button) SetText(v string) *Button {
s.Text = &v
return s
}
// SetValue sets the Value field's value.
func (s *Button) SetValue(v string) *Button {
s.Value = &v
return s
}
// Two clients are using the same AWS account, Amazon Lex bot, and user ID.
type ConflictException struct {
_ struct{} `type:"structure"`
RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`
Message_ *string `locationName:"message" type:"string"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s ConflictException) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s ConflictException) GoString() string {
return s.String()
}
func newErrorConflictException(v protocol.ResponseMetadata) error {
return &ConflictException{
RespMetadata: v,
}
}
// Code returns the exception type name.
func (s *ConflictException) Code() string {
return "ConflictException"
}
// Message returns the exception's message.
func (s *ConflictException) Message() string {
if s.Message_ != nil {
return *s.Message_
}
return ""
}
// OrigErr always returns nil, satisfies awserr.Error interface.
func (s *ConflictException) OrigErr() error {
return nil
}
func (s *ConflictException) Error() string {
return fmt.Sprintf("%s: %s", s.Code(), s.Message())
}
// Status code returns the HTTP status code for the request's response error.
func (s *ConflictException) StatusCode() int {
return s.RespMetadata.StatusCode
}
// RequestID returns the service's response RequestID for request.
func (s *ConflictException) RequestID() string {
return s.RespMetadata.RequestID
}
type DeleteSessionInput struct {
_ struct{} `type:"structure" nopayload:"true"`
// The alias in use for the bot that contains the session data.
//
// BotAlias is a required field
BotAlias *string `location:"uri" locationName:"botAlias" type:"string" required:"true"`
// The name of the bot that contains the session data.
//
// BotName is a required field
BotName *string `location:"uri" locationName:"botName" type:"string" required:"true"`
// The identifier of the user associated with the session data.
//
// UserId is a required field
UserId *string `location:"uri" locationName:"userId" min:"2" type:"string" required:"true"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s DeleteSessionInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s DeleteSessionInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DeleteSessionInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "DeleteSessionInput"}
if s.BotAlias == nil {
invalidParams.Add(request.NewErrParamRequired("BotAlias"))
}
if s.BotAlias != nil && len(*s.BotAlias) < 1 {
invalidParams.Add(request.NewErrParamMinLen("BotAlias", 1))
}
if s.BotName == nil {
invalidParams.Add(request.NewErrParamRequired("BotName"))
}
if s.BotName != nil && len(*s.BotName) < 1 {
invalidParams.Add(request.NewErrParamMinLen("BotName", 1))
}
if s.UserId == nil {
invalidParams.Add(request.NewErrParamRequired("UserId"))
}
if s.UserId != nil && len(*s.UserId) < 2 {
invalidParams.Add(request.NewErrParamMinLen("UserId", 2))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetBotAlias sets the BotAlias field's value.
func (s *DeleteSessionInput) SetBotAlias(v string) *DeleteSessionInput {
s.BotAlias = &v
return s
}
// SetBotName sets the BotName field's value.
func (s *DeleteSessionInput) SetBotName(v string) *DeleteSessionInput {
s.BotName = &v
return s
}
// SetUserId sets the UserId field's value.
func (s *DeleteSessionInput) SetUserId(v string) *DeleteSessionInput {
s.UserId = &v
return s
}
type DeleteSessionOutput struct {
_ struct{} `type:"structure"`
// The alias in use for the bot associated with the session data.
BotAlias *string `locationName:"botAlias" type:"string"`
// The name of the bot associated with the session data.
BotName *string `locationName:"botName" type:"string"`
// The unique identifier for the session.
SessionId *string `locationName:"sessionId" type:"string"`
// The ID of the client application user.
UserId *string `locationName:"userId" min:"2" type:"string"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s DeleteSessionOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s DeleteSessionOutput) GoString() string {
return s.String()
}
// SetBotAlias sets the BotAlias field's value.
func (s *DeleteSessionOutput) SetBotAlias(v string) *DeleteSessionOutput {
s.BotAlias = &v
return s
}
// SetBotName sets the BotName field's value.
func (s *DeleteSessionOutput) SetBotName(v string) *DeleteSessionOutput {
s.BotName = &v
return s
}
// SetSessionId sets the SessionId field's value.
func (s *DeleteSessionOutput) SetSessionId(v string) *DeleteSessionOutput {
s.SessionId = &v
return s
}
// SetUserId sets the UserId field's value.
func (s *DeleteSessionOutput) SetUserId(v string) *DeleteSessionOutput {
s.UserId = &v
return s
}
// One of the dependencies, such as AWS Lambda or Amazon Polly, threw an exception.
// For example,
//
// - If Amazon Lex does not have sufficient permissions to call a Lambda
// function.
//
// - If a Lambda function takes longer than 30 seconds to execute.
//
// - If a fulfillment Lambda function returns a Delegate dialog action without
// removing any slot values.
type DependencyFailedException struct {
_ struct{} `type:"structure"`
RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`
Message_ *string `locationName:"Message" type:"string"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s DependencyFailedException) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s DependencyFailedException) GoString() string {
return s.String()
}
func newErrorDependencyFailedException(v protocol.ResponseMetadata) error {
return &DependencyFailedException{
RespMetadata: v,
}
}
// Code returns the exception type name.
func (s *DependencyFailedException) Code() string {
return "DependencyFailedException"
}
// Message returns the exception's message.
func (s *DependencyFailedException) Message() string {
if s.Message_ != nil {
return *s.Message_
}
return ""
}
// OrigErr always returns nil, satisfies awserr.Error interface.
func (s *DependencyFailedException) OrigErr() error {
return nil
}
func (s *DependencyFailedException) Error() string {
return fmt.Sprintf("%s: %s", s.Code(), s.Message())
}
// Status code returns the HTTP status code for the request's response error.
func (s *DependencyFailedException) StatusCode() int {
return s.RespMetadata.StatusCode
}
// RequestID returns the service's response RequestID for request.
func (s *DependencyFailedException) RequestID() string {
return s.RespMetadata.RequestID
}
// Describes the next action that the bot should take in its interaction with
// the user and provides information about the context in which the action takes
// place. Use the DialogAction data type to set the interaction to a specific
// state, or to return the interaction to a previous state.
type DialogAction struct {
_ struct{} `type:"structure"`
// The fulfillment state of the intent. The possible values are:
//
// * Failed - The Lambda function associated with the intent failed to fulfill
// the intent.
//
// * Fulfilled - The intent has fulfilled by the Lambda function associated
// with the intent.
//
// * ReadyForFulfillment - All of the information necessary for the intent
// is present and the intent ready to be fulfilled by the client application.
FulfillmentState *string `locationName:"fulfillmentState" type:"string" enum:"FulfillmentState"`
// The name of the intent.
IntentName *string `locationName:"intentName" type:"string"`
// The message that should be shown to the user. If you don't specify a message,
// Amazon Lex will use the message configured for the intent.
//
// Message is a sensitive parameter and its value will be
// replaced with "sensitive" in string returned by DialogAction's
// String and GoString methods.
Message *string `locationName:"message" min:"1" type:"string" sensitive:"true"`
// * PlainText - The message contains plain UTF-8 text.
//
// * CustomPayload - The message is a custom format for the client.
//
// * SSML - The message contains text formatted for voice output.
//
// * Composite - The message contains an escaped JSON object containing one
// or more messages. For more information, see Message Groups (https://docs.aws.amazon.com/lex/latest/dg/howitworks-manage-prompts.html).
MessageFormat *string `locationName:"messageFormat" type:"string" enum:"MessageFormatType"`
// The name of the slot that should be elicited from the user.
SlotToElicit *string `locationName:"slotToElicit" type:"string"`
// Map of the slots that have been gathered and their values.
//
// Slots is a sensitive parameter and its value will be
// replaced with "sensitive" in string returned by DialogAction's
// String and GoString methods.
Slots map[string]*string `locationName:"slots" type:"map" sensitive:"true"`
// The next action that the bot should take in its interaction with the user.
// The possible values are:
//
// * ConfirmIntent - The next action is asking the user if the intent is
// complete and ready to be fulfilled. This is a yes/no question such as
// "Place the order?"
//
// * Close - Indicates that the there will not be a response from the user.
// For example, the statement "Your order has been placed" does not require
// a response.
//
// * Delegate - The next action is determined by Amazon Lex.
//
// * ElicitIntent - The next action is to determine the intent that the user
// wants to fulfill.
//
// * ElicitSlot - The next action is to elicit a slot value from the user.
//
// Type is a required field
Type *string `locationName:"type" type:"string" required:"true" enum:"DialogActionType"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s DialogAction) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s DialogAction) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DialogAction) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "DialogAction"}
if s.Message != nil && len(*s.Message) < 1 {
invalidParams.Add(request.NewErrParamMinLen("Message", 1))
}
if s.Type == nil {
invalidParams.Add(request.NewErrParamRequired("Type"))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetFulfillmentState sets the FulfillmentState field's value.
func (s *DialogAction) SetFulfillmentState(v string) *DialogAction {
s.FulfillmentState = &v
return s
}
// SetIntentName sets the IntentName field's value.
func (s *DialogAction) SetIntentName(v string) *DialogAction {
s.IntentName = &v
return s
}
// SetMessage sets the Message field's value.
func (s *DialogAction) SetMessage(v string) *DialogAction {
s.Message = &v
return s
}
// SetMessageFormat sets the MessageFormat field's value.
func (s *DialogAction) SetMessageFormat(v string) *DialogAction {
s.MessageFormat = &v
return s
}
// SetSlotToElicit sets the SlotToElicit field's value.
func (s *DialogAction) SetSlotToElicit(v string) *DialogAction {
s.SlotToElicit = &v
return s
}
// SetSlots sets the Slots field's value.
func (s *DialogAction) SetSlots(v map[string]*string) *DialogAction {
s.Slots = v
return s
}
// SetType sets the Type field's value.
func (s *DialogAction) SetType(v string) *DialogAction {
s.Type = &v
return s
}
// Represents an option rendered to the user when a prompt is shown. It could
// be an image, a button, a link, or text.
type GenericAttachment struct {
_ struct{} `type:"structure"`
// The URL of an attachment to the response card.
AttachmentLinkUrl *string `locationName:"attachmentLinkUrl" min:"1" type:"string"`
// The list of options to show to the user.
Buttons []*Button `locationName:"buttons" type:"list"`
// The URL of an image that is displayed to the user.
ImageUrl *string `locationName:"imageUrl" min:"1" type:"string"`
// The subtitle shown below the title.
SubTitle *string `locationName:"subTitle" min:"1" type:"string"`
// The title of the option.
Title *string `locationName:"title" min:"1" type:"string"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s GenericAttachment) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s GenericAttachment) GoString() string {
return s.String()
}
// SetAttachmentLinkUrl sets the AttachmentLinkUrl field's value.
func (s *GenericAttachment) SetAttachmentLinkUrl(v string) *GenericAttachment {
s.AttachmentLinkUrl = &v
return s
}
// SetButtons sets the Buttons field's value.
func (s *GenericAttachment) SetButtons(v []*Button) *GenericAttachment {
s.Buttons = v
return s
}
// SetImageUrl sets the ImageUrl field's value.
func (s *GenericAttachment) SetImageUrl(v string) *GenericAttachment {
s.ImageUrl = &v
return s
}
// SetSubTitle sets the SubTitle field's value.
func (s *GenericAttachment) SetSubTitle(v string) *GenericAttachment {
s.SubTitle = &v
return s
}
// SetTitle sets the Title field's value.
func (s *GenericAttachment) SetTitle(v string) *GenericAttachment {
s.Title = &v
return s
}
type GetSessionInput struct {
_ struct{} `type:"structure" nopayload:"true"`
// The alias in use for the bot that contains the session data.
//
// BotAlias is a required field
BotAlias *string `location:"uri" locationName:"botAlias" type:"string" required:"true"`
// The name of the bot that contains the session data.
//
// BotName is a required field
BotName *string `location:"uri" locationName:"botName" type:"string" required:"true"`
// A string used to filter the intents returned in the recentIntentSummaryView
// structure.
//
// When you specify a filter, only intents with their checkpointLabel field
// set to that string are returned.
CheckpointLabelFilter *string `location:"querystring" locationName:"checkpointLabelFilter" min:"1" type:"string"`
// The ID of the client application user. Amazon Lex uses this to identify a
// user's conversation with your bot.
//
// UserId is a required field
UserId *string `location:"uri" locationName:"userId" min:"2" type:"string" required:"true"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s GetSessionInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s GetSessionInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *GetSessionInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "GetSessionInput"}
if s.BotAlias == nil {
invalidParams.Add(request.NewErrParamRequired("BotAlias"))
}
if s.BotAlias != nil && len(*s.BotAlias) < 1 {
invalidParams.Add(request.NewErrParamMinLen("BotAlias", 1))
}
if s.BotName == nil {
invalidParams.Add(request.NewErrParamRequired("BotName"))
}
if s.BotName != nil && len(*s.BotName) < 1 {
invalidParams.Add(request.NewErrParamMinLen("BotName", 1))
}
if s.CheckpointLabelFilter != nil && len(*s.CheckpointLabelFilter) < 1 {
invalidParams.Add(request.NewErrParamMinLen("CheckpointLabelFilter", 1))
}
if s.UserId == nil {
invalidParams.Add(request.NewErrParamRequired("UserId"))
}
if s.UserId != nil && len(*s.UserId) < 2 {
invalidParams.Add(request.NewErrParamMinLen("UserId", 2))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetBotAlias sets the BotAlias field's value.
func (s *GetSessionInput) SetBotAlias(v string) *GetSessionInput {
s.BotAlias = &v
return s
}
// SetBotName sets the BotName field's value.
func (s *GetSessionInput) SetBotName(v string) *GetSessionInput {
s.BotName = &v
return s
}
// SetCheckpointLabelFilter sets the CheckpointLabelFilter field's value.
func (s *GetSessionInput) SetCheckpointLabelFilter(v string) *GetSessionInput {
s.CheckpointLabelFilter = &v
return s
}
// SetUserId sets the UserId field's value.
func (s *GetSessionInput) SetUserId(v string) *GetSessionInput {
s.UserId = &v
return s
}
type GetSessionOutput struct {
_ struct{} `type:"structure"`
// A list of active contexts for the session. A context can be set when an intent
// is fulfilled or by calling the PostContent, PostText, or PutSession operation.
//
// You can use a context to control the intents that can follow up an intent,
// or to modify the operation of your application.
//
// ActiveContexts is a sensitive parameter and its value will be
// replaced with "sensitive" in string returned by GetSessionOutput's
// String and GoString methods.
ActiveContexts []*ActiveContext `locationName:"activeContexts" type:"list" sensitive:"true"`
// Describes the current state of the bot.
DialogAction *DialogAction `locationName:"dialogAction" type:"structure"`
// An array of information about the intents used in the session. The array
// can contain a maximum of three summaries. If more than three intents are
// used in the session, the recentIntentSummaryView operation contains information
// about the last three intents used.
//
// If you set the checkpointLabelFilter parameter in the request, the array
// contains only the intents with the specified label.
RecentIntentSummaryView []*IntentSummary `locationName:"recentIntentSummaryView" type:"list"`
// Map of key/value pairs representing the session-specific context information.
// It contains application information passed between Amazon Lex and a client
// application.
//
// SessionAttributes is a sensitive parameter and its value will be
// replaced with "sensitive" in string returned by GetSessionOutput's
// String and GoString methods.
SessionAttributes map[string]*string `locationName:"sessionAttributes" type:"map" sensitive:"true"`
// A unique identifier for the session.
SessionId *string `locationName:"sessionId" type:"string"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s GetSessionOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s GetSessionOutput) GoString() string {
return s.String()
}
// SetActiveContexts sets the ActiveContexts field's value.
func (s *GetSessionOutput) SetActiveContexts(v []*ActiveContext) *GetSessionOutput {
s.ActiveContexts = v
return s
}
// SetDialogAction sets the DialogAction field's value.
func (s *GetSessionOutput) SetDialogAction(v *DialogAction) *GetSessionOutput {
s.DialogAction = v
return s
}
// SetRecentIntentSummaryView sets the RecentIntentSummaryView field's value.
func (s *GetSessionOutput) SetRecentIntentSummaryView(v []*IntentSummary) *GetSessionOutput {
s.RecentIntentSummaryView = v
return s
}
// SetSessionAttributes sets the SessionAttributes field's value.
func (s *GetSessionOutput) SetSessionAttributes(v map[string]*string) *GetSessionOutput {
s.SessionAttributes = v
return s
}
// SetSessionId sets the SessionId field's value.
func (s *GetSessionOutput) SetSessionId(v string) *GetSessionOutput {
s.SessionId = &v
return s
}
// Provides a score that indicates the confidence that Amazon Lex has that an
// intent is the one that satisfies the user's intent.
type IntentConfidence struct {
_ struct{} `type:"structure"`
// A score that indicates how confident Amazon Lex is that an intent satisfies
// the user's intent. Ranges between 0.00 and 1.00. Higher scores indicate higher
// confidence.
Score *float64 `locationName:"score" type:"double"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s IntentConfidence) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s IntentConfidence) GoString() string {
return s.String()
}
// SetScore sets the Score field's value.
func (s *IntentConfidence) SetScore(v float64) *IntentConfidence {
s.Score = &v
return s
}
// Provides information about the state of an intent. You can use this information
// to get the current state of an intent so that you can process the intent,
// or so that you can return the intent to its previous state.
type IntentSummary struct {
_ struct{} `type:"structure"`
// A user-defined label that identifies a particular intent. You can use this
// label to return to a previous intent.
//
// Use the checkpointLabelFilter parameter of the GetSessionRequest operation
// to filter the intents returned by the operation to those with only the specified
// label.
CheckpointLabel *string `locationName:"checkpointLabel" min:"1" type:"string"`
// The status of the intent after the user responds to the confirmation prompt.
// If the user confirms the intent, Amazon Lex sets this field to Confirmed.
// If the user denies the intent, Amazon Lex sets this value to Denied. The
// possible values are:
//
// * Confirmed - The user has responded "Yes" to the confirmation prompt,
// confirming that the intent is complete and that it is ready to be fulfilled.
//
// * Denied - The user has responded "No" to the confirmation prompt.
//
// * None - The user has never been prompted for confirmation; or, the user
// was prompted but did not confirm or deny the prompt.
ConfirmationStatus *string `locationName:"confirmationStatus" type:"string" enum:"ConfirmationStatus"`
// The next action that the bot should take in its interaction with the user.
// The possible values are:
//
// * ConfirmIntent - The next action is asking the user if the intent is
// complete and ready to be fulfilled. This is a yes/no question such as
// "Place the order?"
//
// * Close - Indicates that the there will not be a response from the user.
// For example, the statement "Your order has been placed" does not require
// a response.
//
// * ElicitIntent - The next action is to determine the intent that the user
// wants to fulfill.
//
// * ElicitSlot - The next action is to elicit a slot value from the user.
//
// DialogActionType is a required field
DialogActionType *string `locationName:"dialogActionType" type:"string" required:"true" enum:"DialogActionType"`
// The fulfillment state of the intent. The possible values are:
//
// * Failed - The Lambda function associated with the intent failed to fulfill
// the intent.
//
// * Fulfilled - The intent has fulfilled by the Lambda function associated
// with the intent.
//
// * ReadyForFulfillment - All of the information necessary for the intent
// is present and the intent ready to be fulfilled by the client application.
FulfillmentState *string `locationName:"fulfillmentState" type:"string" enum:"FulfillmentState"`
// The name of the intent.
IntentName *string `locationName:"intentName" type:"string"`
// The next slot to elicit from the user. If there is not slot to elicit, the
// field is blank.
SlotToElicit *string `locationName:"slotToElicit" type:"string"`
// Map of the slots that have been gathered and their values.
//
// Slots is a sensitive parameter and its value will be
// replaced with "sensitive" in string returned by IntentSummary's
// String and GoString methods.
Slots map[string]*string `locationName:"slots" type:"map" sensitive:"true"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s IntentSummary) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s IntentSummary) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *IntentSummary) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "IntentSummary"}
if s.CheckpointLabel != nil && len(*s.CheckpointLabel) < 1 {
invalidParams.Add(request.NewErrParamMinLen("CheckpointLabel", 1))
}
if s.DialogActionType == nil {
invalidParams.Add(request.NewErrParamRequired("DialogActionType"))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetCheckpointLabel sets the CheckpointLabel field's value.
func (s *IntentSummary) SetCheckpointLabel(v string) *IntentSummary {
s.CheckpointLabel = &v
return s
}
// SetConfirmationStatus sets the ConfirmationStatus field's value.
func (s *IntentSummary) SetConfirmationStatus(v string) *IntentSummary {
s.ConfirmationStatus = &v
return s
}
// SetDialogActionType sets the DialogActionType field's value.
func (s *IntentSummary) SetDialogActionType(v string) *IntentSummary {
s.DialogActionType = &v
return s
}
// SetFulfillmentState sets the FulfillmentState field's value.
func (s *IntentSummary) SetFulfillmentState(v string) *IntentSummary {
s.FulfillmentState = &v
return s
}
// SetIntentName sets the IntentName field's value.
func (s *IntentSummary) SetIntentName(v string) *IntentSummary {
s.IntentName = &v
return s
}
// SetSlotToElicit sets the SlotToElicit field's value.
func (s *IntentSummary) SetSlotToElicit(v string) *IntentSummary {
s.SlotToElicit = &v
return s
}
// SetSlots sets the Slots field's value.
func (s *IntentSummary) SetSlots(v map[string]*string) *IntentSummary {
s.Slots = v
return s
}
// Internal service error. Retry the call.
type InternalFailureException struct {
_ struct{} `type:"structure"`
RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`
Message_ *string `locationName:"message" type:"string"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s InternalFailureException) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s InternalFailureException) GoString() string {
return s.String()
}
func newErrorInternalFailureException(v protocol.ResponseMetadata) error {
return &InternalFailureException{
RespMetadata: v,
}
}
// Code returns the exception type name.
func (s *InternalFailureException) Code() string {
return "InternalFailureException"
}
// Message returns the exception's message.
func (s *InternalFailureException) Message() string {
if s.Message_ != nil {
return *s.Message_
}
return ""
}
// OrigErr always returns nil, satisfies awserr.Error interface.
func (s *InternalFailureException) OrigErr() error {
return nil
}
func (s *InternalFailureException) Error() string {
return fmt.Sprintf("%s: %s", s.Code(), s.Message())
}
// Status code returns the HTTP status code for the request's response error.
func (s *InternalFailureException) StatusCode() int {
return s.RespMetadata.StatusCode
}
// RequestID returns the service's response RequestID for request.
func (s *InternalFailureException) RequestID() string {
return s.RespMetadata.RequestID
}
// Exceeded a limit.
type LimitExceededException struct {
_ struct{} `type:"structure"`
RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`
Message_ *string `locationName:"message" type:"string"`
RetryAfterSeconds *string `location:"header" locationName:"Retry-After" type:"string"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s LimitExceededException) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s LimitExceededException) GoString() string {
return s.String()
}
func newErrorLimitExceededException(v protocol.ResponseMetadata) error {
return &LimitExceededException{
RespMetadata: v,
}
}
// Code returns the exception type name.
func (s *LimitExceededException) Code() string {
return "LimitExceededException"
}
// Message returns the exception's message.
func (s *LimitExceededException) Message() string {
if s.Message_ != nil {
return *s.Message_
}
return ""
}
// OrigErr always returns nil, satisfies awserr.Error interface.
func (s *LimitExceededException) OrigErr() error {
return nil
}
func (s *LimitExceededException) Error() string {
return fmt.Sprintf("%s: %s\n%s", s.Code(), s.Message(), s.String())
}
// Status code returns the HTTP status code for the request's response error.
func (s *LimitExceededException) StatusCode() int {
return s.RespMetadata.StatusCode
}
// RequestID returns the service's response RequestID for request.
func (s *LimitExceededException) RequestID() string {
return s.RespMetadata.RequestID
}
// This exception is not used.
type LoopDetectedException struct {
_ struct{} `type:"structure"`
RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`
Message_ *string `locationName:"Message" type:"string"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s LoopDetectedException) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s LoopDetectedException) GoString() string {
return s.String()
}
func newErrorLoopDetectedException(v protocol.ResponseMetadata) error {
return &LoopDetectedException{
RespMetadata: v,
}
}
// Code returns the exception type name.
func (s *LoopDetectedException) Code() string {
return "LoopDetectedException"
}
// Message returns the exception's message.
func (s *LoopDetectedException) Message() string {
if s.Message_ != nil {
return *s.Message_
}
return ""
}
// OrigErr always returns nil, satisfies awserr.Error interface.
func (s *LoopDetectedException) OrigErr() error {
return nil
}
func (s *LoopDetectedException) Error() string {
return fmt.Sprintf("%s: %s", s.Code(), s.Message())
}
// Status code returns the HTTP status code for the request's response error.
func (s *LoopDetectedException) StatusCode() int {
return s.RespMetadata.StatusCode
}
// RequestID returns the service's response RequestID for request.
func (s *LoopDetectedException) RequestID() string {
return s.RespMetadata.RequestID
}
// The accept header in the request does not have a valid value.
type NotAcceptableException struct {
_ struct{} `type:"structure"`
RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`
Message_ *string `locationName:"message" type:"string"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s NotAcceptableException) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s NotAcceptableException) GoString() string {
return s.String()
}
func newErrorNotAcceptableException(v protocol.ResponseMetadata) error {
return &NotAcceptableException{
RespMetadata: v,
}
}
// Code returns the exception type name.
func (s *NotAcceptableException) Code() string {
return "NotAcceptableException"
}
// Message returns the exception's message.
func (s *NotAcceptableException) Message() string {
if s.Message_ != nil {
return *s.Message_
}
return ""
}
// OrigErr always returns nil, satisfies awserr.Error interface.
func (s *NotAcceptableException) OrigErr() error {
return nil
}
func (s *NotAcceptableException) Error() string {
return fmt.Sprintf("%s: %s", s.Code(), s.Message())
}
// Status code returns the HTTP status code for the request's response error.
func (s *NotAcceptableException) StatusCode() int {
return s.RespMetadata.StatusCode
}
// RequestID returns the service's response RequestID for request.
func (s *NotAcceptableException) RequestID() string {
return s.RespMetadata.RequestID
}
// The resource (such as the Amazon Lex bot or an alias) that is referred to
// is not found.
type NotFoundException struct {
_ struct{} `type:"structure"`
RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`
Message_ *string `locationName:"message" type:"string"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s NotFoundException) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s NotFoundException) GoString() string {
return s.String()
}
func newErrorNotFoundException(v protocol.ResponseMetadata) error {
return &NotFoundException{
RespMetadata: v,
}
}
// Code returns the exception type name.
func (s *NotFoundException) Code() string {
return "NotFoundException"
}
// Message returns the exception's message.
func (s *NotFoundException) Message() string {
if s.Message_ != nil {
return *s.Message_
}
return ""
}
// OrigErr always returns nil, satisfies awserr.Error interface.
func (s *NotFoundException) OrigErr() error {
return nil
}
func (s *NotFoundException) Error() string {
return fmt.Sprintf("%s: %s", s.Code(), s.Message())
}
// Status code returns the HTTP status code for the request's response error.
func (s *NotFoundException) StatusCode() int {
return s.RespMetadata.StatusCode
}
// RequestID returns the service's response RequestID for request.
func (s *NotFoundException) RequestID() string {
return s.RespMetadata.RequestID
}
type PostContentInput struct {
_ struct{} `type:"structure" payload:"InputStream"`
// You pass this value as the Accept HTTP header.
//
// The message Amazon Lex returns in the response can be either text or speech
// based on the Accept HTTP header value in the request.
//
// * If the value is text/plain; charset=utf-8, Amazon Lex returns text in
// the response.
//
// * If the value begins with audio/, Amazon Lex returns speech in the response.
// Amazon Lex uses Amazon Polly to generate the speech (using the configuration
// you specified in the Accept header). For example, if you specify audio/mpeg
// as the value, Amazon Lex returns speech in the MPEG format.
//
// * If the value is audio/pcm, the speech returned is audio/pcm in 16-bit,
// little endian format.
//
// * The following are the accepted values: audio/mpeg audio/ogg audio/pcm
// text/plain; charset=utf-8 audio/* (defaults to mpeg)
Accept *string `location:"header" locationName:"Accept" type:"string"`
// A list of contexts active for the request. A context can be activated when
// a previous intent is fulfilled, or by including the context in the request,
//
// If you don't specify a list of contexts, Amazon Lex will use the current
// list of contexts for the session. If you specify an empty list, all contexts
// for the session are cleared.
//
// ActiveContexts is a sensitive parameter and its value will be
// replaced with "sensitive" in string returned by PostContentInput's
// String and GoString methods.
ActiveContexts *string `location:"header" locationName:"x-amz-lex-active-contexts" type:"string" suppressedJSONValue:"true" sensitive:"true"`
// Alias of the Amazon Lex bot.
//
// BotAlias is a required field
BotAlias *string `location:"uri" locationName:"botAlias" type:"string" required:"true"`
// Name of the Amazon Lex bot.
//
// BotName is a required field
BotName *string `location:"uri" locationName:"botName" type:"string" required:"true"`
// You pass this value as the Content-Type HTTP header.
//
// Indicates the audio format or text. The header value must start with one
// of the following prefixes:
//
// * PCM format, audio data must be in little-endian byte order. audio/l16;
// rate=16000; channels=1 audio/x-l16; sample-rate=16000; channel-count=1
// audio/lpcm; sample-rate=8000; sample-size-bits=16; channel-count=1; is-big-endian=false
//
// * Opus format audio/x-cbr-opus-with-preamble; preamble-size=0; bit-rate=256000;
// frame-size-milliseconds=4
//
// * Text format text/plain; charset=utf-8
//
// ContentType is a required field
ContentType *string `location:"header" locationName:"Content-Type" type:"string" required:"true"`
// User input in PCM or Opus audio format or text format as described in the
// Content-Type HTTP header.
//
// You can stream audio data to Amazon Lex or you can create a local buffer
// that captures all of the audio data before sending. In general, you get better
// performance if you stream audio data rather than buffering the data locally.
//
// To use an non-seekable io.Reader for this request wrap the io.Reader with
// "aws.ReadSeekCloser". The SDK will not retry request errors for non-seekable
// readers. This will allow the SDK to send the reader's payload as chunked
// transfer encoding.
//
// InputStream is a required field
InputStream io.ReadSeeker `locationName:"inputStream" type:"blob" required:"true"`
// You pass this value as the x-amz-lex-request-attributes HTTP header.
//
// Request-specific information passed between Amazon Lex and a client application.
// The value must be a JSON serialized and base64 encoded map with string keys
// and values. The total size of the requestAttributes and sessionAttributes
// headers is limited to 12 KB.
//
// The namespace x-amz-lex: is reserved for special attributes. Don't create
// any request attributes with the prefix x-amz-lex:.
//
// For more information, see Setting Request Attributes (https://docs.aws.amazon.com/lex/latest/dg/context-mgmt.html#context-mgmt-request-attribs).
RequestAttributes aws.JSONValue `location:"header" locationName:"x-amz-lex-request-attributes" type:"jsonvalue"`
// You pass this value as the x-amz-lex-session-attributes HTTP header.
//
// Application-specific information passed between Amazon Lex and a client application.
// The value must be a JSON serialized and base64 encoded map with string keys
// and values. The total size of the sessionAttributes and requestAttributes
// headers is limited to 12 KB.
//
// For more information, see Setting Session Attributes (https://docs.aws.amazon.com/lex/latest/dg/context-mgmt.html#context-mgmt-session-attribs).
SessionAttributes aws.JSONValue `location:"header" locationName:"x-amz-lex-session-attributes" type:"jsonvalue"`
// The ID of the client application user. Amazon Lex uses this to identify a
// user's conversation with your bot. At runtime, each request must contain
// the userID field.
//
// To decide the user ID to use for your application, consider the following
// factors.
//
// * The userID field must not contain any personally identifiable information
// of the user, for example, name, personal identification numbers, or other
// end user personal information.
//
// * If you want a user to start a conversation on one device and continue
// on another device, use a user-specific identifier.
//
// * If you want the same user to be able to have two independent conversations
// on two different devices, choose a device-specific identifier.
//
// * A user can't have two independent conversations with two different versions
// of the same bot. For example, a user can't have a conversation with the
// PROD and BETA versions of the same bot. If you anticipate that a user
// will need to have conversation with two different versions, for example,
// while testing, include the bot alias in the user ID to separate the two
// conversations.
//
// UserId is a required field
UserId *string `location:"uri" locationName:"userId" min:"2" type:"string" required:"true"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s PostContentInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s PostContentInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *PostContentInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "PostContentInput"}
if s.BotAlias == nil {
invalidParams.Add(request.NewErrParamRequired("BotAlias"))
}
if s.BotAlias != nil && len(*s.BotAlias) < 1 {
invalidParams.Add(request.NewErrParamMinLen("BotAlias", 1))
}
if s.BotName == nil {
invalidParams.Add(request.NewErrParamRequired("BotName"))
}
if s.BotName != nil && len(*s.BotName) < 1 {
invalidParams.Add(request.NewErrParamMinLen("BotName", 1))
}
if s.ContentType == nil {
invalidParams.Add(request.NewErrParamRequired("ContentType"))
}
if s.InputStream == nil {
invalidParams.Add(request.NewErrParamRequired("InputStream"))
}
if s.UserId == nil {
invalidParams.Add(request.NewErrParamRequired("UserId"))
}
if s.UserId != nil && len(*s.UserId) < 2 {
invalidParams.Add(request.NewErrParamMinLen("UserId", 2))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetAccept sets the Accept field's value.
func (s *PostContentInput) SetAccept(v string) *PostContentInput {
s.Accept = &v
return s
}
// SetActiveContexts sets the ActiveContexts field's value.
func (s *PostContentInput) SetActiveContexts(v string) *PostContentInput {
s.ActiveContexts = &v
return s
}
// SetBotAlias sets the BotAlias field's value.
func (s *PostContentInput) SetBotAlias(v string) *PostContentInput {
s.BotAlias = &v
return s
}
// SetBotName sets the BotName field's value.
func (s *PostContentInput) SetBotName(v string) *PostContentInput {
s.BotName = &v
return s
}
// SetContentType sets the ContentType field's value.
func (s *PostContentInput) SetContentType(v string) *PostContentInput {
s.ContentType = &v
return s
}
// SetInputStream sets the InputStream field's value.
func (s *PostContentInput) SetInputStream(v io.ReadSeeker) *PostContentInput {
s.InputStream = v
return s
}
// SetRequestAttributes sets the RequestAttributes field's value.
func (s *PostContentInput) SetRequestAttributes(v aws.JSONValue) *PostContentInput {
s.RequestAttributes = v
return s
}
// SetSessionAttributes sets the SessionAttributes field's value.
func (s *PostContentInput) SetSessionAttributes(v aws.JSONValue) *PostContentInput {
s.SessionAttributes = v
return s
}
// SetUserId sets the UserId field's value.
func (s *PostContentInput) SetUserId(v string) *PostContentInput {
s.UserId = &v
return s
}
type PostContentOutput struct {
_ struct{} `type:"structure" payload:"AudioStream"`
// A list of active contexts for the session. A context can be set when an intent
// is fulfilled or by calling the PostContent, PostText, or PutSession operation.
//
// You can use a context to control the intents that can follow up an intent,
// or to modify the operation of your application.
//
// ActiveContexts is a sensitive parameter and its value will be
// replaced with "sensitive" in string returned by PostContentOutput's
// String and GoString methods.
ActiveContexts *string `location:"header" locationName:"x-amz-lex-active-contexts" type:"string" suppressedJSONValue:"true" sensitive:"true"`
// One to four alternative intents that may be applicable to the user's intent.
//
// Each alternative includes a score that indicates how confident Amazon Lex
// is that the intent matches the user's intent. The intents are sorted by the
// confidence score.
AlternativeIntents *string `location:"header" locationName:"x-amz-lex-alternative-intents" type:"string" suppressedJSONValue:"true"`
// The prompt (or statement) to convey to the user. This is based on the bot
// configuration and context. For example, if Amazon Lex did not understand
// the user intent, it sends the clarificationPrompt configured for the bot.
// If the intent requires confirmation before taking the fulfillment action,
// it sends the confirmationPrompt. Another example: Suppose that the Lambda
// function successfully fulfilled the intent, and sent a message to convey
// to the user. Then Amazon Lex sends that message in the response.
AudioStream io.ReadCloser `locationName:"audioStream" type:"blob"`
// The version of the bot that responded to the conversation. You can use this
// information to help determine if one version of a bot is performing better
// than another version.
BotVersion *string `location:"header" locationName:"x-amz-lex-bot-version" min:"1" type:"string"`
// Content type as specified in the Accept HTTP header in the request.
ContentType *string `location:"header" locationName:"Content-Type" type:"string"`
// Identifies the current state of the user interaction. Amazon Lex returns
// one of the following values as dialogState. The client can optionally use
// this information to customize the user interface.
//
// * ElicitIntent - Amazon Lex wants to elicit the user's intent. Consider
// the following examples: For example, a user might utter an intent ("I
// want to order a pizza"). If Amazon Lex cannot infer the user intent from
// this utterance, it will return this dialog state.
//
// * ConfirmIntent - Amazon Lex is expecting a "yes" or "no" response. For
// example, Amazon Lex wants user confirmation before fulfilling an intent.
// Instead of a simple "yes" or "no" response, a user might respond with
// additional information. For example, "yes, but make it a thick crust pizza"
// or "no, I want to order a drink." Amazon Lex can process such additional
// information (in these examples, update the crust type slot or change the
// intent from OrderPizza to OrderDrink).
//
// * ElicitSlot - Amazon Lex is expecting the value of a slot for the current
// intent. For example, suppose that in the response Amazon Lex sends this
// message: "What size pizza would you like?". A user might reply with the
// slot value (e.g., "medium"). The user might also provide additional information
// in the response (e.g., "medium thick crust pizza"). Amazon Lex can process
// such additional information appropriately.
//
// * Fulfilled - Conveys that the Lambda function has successfully fulfilled
// the intent.
//
// * ReadyForFulfillment - Conveys that the client has to fulfill the request.
//
// * Failed - Conveys that the conversation with the user failed. This can
// happen for various reasons, including that the user does not provide an
// appropriate response to prompts from the service (you can configure how
// many times Amazon Lex can prompt a user for specific information), or
// if the Lambda function fails to fulfill the intent.
DialogState *string `location:"header" locationName:"x-amz-lex-dialog-state" type:"string" enum:"DialogState"`
// The text used to process the request.
//
// If the input was an audio stream, the encodedInputTranscript field contains
// the text extracted from the audio stream. This is the text that is actually
// processed to recognize intents and slot values. You can use this information
// to determine if Amazon Lex is correctly processing the audio that you send.
//
// The encodedInputTranscript field is base-64 encoded. You must decode the
// field before you can use the value.
//
// EncodedInputTranscript is a sensitive parameter and its value will be
// replaced with "sensitive" in string returned by PostContentOutput's
// String and GoString methods.
EncodedInputTranscript *string `location:"header" locationName:"x-amz-lex-encoded-input-transcript" type:"string" sensitive:"true"`
// The message to convey to the user. The message can come from the bot's configuration
// or from a Lambda function.
//
// If the intent is not configured with a Lambda function, or if the Lambda
// function returned Delegate as the dialogAction.type in its response, Amazon
// Lex decides on the next course of action and selects an appropriate message
// from the bot's configuration based on the current interaction context. For
// example, if Amazon Lex isn't able to understand user input, it uses a clarification
// prompt message.
//
// When you create an intent you can assign messages to groups. When messages
// are assigned to groups Amazon Lex returns one message from each group in
// the response. The message field is an escaped JSON string containing the
// messages. For more information about the structure of the JSON string returned,
// see msg-prompts-formats.
//
// If the Lambda function returns a message, Amazon Lex passes it to the client
// in its response.
//
// The encodedMessage field is base-64 encoded. You must decode the field before
// you can use the value.
//
// EncodedMessage is a sensitive parameter and its value will be
// replaced with "sensitive" in string returned by PostContentOutput's
// String and GoString methods.
EncodedMessage *string `location:"header" locationName:"x-amz-lex-encoded-message" min:"1" type:"string" sensitive:"true"`
// The text used to process the request.
//
// You can use this field only in the de-DE, en-AU, en-GB, en-US, es-419, es-ES,
// es-US, fr-CA, fr-FR, and it-IT locales. In all other locales, the inputTranscript
// field is null. You should use the encodedInputTranscript field instead.
//
// If the input was an audio stream, the inputTranscript field contains the
// text extracted from the audio stream. This is the text that is actually processed
// to recognize intents and slot values. You can use this information to determine
// if Amazon Lex is correctly processing the audio that you send.
//
// Deprecated: The inputTranscript field is deprecated, use the encodedInputTranscript field instead. The inputTranscript field is available only in the de-DE, en-AU, en-GB, en-US, es-419, es-ES, es-US, fr-CA, fr-FR and it-IT locales.
InputTranscript *string `location:"header" locationName:"x-amz-lex-input-transcript" deprecated:"true" type:"string"`
// Current user intent that Amazon Lex is aware of.
IntentName *string `location:"header" locationName:"x-amz-lex-intent-name" type:"string"`
// You can only use this field in the de-DE, en-AU, en-GB, en-US, es-419, es-ES,
// es-US, fr-CA, fr-FR, and it-IT locales. In all other locales, the message
// field is null. You should use the encodedMessage field instead.
//
// The message to convey to the user. The message can come from the bot's configuration
// or from a Lambda function.
//
// If the intent is not configured with a Lambda function, or if the Lambda
// function returned Delegate as the dialogAction.type in its response, Amazon
// Lex decides on the next course of action and selects an appropriate message
// from the bot's configuration based on the current interaction context. For
// example, if Amazon Lex isn't able to understand user input, it uses a clarification
// prompt message.
//
// When you create an intent you can assign messages to groups. When messages
// are assigned to groups Amazon Lex returns one message from each group in
// the response. The message field is an escaped JSON string containing the
// messages. For more information about the structure of the JSON string returned,
// see msg-prompts-formats.
//
// If the Lambda function returns a message, Amazon Lex passes it to the client
// in its response.
//
// Deprecated: The message field is deprecated, use the encodedMessage field instead. The message field is available only in the de-DE, en-AU, en-GB, en-US, es-419, es-ES, es-US, fr-CA, fr-FR and it-IT locales.
//
// Message is a sensitive parameter and its value will be
// replaced with "sensitive" in string returned by PostContentOutput's
// String and GoString methods.
Message *string `location:"header" locationName:"x-amz-lex-message" min:"1" deprecated:"true" type:"string" sensitive:"true"`
// The format of the response message. One of the following values:
//
// * PlainText - The message contains plain UTF-8 text.
//
// * CustomPayload - The message is a custom format for the client.
//
// * SSML - The message contains text formatted for voice output.
//
// * Composite - The message contains an escaped JSON object containing one
// or more messages from the groups that messages were assigned to when the
// intent was created.
MessageFormat *string `location:"header" locationName:"x-amz-lex-message-format" type:"string" enum:"MessageFormatType"`
// Provides a score that indicates how confident Amazon Lex is that the returned
// intent is the one that matches the user's intent. The score is between 0.0
// and 1.0.
//
// The score is a relative score, not an absolute score. The score may change
// based on improvements to Amazon Lex.
NluIntentConfidence aws.JSONValue `location:"header" locationName:"x-amz-lex-nlu-intent-confidence" type:"jsonvalue"`
// The sentiment expressed in an utterance.
//
// When the bot is configured to send utterances to Amazon Comprehend for sentiment
// analysis, this field contains the result of the analysis.
SentimentResponse *string `location:"header" locationName:"x-amz-lex-sentiment" type:"string"`
// Map of key/value pairs representing the session-specific context information.
SessionAttributes aws.JSONValue `location:"header" locationName:"x-amz-lex-session-attributes" type:"jsonvalue"`
// The unique identifier for the session.
SessionId *string `location:"header" locationName:"x-amz-lex-session-id" type:"string"`
// If the dialogState value is ElicitSlot, returns the name of the slot for
// which Amazon Lex is eliciting a value.
SlotToElicit *string `location:"header" locationName:"x-amz-lex-slot-to-elicit" type:"string"`
// Map of zero or more intent slots (name/value pairs) Amazon Lex detected from
// the user input during the conversation. The field is base-64 encoded.
//
// Amazon Lex creates a resolution list containing likely values for a slot.
// The value that it returns is determined by the valueSelectionStrategy selected
// when the slot type was created or updated. If valueSelectionStrategy is set
// to ORIGINAL_VALUE, the value provided by the user is returned, if the user
// value is similar to the slot values. If valueSelectionStrategy is set to
// TOP_RESOLUTION Amazon Lex returns the first value in the resolution list
// or, if there is no resolution list, null. If you don't specify a valueSelectionStrategy,
// the default is ORIGINAL_VALUE.
Slots aws.JSONValue `location:"header" locationName:"x-amz-lex-slots" type:"jsonvalue"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s PostContentOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s PostContentOutput) GoString() string {
return s.String()
}
// SetActiveContexts sets the ActiveContexts field's value.
func (s *PostContentOutput) SetActiveContexts(v string) *PostContentOutput {
s.ActiveContexts = &v
return s
}
// SetAlternativeIntents sets the AlternativeIntents field's value.
func (s *PostContentOutput) SetAlternativeIntents(v string) *PostContentOutput {
s.AlternativeIntents = &v
return s
}
// SetAudioStream sets the AudioStream field's value.
func (s *PostContentOutput) SetAudioStream(v io.ReadCloser) *PostContentOutput {
s.AudioStream = v
return s
}
// SetBotVersion sets the BotVersion field's value.
func (s *PostContentOutput) SetBotVersion(v string) *PostContentOutput {
s.BotVersion = &v
return s
}
// SetContentType sets the ContentType field's value.
func (s *PostContentOutput) SetContentType(v string) *PostContentOutput {
s.ContentType = &v
return s
}
// SetDialogState sets the DialogState field's value.
func (s *PostContentOutput) SetDialogState(v string) *PostContentOutput {
s.DialogState = &v
return s
}
// SetEncodedInputTranscript sets the EncodedInputTranscript field's value.
func (s *PostContentOutput) SetEncodedInputTranscript(v string) *PostContentOutput {
s.EncodedInputTranscript = &v
return s
}
// SetEncodedMessage sets the EncodedMessage field's value.
func (s *PostContentOutput) SetEncodedMessage(v string) *PostContentOutput {
s.EncodedMessage = &v
return s
}
// SetInputTranscript sets the InputTranscript field's value.
func (s *PostContentOutput) SetInputTranscript(v string) *PostContentOutput {
s.InputTranscript = &v
return s
}
// SetIntentName sets the IntentName field's value.
func (s *PostContentOutput) SetIntentName(v string) *PostContentOutput {
s.IntentName = &v
return s
}
// SetMessage sets the Message field's value.
func (s *PostContentOutput) SetMessage(v string) *PostContentOutput {
s.Message = &v
return s
}
// SetMessageFormat sets the MessageFormat field's value.
func (s *PostContentOutput) SetMessageFormat(v string) *PostContentOutput {
s.MessageFormat = &v
return s
}
// SetNluIntentConfidence sets the NluIntentConfidence field's value.
func (s *PostContentOutput) SetNluIntentConfidence(v aws.JSONValue) *PostContentOutput {
s.NluIntentConfidence = v
return s
}
// SetSentimentResponse sets the SentimentResponse field's value.
func (s *PostContentOutput) SetSentimentResponse(v string) *PostContentOutput {
s.SentimentResponse = &v
return s
}
// SetSessionAttributes sets the SessionAttributes field's value.
func (s *PostContentOutput) SetSessionAttributes(v aws.JSONValue) *PostContentOutput {
s.SessionAttributes = v
return s
}
// SetSessionId sets the SessionId field's value.
func (s *PostContentOutput) SetSessionId(v string) *PostContentOutput {
s.SessionId = &v
return s
}
// SetSlotToElicit sets the SlotToElicit field's value.
func (s *PostContentOutput) SetSlotToElicit(v string) *PostContentOutput {
s.SlotToElicit = &v
return s
}
// SetSlots sets the Slots field's value.
func (s *PostContentOutput) SetSlots(v aws.JSONValue) *PostContentOutput {
s.Slots = v
return s
}
type PostTextInput struct {
_ struct{} `type:"structure"`
// A list of contexts active for the request. A context can be activated when
// a previous intent is fulfilled, or by including the context in the request,
//
// If you don't specify a list of contexts, Amazon Lex will use the current
// list of contexts for the session. If you specify an empty list, all contexts
// for the session are cleared.
//
// ActiveContexts is a sensitive parameter and its value will be
// replaced with "sensitive" in string returned by PostTextInput's
// String and GoString methods.
ActiveContexts []*ActiveContext `locationName:"activeContexts" type:"list" sensitive:"true"`
// The alias of the Amazon Lex bot.
//
// BotAlias is a required field
BotAlias *string `location:"uri" locationName:"botAlias" type:"string" required:"true"`
// The name of the Amazon Lex bot.
//
// BotName is a required field
BotName *string `location:"uri" locationName:"botName" type:"string" required:"true"`
// The text that the user entered (Amazon Lex interprets this text).
//
// InputText is a sensitive parameter and its value will be
// replaced with "sensitive" in string returned by PostTextInput's
// String and GoString methods.
//
// InputText is a required field
InputText *string `locationName:"inputText" min:"1" type:"string" required:"true" sensitive:"true"`
// Request-specific information passed between Amazon Lex and a client application.
//
// The namespace x-amz-lex: is reserved for special attributes. Don't create
// any request attributes with the prefix x-amz-lex:.
//
// For more information, see Setting Request Attributes (https://docs.aws.amazon.com/lex/latest/dg/context-mgmt.html#context-mgmt-request-attribs).
//
// RequestAttributes is a sensitive parameter and its value will be
// replaced with "sensitive" in string returned by PostTextInput's
// String and GoString methods.
RequestAttributes map[string]*string `locationName:"requestAttributes" type:"map" sensitive:"true"`
// Application-specific information passed between Amazon Lex and a client application.
//
// For more information, see Setting Session Attributes (https://docs.aws.amazon.com/lex/latest/dg/context-mgmt.html#context-mgmt-session-attribs).
//
// SessionAttributes is a sensitive parameter and its value will be
// replaced with "sensitive" in string returned by PostTextInput's
// String and GoString methods.
SessionAttributes map[string]*string `locationName:"sessionAttributes" type:"map" sensitive:"true"`
// The ID of the client application user. Amazon Lex uses this to identify a
// user's conversation with your bot. At runtime, each request must contain
// the userID field.
//
// To decide the user ID to use for your application, consider the following
// factors.
//
// * The userID field must not contain any personally identifiable information
// of the user, for example, name, personal identification numbers, or other
// end user personal information.
//
// * If you want a user to start a conversation on one device and continue
// on another device, use a user-specific identifier.
//
// * If you want the same user to be able to have two independent conversations
// on two different devices, choose a device-specific identifier.
//
// * A user can't have two independent conversations with two different versions
// of the same bot. For example, a user can't have a conversation with the
// PROD and BETA versions of the same bot. If you anticipate that a user
// will need to have conversation with two different versions, for example,
// while testing, include the bot alias in the user ID to separate the two
// conversations.
//
// UserId is a required field
UserId *string `location:"uri" locationName:"userId" min:"2" type:"string" required:"true"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s PostTextInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s PostTextInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *PostTextInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "PostTextInput"}
if s.BotAlias == nil {
invalidParams.Add(request.NewErrParamRequired("BotAlias"))
}
if s.BotAlias != nil && len(*s.BotAlias) < 1 {
invalidParams.Add(request.NewErrParamMinLen("BotAlias", 1))
}
if s.BotName == nil {
invalidParams.Add(request.NewErrParamRequired("BotName"))
}
if s.BotName != nil && len(*s.BotName) < 1 {
invalidParams.Add(request.NewErrParamMinLen("BotName", 1))
}
if s.InputText == nil {
invalidParams.Add(request.NewErrParamRequired("InputText"))
}
if s.InputText != nil && len(*s.InputText) < 1 {
invalidParams.Add(request.NewErrParamMinLen("InputText", 1))
}
if s.UserId == nil {
invalidParams.Add(request.NewErrParamRequired("UserId"))
}
if s.UserId != nil && len(*s.UserId) < 2 {
invalidParams.Add(request.NewErrParamMinLen("UserId", 2))
}
if s.ActiveContexts != nil {
for i, v := range s.ActiveContexts {
if v == nil {
continue
}
if err := v.Validate(); err != nil {
invalidParams.AddNested(fmt.Sprintf("%s[%v]", "ActiveContexts", i), err.(request.ErrInvalidParams))
}
}
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetActiveContexts sets the ActiveContexts field's value.
func (s *PostTextInput) SetActiveContexts(v []*ActiveContext) *PostTextInput {
s.ActiveContexts = v
return s
}
// SetBotAlias sets the BotAlias field's value.
func (s *PostTextInput) SetBotAlias(v string) *PostTextInput {
s.BotAlias = &v
return s
}
// SetBotName sets the BotName field's value.
func (s *PostTextInput) SetBotName(v string) *PostTextInput {
s.BotName = &v
return s
}
// SetInputText sets the InputText field's value.
func (s *PostTextInput) SetInputText(v string) *PostTextInput {
s.InputText = &v
return s
}
// SetRequestAttributes sets the RequestAttributes field's value.
func (s *PostTextInput) SetRequestAttributes(v map[string]*string) *PostTextInput {
s.RequestAttributes = v
return s
}
// SetSessionAttributes sets the SessionAttributes field's value.
func (s *PostTextInput) SetSessionAttributes(v map[string]*string) *PostTextInput {
s.SessionAttributes = v
return s
}
// SetUserId sets the UserId field's value.
func (s *PostTextInput) SetUserId(v string) *PostTextInput {
s.UserId = &v
return s
}
type PostTextOutput struct {
_ struct{} `type:"structure"`
// A list of active contexts for the session. A context can be set when an intent
// is fulfilled or by calling the PostContent, PostText, or PutSession operation.
//
// You can use a context to control the intents that can follow up an intent,
// or to modify the operation of your application.
//
// ActiveContexts is a sensitive parameter and its value will be
// replaced with "sensitive" in string returned by PostTextOutput's
// String and GoString methods.
ActiveContexts []*ActiveContext `locationName:"activeContexts" type:"list" sensitive:"true"`
// One to four alternative intents that may be applicable to the user's intent.
//
// Each alternative includes a score that indicates how confident Amazon Lex
// is that the intent matches the user's intent. The intents are sorted by the
// confidence score.
AlternativeIntents []*PredictedIntent `locationName:"alternativeIntents" type:"list"`
// The version of the bot that responded to the conversation. You can use this
// information to help determine if one version of a bot is performing better
// than another version.
BotVersion *string `locationName:"botVersion" min:"1" type:"string"`
// Identifies the current state of the user interaction. Amazon Lex returns
// one of the following values as dialogState. The client can optionally use
// this information to customize the user interface.
//
// * ElicitIntent - Amazon Lex wants to elicit user intent. For example,
// a user might utter an intent ("I want to order a pizza"). If Amazon Lex
// cannot infer the user intent from this utterance, it will return this
// dialogState.
//
// * ConfirmIntent - Amazon Lex is expecting a "yes" or "no" response. For
// example, Amazon Lex wants user confirmation before fulfilling an intent.
// Instead of a simple "yes" or "no," a user might respond with additional
// information. For example, "yes, but make it thick crust pizza" or "no,
// I want to order a drink". Amazon Lex can process such additional information
// (in these examples, update the crust type slot value, or change intent
// from OrderPizza to OrderDrink).
//
// * ElicitSlot - Amazon Lex is expecting a slot value for the current intent.
// For example, suppose that in the response Amazon Lex sends this message:
// "What size pizza would you like?". A user might reply with the slot value
// (e.g., "medium"). The user might also provide additional information in
// the response (e.g., "medium thick crust pizza"). Amazon Lex can process
// such additional information appropriately.
//
// * Fulfilled - Conveys that the Lambda function configured for the intent
// has successfully fulfilled the intent.
//
// * ReadyForFulfillment - Conveys that the client has to fulfill the intent.
//
// * Failed - Conveys that the conversation with the user failed. This can
// happen for various reasons including that the user did not provide an
// appropriate response to prompts from the service (you can configure how
// many times Amazon Lex can prompt a user for specific information), or
// the Lambda function failed to fulfill the intent.
DialogState *string `locationName:"dialogState" type:"string" enum:"DialogState"`
// The current user intent that Amazon Lex is aware of.
IntentName *string `locationName:"intentName" type:"string"`
// The message to convey to the user. The message can come from the bot's configuration
// or from a Lambda function.
//
// If the intent is not configured with a Lambda function, or if the Lambda
// function returned Delegate as the dialogAction.type its response, Amazon
// Lex decides on the next course of action and selects an appropriate message
// from the bot's configuration based on the current interaction context. For
// example, if Amazon Lex isn't able to understand user input, it uses a clarification
// prompt message.
//
// When you create an intent you can assign messages to groups. When messages
// are assigned to groups Amazon Lex returns one message from each group in
// the response. The message field is an escaped JSON string containing the
// messages. For more information about the structure of the JSON string returned,
// see msg-prompts-formats.
//
// If the Lambda function returns a message, Amazon Lex passes it to the client
// in its response.
//
// Message is a sensitive parameter and its value will be
// replaced with "sensitive" in string returned by PostTextOutput's
// String and GoString methods.
Message *string `locationName:"message" min:"1" type:"string" sensitive:"true"`
// The format of the response message. One of the following values:
//
// * PlainText - The message contains plain UTF-8 text.
//
// * CustomPayload - The message is a custom format defined by the Lambda
// function.
//
// * SSML - The message contains text formatted for voice output.
//
// * Composite - The message contains an escaped JSON object containing one
// or more messages from the groups that messages were assigned to when the
// intent was created.
MessageFormat *string `locationName:"messageFormat" type:"string" enum:"MessageFormatType"`
// Provides a score that indicates how confident Amazon Lex is that the returned
// intent is the one that matches the user's intent. The score is between 0.0
// and 1.0. For more information, see Confidence Scores (https://docs.aws.amazon.com/lex/latest/dg/confidence-scores.html).
//
// The score is a relative score, not an absolute score. The score may change
// based on improvements to Amazon Lex.
NluIntentConfidence *IntentConfidence `locationName:"nluIntentConfidence" type:"structure"`
// Represents the options that the user has to respond to the current prompt.
// Response Card can come from the bot configuration (in the Amazon Lex console,
// choose the settings button next to a slot) or from a code hook (Lambda function).
ResponseCard *ResponseCard `locationName:"responseCard" type:"structure"`
// The sentiment expressed in and utterance.
//
// When the bot is configured to send utterances to Amazon Comprehend for sentiment
// analysis, this field contains the result of the analysis.
SentimentResponse *SentimentResponse `locationName:"sentimentResponse" type:"structure"`
// A map of key-value pairs representing the session-specific context information.
//
// SessionAttributes is a sensitive parameter and its value will be
// replaced with "sensitive" in string returned by PostTextOutput's
// String and GoString methods.
SessionAttributes map[string]*string `locationName:"sessionAttributes" type:"map" sensitive:"true"`
// A unique identifier for the session.
SessionId *string `locationName:"sessionId" type:"string"`
// If the dialogState value is ElicitSlot, returns the name of the slot for
// which Amazon Lex is eliciting a value.
SlotToElicit *string `locationName:"slotToElicit" type:"string"`
// The intent slots that Amazon Lex detected from the user input in the conversation.
//
// Amazon Lex creates a resolution list containing likely values for a slot.
// The value that it returns is determined by the valueSelectionStrategy selected
// when the slot type was created or updated. If valueSelectionStrategy is set
// to ORIGINAL_VALUE, the value provided by the user is returned, if the user
// value is similar to the slot values. If valueSelectionStrategy is set to
// TOP_RESOLUTION Amazon Lex returns the first value in the resolution list
// or, if there is no resolution list, null. If you don't specify a valueSelectionStrategy,
// the default is ORIGINAL_VALUE.
//
// Slots is a sensitive parameter and its value will be
// replaced with "sensitive" in string returned by PostTextOutput's
// String and GoString methods.
Slots map[string]*string `locationName:"slots" type:"map" sensitive:"true"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s PostTextOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s PostTextOutput) GoString() string {
return s.String()
}
// SetActiveContexts sets the ActiveContexts field's value.
func (s *PostTextOutput) SetActiveContexts(v []*ActiveContext) *PostTextOutput {
s.ActiveContexts = v
return s
}
// SetAlternativeIntents sets the AlternativeIntents field's value.
func (s *PostTextOutput) SetAlternativeIntents(v []*PredictedIntent) *PostTextOutput {
s.AlternativeIntents = v
return s
}
// SetBotVersion sets the BotVersion field's value.
func (s *PostTextOutput) SetBotVersion(v string) *PostTextOutput {
s.BotVersion = &v
return s
}
// SetDialogState sets the DialogState field's value.
func (s *PostTextOutput) SetDialogState(v string) *PostTextOutput {
s.DialogState = &v
return s
}
// SetIntentName sets the IntentName field's value.
func (s *PostTextOutput) SetIntentName(v string) *PostTextOutput {
s.IntentName = &v
return s
}
// SetMessage sets the Message field's value.
func (s *PostTextOutput) SetMessage(v string) *PostTextOutput {
s.Message = &v
return s
}
// SetMessageFormat sets the MessageFormat field's value.
func (s *PostTextOutput) SetMessageFormat(v string) *PostTextOutput {
s.MessageFormat = &v
return s
}
// SetNluIntentConfidence sets the NluIntentConfidence field's value.
func (s *PostTextOutput) SetNluIntentConfidence(v *IntentConfidence) *PostTextOutput {
s.NluIntentConfidence = v
return s
}
// SetResponseCard sets the ResponseCard field's value.
func (s *PostTextOutput) SetResponseCard(v *ResponseCard) *PostTextOutput {
s.ResponseCard = v
return s
}
// SetSentimentResponse sets the SentimentResponse field's value.
func (s *PostTextOutput) SetSentimentResponse(v *SentimentResponse) *PostTextOutput {
s.SentimentResponse = v
return s
}
// SetSessionAttributes sets the SessionAttributes field's value.
func (s *PostTextOutput) SetSessionAttributes(v map[string]*string) *PostTextOutput {
s.SessionAttributes = v
return s
}
// SetSessionId sets the SessionId field's value.
func (s *PostTextOutput) SetSessionId(v string) *PostTextOutput {
s.SessionId = &v
return s
}
// SetSlotToElicit sets the SlotToElicit field's value.
func (s *PostTextOutput) SetSlotToElicit(v string) *PostTextOutput {
s.SlotToElicit = &v
return s
}
// SetSlots sets the Slots field's value.
func (s *PostTextOutput) SetSlots(v map[string]*string) *PostTextOutput {
s.Slots = v
return s
}
// An intent that Amazon Lex suggests satisfies the user's intent. Includes
// the name of the intent, the confidence that Amazon Lex has that the user's
// intent is satisfied, and the slots defined for the intent.
type PredictedIntent struct {
_ struct{} `type:"structure"`
// The name of the intent that Amazon Lex suggests satisfies the user's intent.
IntentName *string `locationName:"intentName" type:"string"`
// Indicates how confident Amazon Lex is that an intent satisfies the user's
// intent.
NluIntentConfidence *IntentConfidence `locationName:"nluIntentConfidence" type:"structure"`
// The slot and slot values associated with the predicted intent.
//
// Slots is a sensitive parameter and its value will be
// replaced with "sensitive" in string returned by PredictedIntent's
// String and GoString methods.
Slots map[string]*string `locationName:"slots" type:"map" sensitive:"true"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s PredictedIntent) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s PredictedIntent) GoString() string {
return s.String()
}
// SetIntentName sets the IntentName field's value.
func (s *PredictedIntent) SetIntentName(v string) *PredictedIntent {
s.IntentName = &v
return s
}
// SetNluIntentConfidence sets the NluIntentConfidence field's value.
func (s *PredictedIntent) SetNluIntentConfidence(v *IntentConfidence) *PredictedIntent {
s.NluIntentConfidence = v
return s
}
// SetSlots sets the Slots field's value.
func (s *PredictedIntent) SetSlots(v map[string]*string) *PredictedIntent {
s.Slots = v
return s
}
type PutSessionInput struct {
_ struct{} `type:"structure"`
// The message that Amazon Lex returns in the response can be either text or
// speech based depending on the value of this field.
//
// * If the value is text/plain; charset=utf-8, Amazon Lex returns text in
// the response.
//
// * If the value begins with audio/, Amazon Lex returns speech in the response.
// Amazon Lex uses Amazon Polly to generate the speech in the configuration
// that you specify. For example, if you specify audio/mpeg as the value,
// Amazon Lex returns speech in the MPEG format.
//
// * If the value is audio/pcm, the speech is returned as audio/pcm in 16-bit,
// little endian format.
//
// * The following are the accepted values: audio/mpeg audio/ogg audio/pcm
// audio/* (defaults to mpeg) text/plain; charset=utf-8
Accept *string `location:"header" locationName:"Accept" type:"string"`
// A list of contexts active for the request. A context can be activated when
// a previous intent is fulfilled, or by including the context in the request,
//
// If you don't specify a list of contexts, Amazon Lex will use the current
// list of contexts for the session. If you specify an empty list, all contexts
// for the session are cleared.
//
// ActiveContexts is a sensitive parameter and its value will be
// replaced with "sensitive" in string returned by PutSessionInput's
// String and GoString methods.
ActiveContexts []*ActiveContext `locationName:"activeContexts" type:"list" sensitive:"true"`
// The alias in use for the bot that contains the session data.
//
// BotAlias is a required field
BotAlias *string `location:"uri" locationName:"botAlias" type:"string" required:"true"`
// The name of the bot that contains the session data.
//
// BotName is a required field
BotName *string `location:"uri" locationName:"botName" type:"string" required:"true"`
// Sets the next action that the bot should take to fulfill the conversation.
DialogAction *DialogAction `locationName:"dialogAction" type:"structure"`
// A summary of the recent intents for the bot. You can use the intent summary
// view to set a checkpoint label on an intent and modify attributes of intents.
// You can also use it to remove or add intent summary objects to the list.
//
// An intent that you modify or add to the list must make sense for the bot.
// For example, the intent name must be valid for the bot. You must provide
// valid values for:
//
// * intentName
//
// * slot names
//
// * slotToElict
//
// If you send the recentIntentSummaryView parameter in a PutSession request,
// the contents of the new summary view replaces the old summary view. For example,
// if a GetSession request returns three intents in the summary view and you
// call PutSession with one intent in the summary view, the next call to GetSession
// will only return one intent.
RecentIntentSummaryView []*IntentSummary `locationName:"recentIntentSummaryView" type:"list"`
// Map of key/value pairs representing the session-specific context information.
// It contains application information passed between Amazon Lex and a client
// application.
//
// SessionAttributes is a sensitive parameter and its value will be
// replaced with "sensitive" in string returned by PutSessionInput's
// String and GoString methods.
SessionAttributes map[string]*string `locationName:"sessionAttributes" type:"map" sensitive:"true"`
// The ID of the client application user. Amazon Lex uses this to identify a
// user's conversation with your bot.
//
// UserId is a required field
UserId *string `location:"uri" locationName:"userId" min:"2" type:"string" required:"true"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s PutSessionInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s PutSessionInput) GoString() string {
return s.String()
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *PutSessionInput) Validate() error {
invalidParams := request.ErrInvalidParams{Context: "PutSessionInput"}
if s.BotAlias == nil {
invalidParams.Add(request.NewErrParamRequired("BotAlias"))
}
if s.BotAlias != nil && len(*s.BotAlias) < 1 {
invalidParams.Add(request.NewErrParamMinLen("BotAlias", 1))
}
if s.BotName == nil {
invalidParams.Add(request.NewErrParamRequired("BotName"))
}
if s.BotName != nil && len(*s.BotName) < 1 {
invalidParams.Add(request.NewErrParamMinLen("BotName", 1))
}
if s.UserId == nil {
invalidParams.Add(request.NewErrParamRequired("UserId"))
}
if s.UserId != nil && len(*s.UserId) < 2 {
invalidParams.Add(request.NewErrParamMinLen("UserId", 2))
}
if s.ActiveContexts != nil {
for i, v := range s.ActiveContexts {
if v == nil {
continue
}
if err := v.Validate(); err != nil {
invalidParams.AddNested(fmt.Sprintf("%s[%v]", "ActiveContexts", i), err.(request.ErrInvalidParams))
}
}
}
if s.DialogAction != nil {
if err := s.DialogAction.Validate(); err != nil {
invalidParams.AddNested("DialogAction", err.(request.ErrInvalidParams))
}
}
if s.RecentIntentSummaryView != nil {
for i, v := range s.RecentIntentSummaryView {
if v == nil {
continue
}
if err := v.Validate(); err != nil {
invalidParams.AddNested(fmt.Sprintf("%s[%v]", "RecentIntentSummaryView", i), err.(request.ErrInvalidParams))
}
}
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// SetAccept sets the Accept field's value.
func (s *PutSessionInput) SetAccept(v string) *PutSessionInput {
s.Accept = &v
return s
}
// SetActiveContexts sets the ActiveContexts field's value.
func (s *PutSessionInput) SetActiveContexts(v []*ActiveContext) *PutSessionInput {
s.ActiveContexts = v
return s
}
// SetBotAlias sets the BotAlias field's value.
func (s *PutSessionInput) SetBotAlias(v string) *PutSessionInput {
s.BotAlias = &v
return s
}
// SetBotName sets the BotName field's value.
func (s *PutSessionInput) SetBotName(v string) *PutSessionInput {
s.BotName = &v
return s
}
// SetDialogAction sets the DialogAction field's value.
func (s *PutSessionInput) SetDialogAction(v *DialogAction) *PutSessionInput {
s.DialogAction = v
return s
}
// SetRecentIntentSummaryView sets the RecentIntentSummaryView field's value.
func (s *PutSessionInput) SetRecentIntentSummaryView(v []*IntentSummary) *PutSessionInput {
s.RecentIntentSummaryView = v
return s
}
// SetSessionAttributes sets the SessionAttributes field's value.
func (s *PutSessionInput) SetSessionAttributes(v map[string]*string) *PutSessionInput {
s.SessionAttributes = v
return s
}
// SetUserId sets the UserId field's value.
func (s *PutSessionInput) SetUserId(v string) *PutSessionInput {
s.UserId = &v
return s
}
type PutSessionOutput struct {
_ struct{} `type:"structure" payload:"AudioStream"`
// A list of active contexts for the session.
//
// ActiveContexts is a sensitive parameter and its value will be
// replaced with "sensitive" in string returned by PutSessionOutput's
// String and GoString methods.
ActiveContexts *string `location:"header" locationName:"x-amz-lex-active-contexts" type:"string" suppressedJSONValue:"true" sensitive:"true"`
// The audio version of the message to convey to the user.
AudioStream io.ReadCloser `locationName:"audioStream" type:"blob"`
// Content type as specified in the Accept HTTP header in the request.
ContentType *string `location:"header" locationName:"Content-Type" type:"string"`
// * ConfirmIntent - Amazon Lex is expecting a "yes" or "no" response to
// confirm the intent before fulfilling an intent.
//
// * ElicitIntent - Amazon Lex wants to elicit the user's intent.
//
// * ElicitSlot - Amazon Lex is expecting the value of a slot for the current
// intent.
//
// * Failed - Conveys that the conversation with the user has failed. This
// can happen for various reasons, including the user does not provide an
// appropriate response to prompts from the service, or if the Lambda function
// fails to fulfill the intent.
//
// * Fulfilled - Conveys that the Lambda function has sucessfully fulfilled
// the intent.
//
// * ReadyForFulfillment - Conveys that the client has to fulfill the intent.
DialogState *string `location:"header" locationName:"x-amz-lex-dialog-state" type:"string" enum:"DialogState"`
// The next message that should be presented to the user.
//
// The encodedMessage field is base-64 encoded. You must decode the field before
// you can use the value.
//
// EncodedMessage is a sensitive parameter and its value will be
// replaced with "sensitive" in string returned by PutSessionOutput's
// String and GoString methods.
EncodedMessage *string `location:"header" locationName:"x-amz-lex-encoded-message" min:"1" type:"string" sensitive:"true"`
// The name of the current intent.
IntentName *string `location:"header" locationName:"x-amz-lex-intent-name" type:"string"`
// The next message that should be presented to the user.
//
// You can only use this field in the de-DE, en-AU, en-GB, en-US, es-419, es-ES,
// es-US, fr-CA, fr-FR, and it-IT locales. In all other locales, the message
// field is null. You should use the encodedMessage field instead.
//
// Deprecated: The message field is deprecated, use the encodedMessage field instead. The message field is available only in the de-DE, en-AU, en-GB, en-US, es-419, es-ES, es-US, fr-CA, fr-FR and it-IT locales.
//
// Message is a sensitive parameter and its value will be
// replaced with "sensitive" in string returned by PutSessionOutput's
// String and GoString methods.
Message *string `location:"header" locationName:"x-amz-lex-message" min:"1" deprecated:"true" type:"string" sensitive:"true"`
// The format of the response message. One of the following values:
//
// * PlainText - The message contains plain UTF-8 text.
//
// * CustomPayload - The message is a custom format for the client.
//
// * SSML - The message contains text formatted for voice output.
//
// * Composite - The message contains an escaped JSON object containing one
// or more messages from the groups that messages were assigned to when the
// intent was created.
MessageFormat *string `location:"header" locationName:"x-amz-lex-message-format" type:"string" enum:"MessageFormatType"`
// Map of key/value pairs representing session-specific context information.
SessionAttributes aws.JSONValue `location:"header" locationName:"x-amz-lex-session-attributes" type:"jsonvalue"`
// A unique identifier for the session.
SessionId *string `location:"header" locationName:"x-amz-lex-session-id" type:"string"`
// If the dialogState is ElicitSlot, returns the name of the slot for which
// Amazon Lex is eliciting a value.
SlotToElicit *string `location:"header" locationName:"x-amz-lex-slot-to-elicit" type:"string"`
// Map of zero or more intent slots Amazon Lex detected from the user input
// during the conversation.
//
// Amazon Lex creates a resolution list containing likely values for a slot.
// The value that it returns is determined by the valueSelectionStrategy selected
// when the slot type was created or updated. If valueSelectionStrategy is set
// to ORIGINAL_VALUE, the value provided by the user is returned, if the user
// value is similar to the slot values. If valueSelectionStrategy is set to
// TOP_RESOLUTION Amazon Lex returns the first value in the resolution list
// or, if there is no resolution list, null. If you don't specify a valueSelectionStrategy
// the default is ORIGINAL_VALUE.
Slots aws.JSONValue `location:"header" locationName:"x-amz-lex-slots" type:"jsonvalue"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s PutSessionOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s PutSessionOutput) GoString() string {
return s.String()
}
// SetActiveContexts sets the ActiveContexts field's value.
func (s *PutSessionOutput) SetActiveContexts(v string) *PutSessionOutput {
s.ActiveContexts = &v
return s
}
// SetAudioStream sets the AudioStream field's value.
func (s *PutSessionOutput) SetAudioStream(v io.ReadCloser) *PutSessionOutput {
s.AudioStream = v
return s
}
// SetContentType sets the ContentType field's value.
func (s *PutSessionOutput) SetContentType(v string) *PutSessionOutput {
s.ContentType = &v
return s
}
// SetDialogState sets the DialogState field's value.
func (s *PutSessionOutput) SetDialogState(v string) *PutSessionOutput {
s.DialogState = &v
return s
}
// SetEncodedMessage sets the EncodedMessage field's value.
func (s *PutSessionOutput) SetEncodedMessage(v string) *PutSessionOutput {
s.EncodedMessage = &v
return s
}
// SetIntentName sets the IntentName field's value.
func (s *PutSessionOutput) SetIntentName(v string) *PutSessionOutput {
s.IntentName = &v
return s
}
// SetMessage sets the Message field's value.
func (s *PutSessionOutput) SetMessage(v string) *PutSessionOutput {
s.Message = &v
return s
}
// SetMessageFormat sets the MessageFormat field's value.
func (s *PutSessionOutput) SetMessageFormat(v string) *PutSessionOutput {
s.MessageFormat = &v
return s
}
// SetSessionAttributes sets the SessionAttributes field's value.
func (s *PutSessionOutput) SetSessionAttributes(v aws.JSONValue) *PutSessionOutput {
s.SessionAttributes = v
return s
}
// SetSessionId sets the SessionId field's value.
func (s *PutSessionOutput) SetSessionId(v string) *PutSessionOutput {
s.SessionId = &v
return s
}
// SetSlotToElicit sets the SlotToElicit field's value.
func (s *PutSessionOutput) SetSlotToElicit(v string) *PutSessionOutput {
s.SlotToElicit = &v
return s
}
// SetSlots sets the Slots field's value.
func (s *PutSessionOutput) SetSlots(v aws.JSONValue) *PutSessionOutput {
s.Slots = v
return s
}
// The input speech is too long.
type RequestTimeoutException struct {
_ struct{} `type:"structure"`
RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`
Message_ *string `locationName:"message" type:"string"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s RequestTimeoutException) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s RequestTimeoutException) GoString() string {
return s.String()
}
func newErrorRequestTimeoutException(v protocol.ResponseMetadata) error {
return &RequestTimeoutException{
RespMetadata: v,
}
}
// Code returns the exception type name.
func (s *RequestTimeoutException) Code() string {
return "RequestTimeoutException"
}
// Message returns the exception's message.
func (s *RequestTimeoutException) Message() string {
if s.Message_ != nil {
return *s.Message_
}
return ""
}
// OrigErr always returns nil, satisfies awserr.Error interface.
func (s *RequestTimeoutException) OrigErr() error {
return nil
}
func (s *RequestTimeoutException) Error() string {
return fmt.Sprintf("%s: %s", s.Code(), s.Message())
}
// Status code returns the HTTP status code for the request's response error.
func (s *RequestTimeoutException) StatusCode() int {
return s.RespMetadata.StatusCode
}
// RequestID returns the service's response RequestID for request.
func (s *RequestTimeoutException) RequestID() string {
return s.RespMetadata.RequestID
}
// If you configure a response card when creating your bots, Amazon Lex substitutes
// the session attributes and slot values that are available, and then returns
// it. The response card can also come from a Lambda function ( dialogCodeHook
// and fulfillmentActivity on an intent).
type ResponseCard struct {
_ struct{} `type:"structure"`
// The content type of the response.
ContentType *string `locationName:"contentType" type:"string" enum:"ContentType"`
// An array of attachment objects representing options.
GenericAttachments []*GenericAttachment `locationName:"genericAttachments" type:"list"`
// The version of the response card format.
Version *string `locationName:"version" type:"string"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s ResponseCard) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s ResponseCard) GoString() string {
return s.String()
}
// SetContentType sets the ContentType field's value.
func (s *ResponseCard) SetContentType(v string) *ResponseCard {
s.ContentType = &v
return s
}
// SetGenericAttachments sets the GenericAttachments field's value.
func (s *ResponseCard) SetGenericAttachments(v []*GenericAttachment) *ResponseCard {
s.GenericAttachments = v
return s
}
// SetVersion sets the Version field's value.
func (s *ResponseCard) SetVersion(v string) *ResponseCard {
s.Version = &v
return s
}
// The sentiment expressed in an utterance.
//
// When the bot is configured to send utterances to Amazon Comprehend for sentiment
// analysis, this field structure contains the result of the analysis.
type SentimentResponse struct {
_ struct{} `type:"structure"`
// The inferred sentiment that Amazon Comprehend has the highest confidence
// in.
SentimentLabel *string `locationName:"sentimentLabel" type:"string"`
// The likelihood that the sentiment was correctly inferred.
SentimentScore *string `locationName:"sentimentScore" type:"string"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s SentimentResponse) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s SentimentResponse) GoString() string {
return s.String()
}
// SetSentimentLabel sets the SentimentLabel field's value.
func (s *SentimentResponse) SetSentimentLabel(v string) *SentimentResponse {
s.SentimentLabel = &v
return s
}
// SetSentimentScore sets the SentimentScore field's value.
func (s *SentimentResponse) SetSentimentScore(v string) *SentimentResponse {
s.SentimentScore = &v
return s
}
// The Content-Type header (PostContent API) has an invalid value.
type UnsupportedMediaTypeException struct {
_ struct{} `type:"structure"`
RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`
Message_ *string `locationName:"message" type:"string"`
}
// String returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s UnsupportedMediaTypeException) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation.
//
// API parameter values that are decorated as "sensitive" in the API will not
// be included in the string output. The member name will be present, but the
// value will be replaced with "sensitive".
func (s UnsupportedMediaTypeException) GoString() string {
return s.String()
}
func newErrorUnsupportedMediaTypeException(v protocol.ResponseMetadata) error {
return &UnsupportedMediaTypeException{
RespMetadata: v,
}
}
// Code returns the exception type name.
func (s *UnsupportedMediaTypeException) Code() string {
return "UnsupportedMediaTypeException"
}
// Message returns the exception's message.
func (s *UnsupportedMediaTypeException) Message() string {
if s.Message_ != nil {
return *s.Message_
}
return ""
}
// OrigErr always returns nil, satisfies awserr.Error interface.
func (s *UnsupportedMediaTypeException) OrigErr() error {
return nil
}
func (s *UnsupportedMediaTypeException) Error() string {
return fmt.Sprintf("%s: %s", s.Code(), s.Message())
}
// Status code returns the HTTP status code for the request's response error.
func (s *UnsupportedMediaTypeException) StatusCode() int {
return s.RespMetadata.StatusCode
}
// RequestID returns the service's response RequestID for request.
func (s *UnsupportedMediaTypeException) RequestID() string {
return s.RespMetadata.RequestID
}
const (
// ConfirmationStatusNone is a ConfirmationStatus enum value
ConfirmationStatusNone = "None"
// ConfirmationStatusConfirmed is a ConfirmationStatus enum value
ConfirmationStatusConfirmed = "Confirmed"
// ConfirmationStatusDenied is a ConfirmationStatus enum value
ConfirmationStatusDenied = "Denied"
)
// ConfirmationStatus_Values returns all elements of the ConfirmationStatus enum
func ConfirmationStatus_Values() []string {
return []string{
ConfirmationStatusNone,
ConfirmationStatusConfirmed,
ConfirmationStatusDenied,
}
}
const (
// ContentTypeApplicationVndAmazonawsCardGeneric is a ContentType enum value
ContentTypeApplicationVndAmazonawsCardGeneric = "application/vnd.amazonaws.card.generic"
)
// ContentType_Values returns all elements of the ContentType enum
func ContentType_Values() []string {
return []string{
ContentTypeApplicationVndAmazonawsCardGeneric,
}
}
const (
// DialogActionTypeElicitIntent is a DialogActionType enum value
DialogActionTypeElicitIntent = "ElicitIntent"
// DialogActionTypeConfirmIntent is a DialogActionType enum value
DialogActionTypeConfirmIntent = "ConfirmIntent"
// DialogActionTypeElicitSlot is a DialogActionType enum value
DialogActionTypeElicitSlot = "ElicitSlot"
// DialogActionTypeClose is a DialogActionType enum value
DialogActionTypeClose = "Close"
// DialogActionTypeDelegate is a DialogActionType enum value
DialogActionTypeDelegate = "Delegate"
)
// DialogActionType_Values returns all elements of the DialogActionType enum
func DialogActionType_Values() []string {
return []string{
DialogActionTypeElicitIntent,
DialogActionTypeConfirmIntent,
DialogActionTypeElicitSlot,
DialogActionTypeClose,
DialogActionTypeDelegate,
}
}
const (
// DialogStateElicitIntent is a DialogState enum value
DialogStateElicitIntent = "ElicitIntent"
// DialogStateConfirmIntent is a DialogState enum value
DialogStateConfirmIntent = "ConfirmIntent"
// DialogStateElicitSlot is a DialogState enum value
DialogStateElicitSlot = "ElicitSlot"
// DialogStateFulfilled is a DialogState enum value
DialogStateFulfilled = "Fulfilled"
// DialogStateReadyForFulfillment is a DialogState enum value
DialogStateReadyForFulfillment = "ReadyForFulfillment"
// DialogStateFailed is a DialogState enum value
DialogStateFailed = "Failed"
)
// DialogState_Values returns all elements of the DialogState enum
func DialogState_Values() []string {
return []string{
DialogStateElicitIntent,
DialogStateConfirmIntent,
DialogStateElicitSlot,
DialogStateFulfilled,
DialogStateReadyForFulfillment,
DialogStateFailed,
}
}
const (
// FulfillmentStateFulfilled is a FulfillmentState enum value
FulfillmentStateFulfilled = "Fulfilled"
// FulfillmentStateFailed is a FulfillmentState enum value
FulfillmentStateFailed = "Failed"
// FulfillmentStateReadyForFulfillment is a FulfillmentState enum value
FulfillmentStateReadyForFulfillment = "ReadyForFulfillment"
)
// FulfillmentState_Values returns all elements of the FulfillmentState enum
func FulfillmentState_Values() []string {
return []string{
FulfillmentStateFulfilled,
FulfillmentStateFailed,
FulfillmentStateReadyForFulfillment,
}
}
const (
// MessageFormatTypePlainText is a MessageFormatType enum value
MessageFormatTypePlainText = "PlainText"
// MessageFormatTypeCustomPayload is a MessageFormatType enum value
MessageFormatTypeCustomPayload = "CustomPayload"
// MessageFormatTypeSsml is a MessageFormatType enum value
MessageFormatTypeSsml = "SSML"
// MessageFormatTypeComposite is a MessageFormatType enum value
MessageFormatTypeComposite = "Composite"
)
// MessageFormatType_Values returns all elements of the MessageFormatType enum
func MessageFormatType_Values() []string {
return []string{
MessageFormatTypePlainText,
MessageFormatTypeCustomPayload,
MessageFormatTypeSsml,
MessageFormatTypeComposite,
}
}
|