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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type AggregatedUtterancesFilterName string
// Enum values for AggregatedUtterancesFilterName
const (
AggregatedUtterancesFilterNameUtterance AggregatedUtterancesFilterName = "Utterance"
)
// Values returns all known values for AggregatedUtterancesFilterName. Note that
// this can be expanded in the future, and so it is only as up to date as the
// client. The ordering of this slice is not guaranteed to be stable across
// updates.
func (AggregatedUtterancesFilterName) Values() []AggregatedUtterancesFilterName {
return []AggregatedUtterancesFilterName{
"Utterance",
}
}
type AggregatedUtterancesFilterOperator string
// Enum values for AggregatedUtterancesFilterOperator
const (
AggregatedUtterancesFilterOperatorContains AggregatedUtterancesFilterOperator = "CO"
AggregatedUtterancesFilterOperatorEquals AggregatedUtterancesFilterOperator = "EQ"
)
// Values returns all known values for AggregatedUtterancesFilterOperator. Note
// that this can be expanded in the future, and so it is only as up to date as the
// client. The ordering of this slice is not guaranteed to be stable across
// updates.
func (AggregatedUtterancesFilterOperator) Values() []AggregatedUtterancesFilterOperator {
return []AggregatedUtterancesFilterOperator{
"CO",
"EQ",
}
}
type AggregatedUtterancesSortAttribute string
// Enum values for AggregatedUtterancesSortAttribute
const (
AggregatedUtterancesSortAttributeHitCount AggregatedUtterancesSortAttribute = "HitCount"
AggregatedUtterancesSortAttributeMissedCount AggregatedUtterancesSortAttribute = "MissedCount"
)
// Values returns all known values for AggregatedUtterancesSortAttribute. Note
// that this can be expanded in the future, and so it is only as up to date as the
// client. The ordering of this slice is not guaranteed to be stable across
// updates.
func (AggregatedUtterancesSortAttribute) Values() []AggregatedUtterancesSortAttribute {
return []AggregatedUtterancesSortAttribute{
"HitCount",
"MissedCount",
}
}
type AnalyticsBinByName string
// Enum values for AnalyticsBinByName
const (
AnalyticsBinByNameConversationStartTime AnalyticsBinByName = "ConversationStartTime"
AnalyticsBinByNameUtteranceTimestamp AnalyticsBinByName = "UtteranceTimestamp"
)
// Values returns all known values for AnalyticsBinByName. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (AnalyticsBinByName) Values() []AnalyticsBinByName {
return []AnalyticsBinByName{
"ConversationStartTime",
"UtteranceTimestamp",
}
}
type AnalyticsCommonFilterName string
// Enum values for AnalyticsCommonFilterName
const (
AnalyticsCommonFilterNameBotAliasId AnalyticsCommonFilterName = "BotAliasId"
AnalyticsCommonFilterNameBotVersion AnalyticsCommonFilterName = "BotVersion"
AnalyticsCommonFilterNameLocaleId AnalyticsCommonFilterName = "LocaleId"
AnalyticsCommonFilterNameModality AnalyticsCommonFilterName = "Modality"
AnalyticsCommonFilterNameChannel AnalyticsCommonFilterName = "Channel"
)
// Values returns all known values for AnalyticsCommonFilterName. Note that this
// can be expanded in the future, and so it is only as up to date as the client.
// The ordering of this slice is not guaranteed to be stable across updates.
func (AnalyticsCommonFilterName) Values() []AnalyticsCommonFilterName {
return []AnalyticsCommonFilterName{
"BotAliasId",
"BotVersion",
"LocaleId",
"Modality",
"Channel",
}
}
type AnalyticsFilterOperator string
// Enum values for AnalyticsFilterOperator
const (
AnalyticsFilterOperatorEquals AnalyticsFilterOperator = "EQ"
AnalyticsFilterOperatorGreaterThan AnalyticsFilterOperator = "GT"
AnalyticsFilterOperatorLessThan AnalyticsFilterOperator = "LT"
)
// Values returns all known values for AnalyticsFilterOperator. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (AnalyticsFilterOperator) Values() []AnalyticsFilterOperator {
return []AnalyticsFilterOperator{
"EQ",
"GT",
"LT",
}
}
type AnalyticsIntentField string
// Enum values for AnalyticsIntentField
const (
AnalyticsIntentFieldIntentName AnalyticsIntentField = "IntentName"
AnalyticsIntentFieldIntentEndState AnalyticsIntentField = "IntentEndState"
AnalyticsIntentFieldIntentLevel AnalyticsIntentField = "IntentLevel"
)
// Values returns all known values for AnalyticsIntentField. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (AnalyticsIntentField) Values() []AnalyticsIntentField {
return []AnalyticsIntentField{
"IntentName",
"IntentEndState",
"IntentLevel",
}
}
type AnalyticsIntentFilterName string
// Enum values for AnalyticsIntentFilterName
const (
AnalyticsIntentFilterNameBotAliasId AnalyticsIntentFilterName = "BotAliasId"
AnalyticsIntentFilterNameBotVersion AnalyticsIntentFilterName = "BotVersion"
AnalyticsIntentFilterNameLocaleId AnalyticsIntentFilterName = "LocaleId"
AnalyticsIntentFilterNameModality AnalyticsIntentFilterName = "Modality"
AnalyticsIntentFilterNameChannel AnalyticsIntentFilterName = "Channel"
AnalyticsIntentFilterNameSessionId AnalyticsIntentFilterName = "SessionId"
AnalyticsIntentFilterNameOriginatingRequestId AnalyticsIntentFilterName = "OriginatingRequestId"
AnalyticsIntentFilterNameIntentName AnalyticsIntentFilterName = "IntentName"
AnalyticsIntentFilterNameIntentEndState AnalyticsIntentFilterName = "IntentEndState"
)
// Values returns all known values for AnalyticsIntentFilterName. Note that this
// can be expanded in the future, and so it is only as up to date as the client.
// The ordering of this slice is not guaranteed to be stable across updates.
func (AnalyticsIntentFilterName) Values() []AnalyticsIntentFilterName {
return []AnalyticsIntentFilterName{
"BotAliasId",
"BotVersion",
"LocaleId",
"Modality",
"Channel",
"SessionId",
"OriginatingRequestId",
"IntentName",
"IntentEndState",
}
}
type AnalyticsIntentMetricName string
// Enum values for AnalyticsIntentMetricName
const (
AnalyticsIntentMetricNameCount AnalyticsIntentMetricName = "Count"
AnalyticsIntentMetricNameSuccess AnalyticsIntentMetricName = "Success"
AnalyticsIntentMetricNameFailure AnalyticsIntentMetricName = "Failure"
AnalyticsIntentMetricNameSwitched AnalyticsIntentMetricName = "Switched"
AnalyticsIntentMetricNameDropped AnalyticsIntentMetricName = "Dropped"
)
// Values returns all known values for AnalyticsIntentMetricName. Note that this
// can be expanded in the future, and so it is only as up to date as the client.
// The ordering of this slice is not guaranteed to be stable across updates.
func (AnalyticsIntentMetricName) Values() []AnalyticsIntentMetricName {
return []AnalyticsIntentMetricName{
"Count",
"Success",
"Failure",
"Switched",
"Dropped",
}
}
type AnalyticsIntentStageField string
// Enum values for AnalyticsIntentStageField
const (
AnalyticsIntentStageFieldIntentStageName AnalyticsIntentStageField = "IntentStageName"
AnalyticsIntentStageFieldSwitchedToIntent AnalyticsIntentStageField = "SwitchedToIntent"
)
// Values returns all known values for AnalyticsIntentStageField. Note that this
// can be expanded in the future, and so it is only as up to date as the client.
// The ordering of this slice is not guaranteed to be stable across updates.
func (AnalyticsIntentStageField) Values() []AnalyticsIntentStageField {
return []AnalyticsIntentStageField{
"IntentStageName",
"SwitchedToIntent",
}
}
type AnalyticsIntentStageFilterName string
// Enum values for AnalyticsIntentStageFilterName
const (
AnalyticsIntentStageFilterNameBotAliasId AnalyticsIntentStageFilterName = "BotAliasId"
AnalyticsIntentStageFilterNameBotVersion AnalyticsIntentStageFilterName = "BotVersion"
AnalyticsIntentStageFilterNameLocaleId AnalyticsIntentStageFilterName = "LocaleId"
AnalyticsIntentStageFilterNameModality AnalyticsIntentStageFilterName = "Modality"
AnalyticsIntentStageFilterNameChannel AnalyticsIntentStageFilterName = "Channel"
AnalyticsIntentStageFilterNameSessionId AnalyticsIntentStageFilterName = "SessionId"
AnalyticsIntentStageFilterNameOriginatingRequestId AnalyticsIntentStageFilterName = "OriginatingRequestId"
AnalyticsIntentStageFilterNameIntentName AnalyticsIntentStageFilterName = "IntentName"
AnalyticsIntentStageFilterNameIntentStageName AnalyticsIntentStageFilterName = "IntentStageName"
)
// Values returns all known values for AnalyticsIntentStageFilterName. Note that
// this can be expanded in the future, and so it is only as up to date as the
// client. The ordering of this slice is not guaranteed to be stable across
// updates.
func (AnalyticsIntentStageFilterName) Values() []AnalyticsIntentStageFilterName {
return []AnalyticsIntentStageFilterName{
"BotAliasId",
"BotVersion",
"LocaleId",
"Modality",
"Channel",
"SessionId",
"OriginatingRequestId",
"IntentName",
"IntentStageName",
}
}
type AnalyticsIntentStageMetricName string
// Enum values for AnalyticsIntentStageMetricName
const (
AnalyticsIntentStageMetricNameCount AnalyticsIntentStageMetricName = "Count"
AnalyticsIntentStageMetricNameSuccess AnalyticsIntentStageMetricName = "Success"
AnalyticsIntentStageMetricNameFailed AnalyticsIntentStageMetricName = "Failed"
AnalyticsIntentStageMetricNameDropped AnalyticsIntentStageMetricName = "Dropped"
AnalyticsIntentStageMetricNameRetry AnalyticsIntentStageMetricName = "Retry"
)
// Values returns all known values for AnalyticsIntentStageMetricName. Note that
// this can be expanded in the future, and so it is only as up to date as the
// client. The ordering of this slice is not guaranteed to be stable across
// updates.
func (AnalyticsIntentStageMetricName) Values() []AnalyticsIntentStageMetricName {
return []AnalyticsIntentStageMetricName{
"Count",
"Success",
"Failed",
"Dropped",
"Retry",
}
}
type AnalyticsInterval string
// Enum values for AnalyticsInterval
const (
AnalyticsIntervalOneHour AnalyticsInterval = "OneHour"
AnalyticsIntervalOneDay AnalyticsInterval = "OneDay"
)
// Values returns all known values for AnalyticsInterval. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (AnalyticsInterval) Values() []AnalyticsInterval {
return []AnalyticsInterval{
"OneHour",
"OneDay",
}
}
type AnalyticsMetricStatistic string
// Enum values for AnalyticsMetricStatistic
const (
AnalyticsMetricStatisticSum AnalyticsMetricStatistic = "Sum"
AnalyticsMetricStatisticAvg AnalyticsMetricStatistic = "Avg"
AnalyticsMetricStatisticMax AnalyticsMetricStatistic = "Max"
)
// Values returns all known values for AnalyticsMetricStatistic. Note that this
// can be expanded in the future, and so it is only as up to date as the client.
// The ordering of this slice is not guaranteed to be stable across updates.
func (AnalyticsMetricStatistic) Values() []AnalyticsMetricStatistic {
return []AnalyticsMetricStatistic{
"Sum",
"Avg",
"Max",
}
}
type AnalyticsModality string
// Enum values for AnalyticsModality
const (
AnalyticsModalitySpeech AnalyticsModality = "Speech"
AnalyticsModalityText AnalyticsModality = "Text"
AnalyticsModalityDtmf AnalyticsModality = "DTMF"
AnalyticsModalityMultiMode AnalyticsModality = "MultiMode"
)
// Values returns all known values for AnalyticsModality. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (AnalyticsModality) Values() []AnalyticsModality {
return []AnalyticsModality{
"Speech",
"Text",
"DTMF",
"MultiMode",
}
}
type AnalyticsNodeType string
// Enum values for AnalyticsNodeType
const (
AnalyticsNodeTypeInner AnalyticsNodeType = "Inner"
AnalyticsNodeTypeExit AnalyticsNodeType = "Exit"
)
// Values returns all known values for AnalyticsNodeType. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (AnalyticsNodeType) Values() []AnalyticsNodeType {
return []AnalyticsNodeType{
"Inner",
"Exit",
}
}
type AnalyticsSessionField string
// Enum values for AnalyticsSessionField
const (
AnalyticsSessionFieldConversationEndState AnalyticsSessionField = "ConversationEndState"
AnalyticsSessionFieldLocaleId AnalyticsSessionField = "LocaleId"
)
// Values returns all known values for AnalyticsSessionField. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (AnalyticsSessionField) Values() []AnalyticsSessionField {
return []AnalyticsSessionField{
"ConversationEndState",
"LocaleId",
}
}
type AnalyticsSessionFilterName string
// Enum values for AnalyticsSessionFilterName
const (
AnalyticsSessionFilterNameBotAliasId AnalyticsSessionFilterName = "BotAliasId"
AnalyticsSessionFilterNameBotVersion AnalyticsSessionFilterName = "BotVersion"
AnalyticsSessionFilterNameLocaleId AnalyticsSessionFilterName = "LocaleId"
AnalyticsSessionFilterNameModality AnalyticsSessionFilterName = "Modality"
AnalyticsSessionFilterNameChannel AnalyticsSessionFilterName = "Channel"
AnalyticsSessionFilterNameDuration AnalyticsSessionFilterName = "Duration"
AnalyticsSessionFilterNameConversationEndState AnalyticsSessionFilterName = "ConversationEndState"
AnalyticsSessionFilterNameSessionId AnalyticsSessionFilterName = "SessionId"
AnalyticsSessionFilterNameOriginatingRequestId AnalyticsSessionFilterName = "OriginatingRequestId"
AnalyticsSessionFilterNameIntentPath AnalyticsSessionFilterName = "IntentPath"
)
// Values returns all known values for AnalyticsSessionFilterName. Note that this
// can be expanded in the future, and so it is only as up to date as the client.
// The ordering of this slice is not guaranteed to be stable across updates.
func (AnalyticsSessionFilterName) Values() []AnalyticsSessionFilterName {
return []AnalyticsSessionFilterName{
"BotAliasId",
"BotVersion",
"LocaleId",
"Modality",
"Channel",
"Duration",
"ConversationEndState",
"SessionId",
"OriginatingRequestId",
"IntentPath",
}
}
type AnalyticsSessionMetricName string
// Enum values for AnalyticsSessionMetricName
const (
AnalyticsSessionMetricNameCount AnalyticsSessionMetricName = "Count"
AnalyticsSessionMetricNameSuccess AnalyticsSessionMetricName = "Success"
AnalyticsSessionMetricNameFailure AnalyticsSessionMetricName = "Failure"
AnalyticsSessionMetricNameDropped AnalyticsSessionMetricName = "Dropped"
AnalyticsSessionMetricNameDuration AnalyticsSessionMetricName = "Duration"
AnalyticsSessionMetricNameTurnsPerConversation AnalyticsSessionMetricName = "TurnsPerConversation"
AnalyticsSessionMetricNameConcurrency AnalyticsSessionMetricName = "Concurrency"
)
// Values returns all known values for AnalyticsSessionMetricName. Note that this
// can be expanded in the future, and so it is only as up to date as the client.
// The ordering of this slice is not guaranteed to be stable across updates.
func (AnalyticsSessionMetricName) Values() []AnalyticsSessionMetricName {
return []AnalyticsSessionMetricName{
"Count",
"Success",
"Failure",
"Dropped",
"Duration",
"TurnsPerConversation",
"Concurrency",
}
}
type AnalyticsSessionSortByName string
// Enum values for AnalyticsSessionSortByName
const (
AnalyticsSessionSortByNameConversationStartTime AnalyticsSessionSortByName = "ConversationStartTime"
AnalyticsSessionSortByNameNumberOfTurns AnalyticsSessionSortByName = "NumberOfTurns"
AnalyticsSessionSortByNameDuration AnalyticsSessionSortByName = "Duration"
)
// Values returns all known values for AnalyticsSessionSortByName. Note that this
// can be expanded in the future, and so it is only as up to date as the client.
// The ordering of this slice is not guaranteed to be stable across updates.
func (AnalyticsSessionSortByName) Values() []AnalyticsSessionSortByName {
return []AnalyticsSessionSortByName{
"ConversationStartTime",
"NumberOfTurns",
"Duration",
}
}
type AnalyticsSortOrder string
// Enum values for AnalyticsSortOrder
const (
AnalyticsSortOrderAscending AnalyticsSortOrder = "Ascending"
AnalyticsSortOrderDescending AnalyticsSortOrder = "Descending"
)
// Values returns all known values for AnalyticsSortOrder. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (AnalyticsSortOrder) Values() []AnalyticsSortOrder {
return []AnalyticsSortOrder{
"Ascending",
"Descending",
}
}
type AnalyticsUtteranceAttributeName string
// Enum values for AnalyticsUtteranceAttributeName
const (
AnalyticsUtteranceAttributeNameLastUsedIntent AnalyticsUtteranceAttributeName = "LastUsedIntent"
)
// Values returns all known values for AnalyticsUtteranceAttributeName. Note that
// this can be expanded in the future, and so it is only as up to date as the
// client. The ordering of this slice is not guaranteed to be stable across
// updates.
func (AnalyticsUtteranceAttributeName) Values() []AnalyticsUtteranceAttributeName {
return []AnalyticsUtteranceAttributeName{
"LastUsedIntent",
}
}
type AnalyticsUtteranceField string
// Enum values for AnalyticsUtteranceField
const (
AnalyticsUtteranceFieldUtteranceText AnalyticsUtteranceField = "UtteranceText"
AnalyticsUtteranceFieldUtteranceState AnalyticsUtteranceField = "UtteranceState"
)
// Values returns all known values for AnalyticsUtteranceField. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (AnalyticsUtteranceField) Values() []AnalyticsUtteranceField {
return []AnalyticsUtteranceField{
"UtteranceText",
"UtteranceState",
}
}
type AnalyticsUtteranceFilterName string
// Enum values for AnalyticsUtteranceFilterName
const (
AnalyticsUtteranceFilterNameBotAliasId AnalyticsUtteranceFilterName = "BotAliasId"
AnalyticsUtteranceFilterNameBotVersion AnalyticsUtteranceFilterName = "BotVersion"
AnalyticsUtteranceFilterNameLocaleId AnalyticsUtteranceFilterName = "LocaleId"
AnalyticsUtteranceFilterNameModality AnalyticsUtteranceFilterName = "Modality"
AnalyticsUtteranceFilterNameChannel AnalyticsUtteranceFilterName = "Channel"
AnalyticsUtteranceFilterNameSessionId AnalyticsUtteranceFilterName = "SessionId"
AnalyticsUtteranceFilterNameOriginatingRequestId AnalyticsUtteranceFilterName = "OriginatingRequestId"
AnalyticsUtteranceFilterNameUtteranceState AnalyticsUtteranceFilterName = "UtteranceState"
AnalyticsUtteranceFilterNameUtteranceText AnalyticsUtteranceFilterName = "UtteranceText"
)
// Values returns all known values for AnalyticsUtteranceFilterName. Note that
// this can be expanded in the future, and so it is only as up to date as the
// client. The ordering of this slice is not guaranteed to be stable across
// updates.
func (AnalyticsUtteranceFilterName) Values() []AnalyticsUtteranceFilterName {
return []AnalyticsUtteranceFilterName{
"BotAliasId",
"BotVersion",
"LocaleId",
"Modality",
"Channel",
"SessionId",
"OriginatingRequestId",
"UtteranceState",
"UtteranceText",
}
}
type AnalyticsUtteranceMetricName string
// Enum values for AnalyticsUtteranceMetricName
const (
AnalyticsUtteranceMetricNameCount AnalyticsUtteranceMetricName = "Count"
AnalyticsUtteranceMetricNameMissed AnalyticsUtteranceMetricName = "Missed"
AnalyticsUtteranceMetricNameDetected AnalyticsUtteranceMetricName = "Detected"
AnalyticsUtteranceMetricNameUtteranceTimestamp AnalyticsUtteranceMetricName = "UtteranceTimestamp"
)
// Values returns all known values for AnalyticsUtteranceMetricName. Note that
// this can be expanded in the future, and so it is only as up to date as the
// client. The ordering of this slice is not guaranteed to be stable across
// updates.
func (AnalyticsUtteranceMetricName) Values() []AnalyticsUtteranceMetricName {
return []AnalyticsUtteranceMetricName{
"Count",
"Missed",
"Detected",
"UtteranceTimestamp",
}
}
type AnalyticsUtteranceSortByName string
// Enum values for AnalyticsUtteranceSortByName
const (
AnalyticsUtteranceSortByNameUtteranceTimestamp AnalyticsUtteranceSortByName = "UtteranceTimestamp"
)
// Values returns all known values for AnalyticsUtteranceSortByName. Note that
// this can be expanded in the future, and so it is only as up to date as the
// client. The ordering of this slice is not guaranteed to be stable across
// updates.
func (AnalyticsUtteranceSortByName) Values() []AnalyticsUtteranceSortByName {
return []AnalyticsUtteranceSortByName{
"UtteranceTimestamp",
}
}
type AssociatedTranscriptFilterName string
// Enum values for AssociatedTranscriptFilterName
const (
AssociatedTranscriptFilterNameIntentId AssociatedTranscriptFilterName = "IntentId"
AssociatedTranscriptFilterNameSlotTypeId AssociatedTranscriptFilterName = "SlotTypeId"
)
// Values returns all known values for AssociatedTranscriptFilterName. Note that
// this can be expanded in the future, and so it is only as up to date as the
// client. The ordering of this slice is not guaranteed to be stable across
// updates.
func (AssociatedTranscriptFilterName) Values() []AssociatedTranscriptFilterName {
return []AssociatedTranscriptFilterName{
"IntentId",
"SlotTypeId",
}
}
type AudioRecognitionStrategy string
// Enum values for AudioRecognitionStrategy
const (
AudioRecognitionStrategyUseSlotValuesAsCustomVocabulary AudioRecognitionStrategy = "UseSlotValuesAsCustomVocabulary"
)
// Values returns all known values for AudioRecognitionStrategy. Note that this
// can be expanded in the future, and so it is only as up to date as the client.
// The ordering of this slice is not guaranteed to be stable across updates.
func (AudioRecognitionStrategy) Values() []AudioRecognitionStrategy {
return []AudioRecognitionStrategy{
"UseSlotValuesAsCustomVocabulary",
}
}
type BotAliasStatus string
// Enum values for BotAliasStatus
const (
BotAliasStatusCreating BotAliasStatus = "Creating"
BotAliasStatusAvailable BotAliasStatus = "Available"
BotAliasStatusDeleting BotAliasStatus = "Deleting"
BotAliasStatusFailed BotAliasStatus = "Failed"
)
// Values returns all known values for BotAliasStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (BotAliasStatus) Values() []BotAliasStatus {
return []BotAliasStatus{
"Creating",
"Available",
"Deleting",
"Failed",
}
}
type BotFilterName string
// Enum values for BotFilterName
const (
BotFilterNameBotName BotFilterName = "BotName"
BotFilterNameBotType BotFilterName = "BotType"
)
// Values returns all known values for BotFilterName. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (BotFilterName) Values() []BotFilterName {
return []BotFilterName{
"BotName",
"BotType",
}
}
type BotFilterOperator string
// Enum values for BotFilterOperator
const (
BotFilterOperatorContains BotFilterOperator = "CO"
BotFilterOperatorEquals BotFilterOperator = "EQ"
BotFilterOperatorNotEquals BotFilterOperator = "NE"
)
// Values returns all known values for BotFilterOperator. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (BotFilterOperator) Values() []BotFilterOperator {
return []BotFilterOperator{
"CO",
"EQ",
"NE",
}
}
type BotLocaleFilterName string
// Enum values for BotLocaleFilterName
const (
BotLocaleFilterNameBotLocaleName BotLocaleFilterName = "BotLocaleName"
)
// Values returns all known values for BotLocaleFilterName. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (BotLocaleFilterName) Values() []BotLocaleFilterName {
return []BotLocaleFilterName{
"BotLocaleName",
}
}
type BotLocaleFilterOperator string
// Enum values for BotLocaleFilterOperator
const (
BotLocaleFilterOperatorContains BotLocaleFilterOperator = "CO"
BotLocaleFilterOperatorEquals BotLocaleFilterOperator = "EQ"
)
// Values returns all known values for BotLocaleFilterOperator. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (BotLocaleFilterOperator) Values() []BotLocaleFilterOperator {
return []BotLocaleFilterOperator{
"CO",
"EQ",
}
}
type BotLocaleSortAttribute string
// Enum values for BotLocaleSortAttribute
const (
BotLocaleSortAttributeBotLocaleName BotLocaleSortAttribute = "BotLocaleName"
)
// Values returns all known values for BotLocaleSortAttribute. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (BotLocaleSortAttribute) Values() []BotLocaleSortAttribute {
return []BotLocaleSortAttribute{
"BotLocaleName",
}
}
type BotLocaleStatus string
// Enum values for BotLocaleStatus
const (
BotLocaleStatusCreating BotLocaleStatus = "Creating"
BotLocaleStatusBuilding BotLocaleStatus = "Building"
BotLocaleStatusBuilt BotLocaleStatus = "Built"
BotLocaleStatusReadyExpressTesting BotLocaleStatus = "ReadyExpressTesting"
BotLocaleStatusFailed BotLocaleStatus = "Failed"
BotLocaleStatusDeleting BotLocaleStatus = "Deleting"
BotLocaleStatusNotBuilt BotLocaleStatus = "NotBuilt"
BotLocaleStatusImporting BotLocaleStatus = "Importing"
BotLocaleStatusProcessing BotLocaleStatus = "Processing"
)
// Values returns all known values for BotLocaleStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (BotLocaleStatus) Values() []BotLocaleStatus {
return []BotLocaleStatus{
"Creating",
"Building",
"Built",
"ReadyExpressTesting",
"Failed",
"Deleting",
"NotBuilt",
"Importing",
"Processing",
}
}
type BotRecommendationStatus string
// Enum values for BotRecommendationStatus
const (
BotRecommendationStatusProcessing BotRecommendationStatus = "Processing"
BotRecommendationStatusDeleting BotRecommendationStatus = "Deleting"
BotRecommendationStatusDeleted BotRecommendationStatus = "Deleted"
BotRecommendationStatusDownloading BotRecommendationStatus = "Downloading"
BotRecommendationStatusUpdating BotRecommendationStatus = "Updating"
BotRecommendationStatusAvailable BotRecommendationStatus = "Available"
BotRecommendationStatusFailed BotRecommendationStatus = "Failed"
BotRecommendationStatusStopping BotRecommendationStatus = "Stopping"
BotRecommendationStatusStopped BotRecommendationStatus = "Stopped"
)
// Values returns all known values for BotRecommendationStatus. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (BotRecommendationStatus) Values() []BotRecommendationStatus {
return []BotRecommendationStatus{
"Processing",
"Deleting",
"Deleted",
"Downloading",
"Updating",
"Available",
"Failed",
"Stopping",
"Stopped",
}
}
type BotSortAttribute string
// Enum values for BotSortAttribute
const (
BotSortAttributeBotName BotSortAttribute = "BotName"
)
// Values returns all known values for BotSortAttribute. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (BotSortAttribute) Values() []BotSortAttribute {
return []BotSortAttribute{
"BotName",
}
}
type BotStatus string
// Enum values for BotStatus
const (
BotStatusCreating BotStatus = "Creating"
BotStatusAvailable BotStatus = "Available"
BotStatusInactive BotStatus = "Inactive"
BotStatusDeleting BotStatus = "Deleting"
BotStatusFailed BotStatus = "Failed"
BotStatusVersioning BotStatus = "Versioning"
BotStatusImporting BotStatus = "Importing"
BotStatusUpdating BotStatus = "Updating"
)
// Values returns all known values for BotStatus. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (BotStatus) Values() []BotStatus {
return []BotStatus{
"Creating",
"Available",
"Inactive",
"Deleting",
"Failed",
"Versioning",
"Importing",
"Updating",
}
}
type BotType string
// Enum values for BotType
const (
BotTypeBot BotType = "Bot"
BotTypeBotNetwork BotType = "BotNetwork"
)
// Values returns all known values for BotType. Note that this can be expanded in
// the future, and so it is only as up to date as the client. The ordering of this
// slice is not guaranteed to be stable across updates.
func (BotType) Values() []BotType {
return []BotType{
"Bot",
"BotNetwork",
}
}
type BotVersionSortAttribute string
// Enum values for BotVersionSortAttribute
const (
BotVersionSortAttributeBotVersion BotVersionSortAttribute = "BotVersion"
)
// Values returns all known values for BotVersionSortAttribute. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (BotVersionSortAttribute) Values() []BotVersionSortAttribute {
return []BotVersionSortAttribute{
"BotVersion",
}
}
type BuiltInIntentSortAttribute string
// Enum values for BuiltInIntentSortAttribute
const (
BuiltInIntentSortAttributeIntentSignature BuiltInIntentSortAttribute = "IntentSignature"
)
// Values returns all known values for BuiltInIntentSortAttribute. Note that this
// can be expanded in the future, and so it is only as up to date as the client.
// The ordering of this slice is not guaranteed to be stable across updates.
func (BuiltInIntentSortAttribute) Values() []BuiltInIntentSortAttribute {
return []BuiltInIntentSortAttribute{
"IntentSignature",
}
}
type BuiltInSlotTypeSortAttribute string
// Enum values for BuiltInSlotTypeSortAttribute
const (
BuiltInSlotTypeSortAttributeSlotTypeSignature BuiltInSlotTypeSortAttribute = "SlotTypeSignature"
)
// Values returns all known values for BuiltInSlotTypeSortAttribute. Note that
// this can be expanded in the future, and so it is only as up to date as the
// client. The ordering of this slice is not guaranteed to be stable across
// updates.
func (BuiltInSlotTypeSortAttribute) Values() []BuiltInSlotTypeSortAttribute {
return []BuiltInSlotTypeSortAttribute{
"SlotTypeSignature",
}
}
type ConversationEndState string
// Enum values for ConversationEndState
const (
ConversationEndStateSuccess ConversationEndState = "Success"
ConversationEndStateFailure ConversationEndState = "Failure"
ConversationEndStateDropped ConversationEndState = "Dropped"
)
// Values returns all known values for ConversationEndState. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ConversationEndState) Values() []ConversationEndState {
return []ConversationEndState{
"Success",
"Failure",
"Dropped",
}
}
type ConversationLogsInputModeFilter string
// Enum values for ConversationLogsInputModeFilter
const (
ConversationLogsInputModeFilterSpeech ConversationLogsInputModeFilter = "Speech"
ConversationLogsInputModeFilterText ConversationLogsInputModeFilter = "Text"
)
// Values returns all known values for ConversationLogsInputModeFilter. Note that
// this can be expanded in the future, and so it is only as up to date as the
// client. The ordering of this slice is not guaranteed to be stable across
// updates.
func (ConversationLogsInputModeFilter) Values() []ConversationLogsInputModeFilter {
return []ConversationLogsInputModeFilter{
"Speech",
"Text",
}
}
type CustomVocabularyStatus string
// Enum values for CustomVocabularyStatus
const (
CustomVocabularyStatusReady CustomVocabularyStatus = "Ready"
CustomVocabularyStatusDeleting CustomVocabularyStatus = "Deleting"
CustomVocabularyStatusExporting CustomVocabularyStatus = "Exporting"
CustomVocabularyStatusImporting CustomVocabularyStatus = "Importing"
CustomVocabularyStatusCreating CustomVocabularyStatus = "Creating"
)
// Values returns all known values for CustomVocabularyStatus. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (CustomVocabularyStatus) Values() []CustomVocabularyStatus {
return []CustomVocabularyStatus{
"Ready",
"Deleting",
"Exporting",
"Importing",
"Creating",
}
}
type DialogActionType string
// Enum values for DialogActionType
const (
DialogActionTypeElicitIntent DialogActionType = "ElicitIntent"
DialogActionTypeStartIntent DialogActionType = "StartIntent"
DialogActionTypeElicitSlot DialogActionType = "ElicitSlot"
DialogActionTypeEvaluateConditional DialogActionType = "EvaluateConditional"
DialogActionTypeInvokeDialogCodeHook DialogActionType = "InvokeDialogCodeHook"
DialogActionTypeConfirmIntent DialogActionType = "ConfirmIntent"
DialogActionTypeFulfillIntent DialogActionType = "FulfillIntent"
DialogActionTypeCloseIntent DialogActionType = "CloseIntent"
DialogActionTypeEndConversation DialogActionType = "EndConversation"
)
// Values returns all known values for DialogActionType. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (DialogActionType) Values() []DialogActionType {
return []DialogActionType{
"ElicitIntent",
"StartIntent",
"ElicitSlot",
"EvaluateConditional",
"InvokeDialogCodeHook",
"ConfirmIntent",
"FulfillIntent",
"CloseIntent",
"EndConversation",
}
}
type Effect string
// Enum values for Effect
const (
EffectAllow Effect = "Allow"
EffectDeny Effect = "Deny"
)
// Values returns all known values for Effect. Note that this can be expanded in
// the future, and so it is only as up to date as the client. The ordering of this
// slice is not guaranteed to be stable across updates.
func (Effect) Values() []Effect {
return []Effect{
"Allow",
"Deny",
}
}
type ErrorCode string
// Enum values for ErrorCode
const (
ErrorCodeDuplicateInput ErrorCode = "DUPLICATE_INPUT"
ErrorCodeResourceDoesNotExist ErrorCode = "RESOURCE_DOES_NOT_EXIST"
ErrorCodeResourceAlreadyExists ErrorCode = "RESOURCE_ALREADY_EXISTS"
ErrorCodeInternalServerFailure ErrorCode = "INTERNAL_SERVER_FAILURE"
)
// Values returns all known values for ErrorCode. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (ErrorCode) Values() []ErrorCode {
return []ErrorCode{
"DUPLICATE_INPUT",
"RESOURCE_DOES_NOT_EXIST",
"RESOURCE_ALREADY_EXISTS",
"INTERNAL_SERVER_FAILURE",
}
}
type ExportFilterName string
// Enum values for ExportFilterName
const (
ExportFilterNameExportResourceType ExportFilterName = "ExportResourceType"
)
// Values returns all known values for ExportFilterName. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ExportFilterName) Values() []ExportFilterName {
return []ExportFilterName{
"ExportResourceType",
}
}
type ExportFilterOperator string
// Enum values for ExportFilterOperator
const (
ExportFilterOperatorContains ExportFilterOperator = "CO"
ExportFilterOperatorEquals ExportFilterOperator = "EQ"
)
// Values returns all known values for ExportFilterOperator. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ExportFilterOperator) Values() []ExportFilterOperator {
return []ExportFilterOperator{
"CO",
"EQ",
}
}
type ExportSortAttribute string
// Enum values for ExportSortAttribute
const (
ExportSortAttributeLastUpdatedDateTime ExportSortAttribute = "LastUpdatedDateTime"
)
// Values returns all known values for ExportSortAttribute. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ExportSortAttribute) Values() []ExportSortAttribute {
return []ExportSortAttribute{
"LastUpdatedDateTime",
}
}
type ExportStatus string
// Enum values for ExportStatus
const (
ExportStatusInProgress ExportStatus = "InProgress"
ExportStatusCompleted ExportStatus = "Completed"
ExportStatusFailed ExportStatus = "Failed"
ExportStatusDeleting ExportStatus = "Deleting"
)
// Values returns all known values for ExportStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ExportStatus) Values() []ExportStatus {
return []ExportStatus{
"InProgress",
"Completed",
"Failed",
"Deleting",
}
}
type GenerationSortByAttribute string
// Enum values for GenerationSortByAttribute
const (
GenerationSortByAttributeCreationStartTime GenerationSortByAttribute = "creationStartTime"
GenerationSortByAttributeLastUpdatedTime GenerationSortByAttribute = "lastUpdatedTime"
)
// Values returns all known values for GenerationSortByAttribute. Note that this
// can be expanded in the future, and so it is only as up to date as the client.
// The ordering of this slice is not guaranteed to be stable across updates.
func (GenerationSortByAttribute) Values() []GenerationSortByAttribute {
return []GenerationSortByAttribute{
"creationStartTime",
"lastUpdatedTime",
}
}
type GenerationStatus string
// Enum values for GenerationStatus
const (
GenerationStatusFailed GenerationStatus = "Failed"
GenerationStatusComplete GenerationStatus = "Complete"
GenerationStatusInProgress GenerationStatus = "InProgress"
)
// Values returns all known values for GenerationStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (GenerationStatus) Values() []GenerationStatus {
return []GenerationStatus{
"Failed",
"Complete",
"InProgress",
}
}
type ImportExportFileFormat string
// Enum values for ImportExportFileFormat
const (
ImportExportFileFormatLexJson ImportExportFileFormat = "LexJson"
ImportExportFileFormatTsv ImportExportFileFormat = "TSV"
ImportExportFileFormatCsv ImportExportFileFormat = "CSV"
)
// Values returns all known values for ImportExportFileFormat. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ImportExportFileFormat) Values() []ImportExportFileFormat {
return []ImportExportFileFormat{
"LexJson",
"TSV",
"CSV",
}
}
type ImportFilterName string
// Enum values for ImportFilterName
const (
ImportFilterNameImportResourceType ImportFilterName = "ImportResourceType"
)
// Values returns all known values for ImportFilterName. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ImportFilterName) Values() []ImportFilterName {
return []ImportFilterName{
"ImportResourceType",
}
}
type ImportFilterOperator string
// Enum values for ImportFilterOperator
const (
ImportFilterOperatorContains ImportFilterOperator = "CO"
ImportFilterOperatorEquals ImportFilterOperator = "EQ"
)
// Values returns all known values for ImportFilterOperator. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ImportFilterOperator) Values() []ImportFilterOperator {
return []ImportFilterOperator{
"CO",
"EQ",
}
}
type ImportResourceType string
// Enum values for ImportResourceType
const (
ImportResourceTypeBot ImportResourceType = "Bot"
ImportResourceTypeBotLocale ImportResourceType = "BotLocale"
ImportResourceTypeCustomVocabulary ImportResourceType = "CustomVocabulary"
ImportResourceTypeTestSet ImportResourceType = "TestSet"
)
// Values returns all known values for ImportResourceType. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ImportResourceType) Values() []ImportResourceType {
return []ImportResourceType{
"Bot",
"BotLocale",
"CustomVocabulary",
"TestSet",
}
}
type ImportSortAttribute string
// Enum values for ImportSortAttribute
const (
ImportSortAttributeLastUpdatedDateTime ImportSortAttribute = "LastUpdatedDateTime"
)
// Values returns all known values for ImportSortAttribute. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ImportSortAttribute) Values() []ImportSortAttribute {
return []ImportSortAttribute{
"LastUpdatedDateTime",
}
}
type ImportStatus string
// Enum values for ImportStatus
const (
ImportStatusInProgress ImportStatus = "InProgress"
ImportStatusCompleted ImportStatus = "Completed"
ImportStatusFailed ImportStatus = "Failed"
ImportStatusDeleting ImportStatus = "Deleting"
)
// Values returns all known values for ImportStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ImportStatus) Values() []ImportStatus {
return []ImportStatus{
"InProgress",
"Completed",
"Failed",
"Deleting",
}
}
type IntentFilterName string
// Enum values for IntentFilterName
const (
IntentFilterNameIntentName IntentFilterName = "IntentName"
)
// Values returns all known values for IntentFilterName. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (IntentFilterName) Values() []IntentFilterName {
return []IntentFilterName{
"IntentName",
}
}
type IntentFilterOperator string
// Enum values for IntentFilterOperator
const (
IntentFilterOperatorContains IntentFilterOperator = "CO"
IntentFilterOperatorEquals IntentFilterOperator = "EQ"
)
// Values returns all known values for IntentFilterOperator. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (IntentFilterOperator) Values() []IntentFilterOperator {
return []IntentFilterOperator{
"CO",
"EQ",
}
}
type IntentSortAttribute string
// Enum values for IntentSortAttribute
const (
IntentSortAttributeIntentName IntentSortAttribute = "IntentName"
IntentSortAttributeLastUpdatedDateTime IntentSortAttribute = "LastUpdatedDateTime"
)
// Values returns all known values for IntentSortAttribute. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (IntentSortAttribute) Values() []IntentSortAttribute {
return []IntentSortAttribute{
"IntentName",
"LastUpdatedDateTime",
}
}
type IntentState string
// Enum values for IntentState
const (
IntentStateFailed IntentState = "Failed"
IntentStateFulfilled IntentState = "Fulfilled"
IntentStateInProgress IntentState = "InProgress"
IntentStateReadyForFulfillment IntentState = "ReadyForFulfillment"
IntentStateWaiting IntentState = "Waiting"
IntentStateFulfillmentInProgress IntentState = "FulfillmentInProgress"
)
// Values returns all known values for IntentState. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (IntentState) Values() []IntentState {
return []IntentState{
"Failed",
"Fulfilled",
"InProgress",
"ReadyForFulfillment",
"Waiting",
"FulfillmentInProgress",
}
}
type MergeStrategy string
// Enum values for MergeStrategy
const (
MergeStrategyOverwrite MergeStrategy = "Overwrite"
MergeStrategyFailOnConflict MergeStrategy = "FailOnConflict"
MergeStrategyAppend MergeStrategy = "Append"
)
// Values returns all known values for MergeStrategy. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (MergeStrategy) Values() []MergeStrategy {
return []MergeStrategy{
"Overwrite",
"FailOnConflict",
"Append",
}
}
type MessageSelectionStrategy string
// Enum values for MessageSelectionStrategy
const (
MessageSelectionStrategyRandom MessageSelectionStrategy = "Random"
MessageSelectionStrategyOrdered MessageSelectionStrategy = "Ordered"
)
// Values returns all known values for MessageSelectionStrategy. Note that this
// can be expanded in the future, and so it is only as up to date as the client.
// The ordering of this slice is not guaranteed to be stable across updates.
func (MessageSelectionStrategy) Values() []MessageSelectionStrategy {
return []MessageSelectionStrategy{
"Random",
"Ordered",
}
}
type ObfuscationSettingType string
// Enum values for ObfuscationSettingType
const (
ObfuscationSettingTypeNone ObfuscationSettingType = "None"
ObfuscationSettingTypeDefaultObfuscation ObfuscationSettingType = "DefaultObfuscation"
)
// Values returns all known values for ObfuscationSettingType. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ObfuscationSettingType) Values() []ObfuscationSettingType {
return []ObfuscationSettingType{
"None",
"DefaultObfuscation",
}
}
type PromptAttempt string
// Enum values for PromptAttempt
const (
PromptAttemptInitial PromptAttempt = "Initial"
PromptAttemptRetry1 PromptAttempt = "Retry1"
PromptAttemptRetry2 PromptAttempt = "Retry2"
PromptAttemptRetry3 PromptAttempt = "Retry3"
PromptAttemptRetry4 PromptAttempt = "Retry4"
PromptAttemptRetry5 PromptAttempt = "Retry5"
)
// Values returns all known values for PromptAttempt. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (PromptAttempt) Values() []PromptAttempt {
return []PromptAttempt{
"Initial",
"Retry1",
"Retry2",
"Retry3",
"Retry4",
"Retry5",
}
}
type SearchOrder string
// Enum values for SearchOrder
const (
SearchOrderAscending SearchOrder = "Ascending"
SearchOrderDescending SearchOrder = "Descending"
)
// Values returns all known values for SearchOrder. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (SearchOrder) Values() []SearchOrder {
return []SearchOrder{
"Ascending",
"Descending",
}
}
type SlotConstraint string
// Enum values for SlotConstraint
const (
SlotConstraintRequired SlotConstraint = "Required"
SlotConstraintOptional SlotConstraint = "Optional"
)
// Values returns all known values for SlotConstraint. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (SlotConstraint) Values() []SlotConstraint {
return []SlotConstraint{
"Required",
"Optional",
}
}
type SlotFilterName string
// Enum values for SlotFilterName
const (
SlotFilterNameSlotName SlotFilterName = "SlotName"
)
// Values returns all known values for SlotFilterName. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (SlotFilterName) Values() []SlotFilterName {
return []SlotFilterName{
"SlotName",
}
}
type SlotFilterOperator string
// Enum values for SlotFilterOperator
const (
SlotFilterOperatorContains SlotFilterOperator = "CO"
SlotFilterOperatorEquals SlotFilterOperator = "EQ"
)
// Values returns all known values for SlotFilterOperator. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (SlotFilterOperator) Values() []SlotFilterOperator {
return []SlotFilterOperator{
"CO",
"EQ",
}
}
type SlotResolutionStrategy string
// Enum values for SlotResolutionStrategy
const (
SlotResolutionStrategyEnhancedFallback SlotResolutionStrategy = "EnhancedFallback"
SlotResolutionStrategyDefault SlotResolutionStrategy = "Default"
)
// Values returns all known values for SlotResolutionStrategy. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (SlotResolutionStrategy) Values() []SlotResolutionStrategy {
return []SlotResolutionStrategy{
"EnhancedFallback",
"Default",
}
}
type SlotShape string
// Enum values for SlotShape
const (
SlotShapeScalar SlotShape = "Scalar"
SlotShapeList SlotShape = "List"
)
// Values returns all known values for SlotShape. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (SlotShape) Values() []SlotShape {
return []SlotShape{
"Scalar",
"List",
}
}
type SlotSortAttribute string
// Enum values for SlotSortAttribute
const (
SlotSortAttributeSlotName SlotSortAttribute = "SlotName"
SlotSortAttributeLastUpdatedDateTime SlotSortAttribute = "LastUpdatedDateTime"
)
// Values returns all known values for SlotSortAttribute. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (SlotSortAttribute) Values() []SlotSortAttribute {
return []SlotSortAttribute{
"SlotName",
"LastUpdatedDateTime",
}
}
type SlotTypeCategory string
// Enum values for SlotTypeCategory
const (
SlotTypeCategoryCustom SlotTypeCategory = "Custom"
SlotTypeCategoryExtended SlotTypeCategory = "Extended"
SlotTypeCategoryExternalGrammar SlotTypeCategory = "ExternalGrammar"
SlotTypeCategoryComposite SlotTypeCategory = "Composite"
)
// Values returns all known values for SlotTypeCategory. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (SlotTypeCategory) Values() []SlotTypeCategory {
return []SlotTypeCategory{
"Custom",
"Extended",
"ExternalGrammar",
"Composite",
}
}
type SlotTypeFilterName string
// Enum values for SlotTypeFilterName
const (
SlotTypeFilterNameSlotTypeName SlotTypeFilterName = "SlotTypeName"
SlotTypeFilterNameExternalSourceType SlotTypeFilterName = "ExternalSourceType"
)
// Values returns all known values for SlotTypeFilterName. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (SlotTypeFilterName) Values() []SlotTypeFilterName {
return []SlotTypeFilterName{
"SlotTypeName",
"ExternalSourceType",
}
}
type SlotTypeFilterOperator string
// Enum values for SlotTypeFilterOperator
const (
SlotTypeFilterOperatorContains SlotTypeFilterOperator = "CO"
SlotTypeFilterOperatorEquals SlotTypeFilterOperator = "EQ"
)
// Values returns all known values for SlotTypeFilterOperator. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (SlotTypeFilterOperator) Values() []SlotTypeFilterOperator {
return []SlotTypeFilterOperator{
"CO",
"EQ",
}
}
type SlotTypeSortAttribute string
// Enum values for SlotTypeSortAttribute
const (
SlotTypeSortAttributeSlotTypeName SlotTypeSortAttribute = "SlotTypeName"
SlotTypeSortAttributeLastUpdatedDateTime SlotTypeSortAttribute = "LastUpdatedDateTime"
)
// Values returns all known values for SlotTypeSortAttribute. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (SlotTypeSortAttribute) Values() []SlotTypeSortAttribute {
return []SlotTypeSortAttribute{
"SlotTypeName",
"LastUpdatedDateTime",
}
}
type SlotValueResolutionStrategy string
// Enum values for SlotValueResolutionStrategy
const (
SlotValueResolutionStrategyOriginalValue SlotValueResolutionStrategy = "OriginalValue"
SlotValueResolutionStrategyTopResolution SlotValueResolutionStrategy = "TopResolution"
SlotValueResolutionStrategyConcatenation SlotValueResolutionStrategy = "Concatenation"
)
// Values returns all known values for SlotValueResolutionStrategy. Note that this
// can be expanded in the future, and so it is only as up to date as the client.
// The ordering of this slice is not guaranteed to be stable across updates.
func (SlotValueResolutionStrategy) Values() []SlotValueResolutionStrategy {
return []SlotValueResolutionStrategy{
"OriginalValue",
"TopResolution",
"Concatenation",
}
}
type SortOrder string
// Enum values for SortOrder
const (
SortOrderAscending SortOrder = "Ascending"
SortOrderDescending SortOrder = "Descending"
)
// Values returns all known values for SortOrder. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (SortOrder) Values() []SortOrder {
return []SortOrder{
"Ascending",
"Descending",
}
}
type TestExecutionApiMode string
// Enum values for TestExecutionApiMode
const (
TestExecutionApiModeStreaming TestExecutionApiMode = "Streaming"
TestExecutionApiModeNonStreaming TestExecutionApiMode = "NonStreaming"
)
// Values returns all known values for TestExecutionApiMode. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (TestExecutionApiMode) Values() []TestExecutionApiMode {
return []TestExecutionApiMode{
"Streaming",
"NonStreaming",
}
}
type TestExecutionModality string
// Enum values for TestExecutionModality
const (
TestExecutionModalityText TestExecutionModality = "Text"
TestExecutionModalityAudio TestExecutionModality = "Audio"
)
// Values returns all known values for TestExecutionModality. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (TestExecutionModality) Values() []TestExecutionModality {
return []TestExecutionModality{
"Text",
"Audio",
}
}
type TestExecutionSortAttribute string
// Enum values for TestExecutionSortAttribute
const (
TestExecutionSortAttributeTestSetName TestExecutionSortAttribute = "TestSetName"
TestExecutionSortAttributeCreationDateTime TestExecutionSortAttribute = "CreationDateTime"
)
// Values returns all known values for TestExecutionSortAttribute. Note that this
// can be expanded in the future, and so it is only as up to date as the client.
// The ordering of this slice is not guaranteed to be stable across updates.
func (TestExecutionSortAttribute) Values() []TestExecutionSortAttribute {
return []TestExecutionSortAttribute{
"TestSetName",
"CreationDateTime",
}
}
type TestExecutionStatus string
// Enum values for TestExecutionStatus
const (
TestExecutionStatusPending TestExecutionStatus = "Pending"
TestExecutionStatusWaiting TestExecutionStatus = "Waiting"
TestExecutionStatusInProgress TestExecutionStatus = "InProgress"
TestExecutionStatusCompleted TestExecutionStatus = "Completed"
TestExecutionStatusFailed TestExecutionStatus = "Failed"
TestExecutionStatusStopping TestExecutionStatus = "Stopping"
TestExecutionStatusStopped TestExecutionStatus = "Stopped"
)
// Values returns all known values for TestExecutionStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (TestExecutionStatus) Values() []TestExecutionStatus {
return []TestExecutionStatus{
"Pending",
"Waiting",
"InProgress",
"Completed",
"Failed",
"Stopping",
"Stopped",
}
}
type TestResultMatchStatus string
// Enum values for TestResultMatchStatus
const (
TestResultMatchStatusMatched TestResultMatchStatus = "Matched"
TestResultMatchStatusMismatched TestResultMatchStatus = "Mismatched"
TestResultMatchStatusExecutionError TestResultMatchStatus = "ExecutionError"
)
// Values returns all known values for TestResultMatchStatus. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (TestResultMatchStatus) Values() []TestResultMatchStatus {
return []TestResultMatchStatus{
"Matched",
"Mismatched",
"ExecutionError",
}
}
type TestResultTypeFilter string
// Enum values for TestResultTypeFilter
const (
TestResultTypeFilterOverallTestResults TestResultTypeFilter = "OverallTestResults"
TestResultTypeFilterConversationLevelTestResults TestResultTypeFilter = "ConversationLevelTestResults"
TestResultTypeFilterIntentClassificationTestResults TestResultTypeFilter = "IntentClassificationTestResults"
TestResultTypeFilterSlotResolutionTestResults TestResultTypeFilter = "SlotResolutionTestResults"
TestResultTypeFilterUtteranceLevelResults TestResultTypeFilter = "UtteranceLevelResults"
)
// Values returns all known values for TestResultTypeFilter. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (TestResultTypeFilter) Values() []TestResultTypeFilter {
return []TestResultTypeFilter{
"OverallTestResults",
"ConversationLevelTestResults",
"IntentClassificationTestResults",
"SlotResolutionTestResults",
"UtteranceLevelResults",
}
}
type TestSetDiscrepancyReportStatus string
// Enum values for TestSetDiscrepancyReportStatus
const (
TestSetDiscrepancyReportStatusInProgress TestSetDiscrepancyReportStatus = "InProgress"
TestSetDiscrepancyReportStatusCompleted TestSetDiscrepancyReportStatus = "Completed"
TestSetDiscrepancyReportStatusFailed TestSetDiscrepancyReportStatus = "Failed"
)
// Values returns all known values for TestSetDiscrepancyReportStatus. Note that
// this can be expanded in the future, and so it is only as up to date as the
// client. The ordering of this slice is not guaranteed to be stable across
// updates.
func (TestSetDiscrepancyReportStatus) Values() []TestSetDiscrepancyReportStatus {
return []TestSetDiscrepancyReportStatus{
"InProgress",
"Completed",
"Failed",
}
}
type TestSetGenerationStatus string
// Enum values for TestSetGenerationStatus
const (
TestSetGenerationStatusGenerating TestSetGenerationStatus = "Generating"
TestSetGenerationStatusReady TestSetGenerationStatus = "Ready"
TestSetGenerationStatusFailed TestSetGenerationStatus = "Failed"
TestSetGenerationStatusPending TestSetGenerationStatus = "Pending"
)
// Values returns all known values for TestSetGenerationStatus. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (TestSetGenerationStatus) Values() []TestSetGenerationStatus {
return []TestSetGenerationStatus{
"Generating",
"Ready",
"Failed",
"Pending",
}
}
type TestSetModality string
// Enum values for TestSetModality
const (
TestSetModalityText TestSetModality = "Text"
TestSetModalityAudio TestSetModality = "Audio"
)
// Values returns all known values for TestSetModality. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (TestSetModality) Values() []TestSetModality {
return []TestSetModality{
"Text",
"Audio",
}
}
type TestSetSortAttribute string
// Enum values for TestSetSortAttribute
const (
TestSetSortAttributeTestSetName TestSetSortAttribute = "TestSetName"
TestSetSortAttributeLastUpdatedDateTime TestSetSortAttribute = "LastUpdatedDateTime"
)
// Values returns all known values for TestSetSortAttribute. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (TestSetSortAttribute) Values() []TestSetSortAttribute {
return []TestSetSortAttribute{
"TestSetName",
"LastUpdatedDateTime",
}
}
type TestSetStatus string
// Enum values for TestSetStatus
const (
TestSetStatusImporting TestSetStatus = "Importing"
TestSetStatusPendingAnnotation TestSetStatus = "PendingAnnotation"
TestSetStatusDeleting TestSetStatus = "Deleting"
TestSetStatusValidationError TestSetStatus = "ValidationError"
TestSetStatusReady TestSetStatus = "Ready"
)
// Values returns all known values for TestSetStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (TestSetStatus) Values() []TestSetStatus {
return []TestSetStatus{
"Importing",
"PendingAnnotation",
"Deleting",
"ValidationError",
"Ready",
}
}
type TimeDimension string
// Enum values for TimeDimension
const (
TimeDimensionHours TimeDimension = "Hours"
TimeDimensionDays TimeDimension = "Days"
TimeDimensionWeeks TimeDimension = "Weeks"
)
// Values returns all known values for TimeDimension. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (TimeDimension) Values() []TimeDimension {
return []TimeDimension{
"Hours",
"Days",
"Weeks",
}
}
type TranscriptFormat string
// Enum values for TranscriptFormat
const (
TranscriptFormatLex TranscriptFormat = "Lex"
)
// Values returns all known values for TranscriptFormat. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (TranscriptFormat) Values() []TranscriptFormat {
return []TranscriptFormat{
"Lex",
}
}
type UtteranceContentType string
// Enum values for UtteranceContentType
const (
UtteranceContentTypePlainText UtteranceContentType = "PlainText"
UtteranceContentTypeCustomPayload UtteranceContentType = "CustomPayload"
UtteranceContentTypeSsml UtteranceContentType = "SSML"
UtteranceContentTypeImageResponseCard UtteranceContentType = "ImageResponseCard"
)
// Values returns all known values for UtteranceContentType. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (UtteranceContentType) Values() []UtteranceContentType {
return []UtteranceContentType{
"PlainText",
"CustomPayload",
"SSML",
"ImageResponseCard",
}
}
type VoiceEngine string
// Enum values for VoiceEngine
const (
VoiceEngineStandard VoiceEngine = "standard"
VoiceEngineNeural VoiceEngine = "neural"
)
// Values returns all known values for VoiceEngine. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (VoiceEngine) Values() []VoiceEngine {
return []VoiceEngine{
"standard",
"neural",
}
}
|