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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
"time"
)
// Information about the contact
// (https://docs.aws.amazon.com/connect/latest/APIReference/API_Contact.html)
// associated to the user.
type AgentContactReference struct {
// The state of the contact
// (https://docs.aws.amazon.com/connect/latest/adminguide/about-contact-states.html).
AgentContactState ContactState
// The channel of the contact.
Channel Channel
// The time at which the contact was connected to an agent.
ConnectedToAgentTimestamp *time.Time
// The identifier of the contact in this instance of Amazon Connect.
ContactId *string
// How the contact was initiated.
InitiationMethod ContactInitiationMethod
// Contains information about a queue resource for which metrics are returned.
Queue *QueueReference
// The epoch timestamp when the contact state started.
StateStartTimestamp *time.Time
noSmithyDocumentSerde
}
// Information about the agent who accepted the contact.
type AgentInfo struct {
// The timestamp when the contact was connected to the agent.
ConnectedToAgentTimestamp *time.Time
// The identifier of the agent who accepted the contact.
Id *string
noSmithyDocumentSerde
}
// Contains information about an agent status.
type AgentStatus struct {
// The Amazon Resource Name (ARN) of the agent status.
AgentStatusARN *string
// The identifier of the agent status.
AgentStatusId *string
// The description of the agent status.
Description *string
// The display order of the agent status.
DisplayOrder *int32
// The name of the agent status.
Name *string
// The state of the agent status.
State AgentStatusState
// The tags used to organize, track, or control access for this resource. For
// example, { "tags": {"key1":"value1", "key2":"value2"} }.
Tags map[string]string
// The type of agent status.
Type AgentStatusType
noSmithyDocumentSerde
}
// Information about the agent's status.
type AgentStatusReference struct {
// The Amazon Resource Name (ARN) of the agent's status.
StatusArn *string
// The start timestamp of the agent's status.
StatusStartTimestamp *time.Time
noSmithyDocumentSerde
}
// Summary information for an agent status.
type AgentStatusSummary struct {
// The Amazon Resource Name (ARN) for the agent status.
Arn *string
// The identifier for an agent status.
Id *string
// The name of the agent status.
Name *string
// The type of the agent status.
Type AgentStatusType
noSmithyDocumentSerde
}
// Configuration of the answering machine detection.
type AnswerMachineDetectionConfig struct {
// Wait for the answering machine prompt.
AwaitAnswerMachinePrompt bool
// The flag to indicate if answer machine detection analysis needs to be performed
// for a voice call. If set to true, TrafficType must be set as CAMPAIGN.
EnableAnswerMachineDetection bool
noSmithyDocumentSerde
}
// Information about a reference when the referenceType is ATTACHMENT. Otherwise,
// null.
type AttachmentReference struct {
// Identifier of the attachment reference.
Name *string
// Status of the attachment reference type.
Status ReferenceStatus
// The location path of the attachment reference.
Value *string
noSmithyDocumentSerde
}
// A toggle for an individual feature at the instance level.
type Attribute struct {
// The type of attribute.
AttributeType InstanceAttributeType
// The value of the attribute.
Value *string
noSmithyDocumentSerde
}
// Information about available phone numbers.
type AvailableNumberSummary struct {
// The phone number. Phone numbers are formatted [+] [country code] [subscriber
// number including area code].
PhoneNumber *string
// The ISO country code.
PhoneNumberCountryCode PhoneNumberCountryCode
// The type of phone number.
PhoneNumberType PhoneNumberType
noSmithyDocumentSerde
}
// A chat message.
type ChatMessage struct {
// The content of the chat message.
//
// This member is required.
Content *string
// The type of the content. Supported types are text/plain.
//
// This member is required.
ContentType *string
noSmithyDocumentSerde
}
// The streaming configuration, such as the Amazon SNS streaming endpoint.
type ChatStreamingConfiguration struct {
// The Amazon Resource Name (ARN) of the standard Amazon SNS topic. The Amazon
// Resource Name (ARN) of the streaming endpoint that is used to publish real-time
// message streaming for chat conversations.
//
// This member is required.
StreamingEndpointArn *string
noSmithyDocumentSerde
}
// Information about a phone number that has been claimed to your Amazon Connect
// instance or traffic distribution group.
type ClaimedPhoneNumberSummary struct {
// The phone number. Phone numbers are formatted [+] [country code] [subscriber
// number including area code].
PhoneNumber *string
// The Amazon Resource Name (ARN) of the phone number.
PhoneNumberArn *string
// The ISO country code.
PhoneNumberCountryCode PhoneNumberCountryCode
// The description of the phone number.
PhoneNumberDescription *string
// A unique identifier for the phone number.
PhoneNumberId *string
// The status of the phone number.
//
// * CLAIMED means the previous ClaimedPhoneNumber
// (https://docs.aws.amazon.com/connect/latest/APIReference/API_ClaimedPhoneNumber.html)
// or UpdatePhoneNumber
// (https://docs.aws.amazon.com/connect/latest/APIReference/API_UpdatePhoneNumber.html)
// operation succeeded.
//
// * IN_PROGRESS means a ClaimedPhoneNumber
// (https://docs.aws.amazon.com/connect/latest/APIReference/API_ClaimedPhoneNumber.html)
// or UpdatePhoneNumber
// (https://docs.aws.amazon.com/connect/latest/APIReference/API_UpdatePhoneNumber.html)
// operation is still in progress and has not yet completed. You can call
// DescribePhoneNumber
// (https://docs.aws.amazon.com/connect/latest/APIReference/API_DescribePhoneNumber.html)
// at a later time to verify if the previous operation has completed.
//
// * FAILED
// indicates that the previous ClaimedPhoneNumber
// (https://docs.aws.amazon.com/connect/latest/APIReference/API_ClaimedPhoneNumber.html)
// or UpdatePhoneNumber
// (https://docs.aws.amazon.com/connect/latest/APIReference/API_UpdatePhoneNumber.html)
// operation has failed. It will include a message indicating the failure reason. A
// common reason for a failure may be that the TargetArn value you are claiming or
// updating a phone number to has reached its limit of total claimed numbers. If
// you received a FAILED status from a ClaimPhoneNumber API call, you have one day
// to retry claiming the phone number before the number is released back to the
// inventory for other customers to claim.
//
// You will not be billed for the phone
// number during the 1-day period if number claiming fails.
PhoneNumberStatus *PhoneNumberStatus
// The type of phone number.
PhoneNumberType PhoneNumberType
// The tags used to organize, track, or control access for this resource. For
// example, { "tags": {"key1":"value1", "key2":"value2"} }.
Tags map[string]string
// The Amazon Resource Name (ARN) for Amazon Connect instances or traffic
// distribution groups that phone numbers are claimed to.
TargetArn *string
noSmithyDocumentSerde
}
// Contains information about a contact.
type Contact struct {
// Information about the agent who accepted the contact.
AgentInfo *AgentInfo
// The Amazon Resource Name (ARN) for the contact.
Arn *string
// How the contact reached your contact center.
Channel Channel
// The description of the contact.
Description *string
// The timestamp when the customer endpoint disconnected from Amazon Connect.
DisconnectTimestamp *time.Time
// The identifier for the contact.
Id *string
// If this contact is related to other contacts, this is the ID of the initial
// contact.
InitialContactId *string
// Indicates how the contact was initiated.
InitiationMethod ContactInitiationMethod
// The date and time this contact was initiated, in UTC time. For INBOUND, this is
// when the contact arrived. For OUTBOUND, this is when the agent began dialing.
// For CALLBACK, this is when the callback contact was created. For TRANSFER and
// QUEUE_TRANSFER, this is when the transfer was initiated. For API, this is when
// the request arrived.
InitiationTimestamp *time.Time
// The timestamp when contact was last updated.
LastUpdateTimestamp *time.Time
// The name of the contact.
Name *string
// If this contact is not the first contact, this is the ID of the previous
// contact.
PreviousContactId *string
// If this contact was queued, this contains information about the queue.
QueueInfo *QueueInfo
// The timestamp, in Unix epoch time format, at which to start running the inbound
// flow.
ScheduledTimestamp *time.Time
noSmithyDocumentSerde
}
// Filters user data based on the contact information that is associated to the
// users. It contains a list of contact states
// (https://docs.aws.amazon.com/connect/latest/adminguide/about-contact-states.html).
type ContactFilter struct {
// A list of up to 9 contact states
// (https://docs.aws.amazon.com/connect/latest/adminguide/about-contact-states.html).
ContactStates []ContactState
noSmithyDocumentSerde
}
// Contains information about a flow.
type ContactFlow struct {
// The Amazon Resource Name (ARN) of the flow.
Arn *string
// The content of the flow.
Content *string
// The description of the flow.
Description *string
// The identifier of the flow.
Id *string
// The name of the flow.
Name *string
// The type of flow.
State ContactFlowState
// The tags used to organize, track, or control access for this resource. For
// example, { "tags": {"key1":"value1", "key2":"value2"} }.
Tags map[string]string
// The type of the flow. For descriptions of the available types, see Choose a flow
// type
// (https://docs.aws.amazon.com/connect/latest/adminguide/create-contact-flow.html#contact-flow-types)
// in the Amazon Connect Administrator Guide.
Type ContactFlowType
noSmithyDocumentSerde
}
// Contains information about a flow module.
type ContactFlowModule struct {
// The Amazon Resource Name (ARN).
Arn *string
// The content of the flow module.
Content *string
// The description of the flow module.
Description *string
// The identifier of the flow module.
Id *string
// The name of the flow module.
Name *string
// The type of flow module.
State ContactFlowModuleState
// The status of the flow module.
Status ContactFlowModuleStatus
// The tags used to organize, track, or control access for this resource. For
// example, { "tags": {"key1":"value1", "key2":"value2"} }.
Tags map[string]string
noSmithyDocumentSerde
}
// Contains summary information about a flow.
type ContactFlowModuleSummary struct {
// The Amazon Resource Name (ARN) of the flow module.
Arn *string
// The identifier of the flow module.
Id *string
// The name of the flow module.
Name *string
// The type of flow module.
State ContactFlowModuleState
noSmithyDocumentSerde
}
// Contains summary information about a flow. You can also create and update flows
// using the Amazon Connect Flow language
// (https://docs.aws.amazon.com/connect/latest/adminguide/flow-language.html).
type ContactFlowSummary struct {
// The Amazon Resource Name (ARN) of the flow.
Arn *string
// The type of flow.
ContactFlowState ContactFlowState
// The type of flow.
ContactFlowType ContactFlowType
// The identifier of the flow.
Id *string
// The name of the flow.
Name *string
noSmithyDocumentSerde
}
// An object that can be used to specify Tag conditions inside the SearchFilter.
// This accepts an OR of AND (List of List) input where:
//
// * Top level list
// specifies conditions that need to be applied with OR operator
//
// * Inner list
// specifies conditions that need to be applied with AND operator.
type ControlPlaneTagFilter struct {
// A list of conditions which would be applied together with an AND condition.
AndConditions []TagCondition
// A list of conditions which would be applied together with an OR condition.
OrConditions [][]TagCondition
// A leaf node condition which can be used to specify a tag condition.
TagCondition *TagCondition
noSmithyDocumentSerde
}
// Contains credentials to use for federation.
type Credentials struct {
// An access token generated for a federated user to access Amazon Connect.
AccessToken *string
// A token generated with an expiration time for the session a user is logged in to
// Amazon Connect.
AccessTokenExpiration *time.Time
// Renews a token generated for a user to access the Amazon Connect instance.
RefreshToken *string
// Renews the expiration timer for a generated token.
RefreshTokenExpiration *time.Time
noSmithyDocumentSerde
}
// Contains information about a real-time metric. For a description of each metric,
// see Real-time Metrics Definitions
// (https://docs.aws.amazon.com/connect/latest/adminguide/real-time-metrics-definitions.html)
// in the Amazon Connect Administrator Guide.
type CurrentMetric struct {
// The name of the metric.
Name CurrentMetricName
// The unit for the metric.
Unit Unit
noSmithyDocumentSerde
}
// Contains the data for a real-time metric.
type CurrentMetricData struct {
// Information about the metric.
Metric *CurrentMetric
// The value of the metric.
Value *float64
noSmithyDocumentSerde
}
// Contains information about a set of real-time metrics.
type CurrentMetricResult struct {
// The set of metrics.
Collections []CurrentMetricData
// The dimensions for the metrics.
Dimensions *Dimensions
noSmithyDocumentSerde
}
// Information about a reference when the referenceType is DATE. Otherwise, null.
type DateReference struct {
// Identifier of the date reference.
Name *string
// A valid date.
Value *string
noSmithyDocumentSerde
}
// Contains information about a default vocabulary.
type DefaultVocabulary struct {
// The identifier of the Amazon Connect instance. You can find the instanceId in
// the ARN of the instance.
//
// This member is required.
InstanceId *string
// The language code of the vocabulary entries. For a list of languages and their
// corresponding language codes, see What is Amazon Transcribe?
// (https://docs.aws.amazon.com/transcribe/latest/dg/transcribe-whatis.html)
//
// This member is required.
LanguageCode VocabularyLanguageCode
// The identifier of the custom vocabulary.
//
// This member is required.
VocabularyId *string
// A unique name of the custom vocabulary.
//
// This member is required.
VocabularyName *string
noSmithyDocumentSerde
}
// Contains information about the dimensions for a set of metrics.
type Dimensions struct {
// The channel used for grouping and filters.
Channel Channel
// Information about the queue for which metrics are returned.
Queue *QueueReference
noSmithyDocumentSerde
}
// Information about a traffic distribution.
type Distribution struct {
// The percentage of the traffic that is distributed, in increments of 10.
//
// This member is required.
Percentage int32
// The Amazon Web Services Region where the traffic is distributed.
//
// This member is required.
Region *string
noSmithyDocumentSerde
}
// Information about a reference when the referenceType is EMAIL. Otherwise, null.
type EmailReference struct {
// Identifier of the email reference.
Name *string
// A valid email address.
Value *string
noSmithyDocumentSerde
}
// The encryption configuration.
type EncryptionConfig struct {
// The type of encryption.
//
// This member is required.
EncryptionType EncryptionType
// The full ARN of the encryption key. Be sure to provide the full ARN of the
// encryption key, not just the ID.
//
// This member is required.
KeyId *string
noSmithyDocumentSerde
}
// Contains the filter to apply when retrieving metrics.
type Filters struct {
// The channel to use to filter the metrics.
Channels []Channel
// The queues to use to filter the metrics. You should specify at least one queue,
// and can specify up to 100 queues per request. The GetCurrentMetricsData API in
// particular requires a queue when you include a Filter in your request.
Queues []string
noSmithyDocumentSerde
}
// Contains information about a hierarchy group.
type HierarchyGroup struct {
// The Amazon Resource Name (ARN) of the hierarchy group.
Arn *string
// Information about the levels in the hierarchy group.
HierarchyPath *HierarchyPath
// The identifier of the hierarchy group.
Id *string
// The identifier of the level in the hierarchy group.
LevelId *string
// The name of the hierarchy group.
Name *string
// The tags used to organize, track, or control access for this resource. For
// example, { "tags": {"key1":"value1", "key2":"value2"} }.
Tags map[string]string
noSmithyDocumentSerde
}
// A leaf node condition which can be used to specify a hierarchy group condition.
type HierarchyGroupCondition struct {
// The type of hierarchy group match.
HierarchyGroupMatchType HierarchyGroupMatchType
// The value in the hierarchy group condition.
Value *string
noSmithyDocumentSerde
}
// Contains summary information about a hierarchy group.
type HierarchyGroupSummary struct {
// The Amazon Resource Name (ARN) of the hierarchy group.
Arn *string
// The identifier of the hierarchy group.
Id *string
// The name of the hierarchy group.
Name *string
noSmithyDocumentSerde
}
// Information about the hierarchy group.
type HierarchyGroupSummaryReference struct {
// The Amazon Resource Name (ARN) for the hierarchy group.
Arn *string
// The unique identifier for the hierarchy group.
Id *string
noSmithyDocumentSerde
}
// Contains information about a hierarchy level.
type HierarchyLevel struct {
// The Amazon Resource Name (ARN) of the hierarchy level.
Arn *string
// The identifier of the hierarchy level.
Id *string
// The name of the hierarchy level.
Name *string
noSmithyDocumentSerde
}
// Contains information about the hierarchy level to update.
type HierarchyLevelUpdate struct {
// The name of the user hierarchy level. Must not be more than 50 characters.
//
// This member is required.
Name *string
noSmithyDocumentSerde
}
// Contains information about the levels of a hierarchy group.
type HierarchyPath struct {
// Information about level five.
LevelFive *HierarchyGroupSummary
// Information about level four.
LevelFour *HierarchyGroupSummary
// Information about level one.
LevelOne *HierarchyGroupSummary
// Information about level three.
LevelThree *HierarchyGroupSummary
// Information about level two.
LevelTwo *HierarchyGroupSummary
noSmithyDocumentSerde
}
// Information about the levels in the hierarchy group.
type HierarchyPathReference struct {
// Information about level five.
LevelFive *HierarchyGroupSummaryReference
// Information about level four.
LevelFour *HierarchyGroupSummaryReference
// Information about level one.
LevelOne *HierarchyGroupSummaryReference
// Information about level three.
LevelThree *HierarchyGroupSummaryReference
// Information about level two.
LevelTwo *HierarchyGroupSummaryReference
noSmithyDocumentSerde
}
// Contains information about a hierarchy structure.
type HierarchyStructure struct {
// Information about level five.
LevelFive *HierarchyLevel
// Information about level four.
LevelFour *HierarchyLevel
// Information about level one.
LevelOne *HierarchyLevel
// Information about level three.
LevelThree *HierarchyLevel
// Information about level two.
LevelTwo *HierarchyLevel
noSmithyDocumentSerde
}
// Contains information about the level hierarchy to update.
type HierarchyStructureUpdate struct {
// The update for level five.
LevelFive *HierarchyLevelUpdate
// The update for level four.
LevelFour *HierarchyLevelUpdate
// The update for level one.
LevelOne *HierarchyLevelUpdate
// The update for level three.
LevelThree *HierarchyLevelUpdate
// The update for level two.
LevelTwo *HierarchyLevelUpdate
noSmithyDocumentSerde
}
// Contains information about a historical metric. For a description of each
// metric, see Historical Metrics Definitions
// (https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html)
// in the Amazon Connect Administrator Guide.
type HistoricalMetric struct {
// The name of the metric.
Name HistoricalMetricName
// The statistic for the metric.
Statistic Statistic
// The threshold for the metric, used with service level metrics.
Threshold *Threshold
// The unit for the metric.
Unit Unit
noSmithyDocumentSerde
}
// Contains the data for a historical metric.
type HistoricalMetricData struct {
// Information about the metric.
Metric *HistoricalMetric
// The value of the metric.
Value *float64
noSmithyDocumentSerde
}
// Contains information about the historical metrics retrieved.
type HistoricalMetricResult struct {
// The set of metrics.
Collections []HistoricalMetricData
// The dimension for the metrics.
Dimensions *Dimensions
noSmithyDocumentSerde
}
// Information about of the hours of operation.
type HoursOfOperation struct {
// Configuration information for the hours of operation.
Config []HoursOfOperationConfig
// The description for the hours of operation.
Description *string
// The Amazon Resource Name (ARN) for the hours of operation.
HoursOfOperationArn *string
// The identifier for the hours of operation.
HoursOfOperationId *string
// The name for the hours of operation.
Name *string
// The tags used to organize, track, or control access for this resource. For
// example, { "tags": {"key1":"value1", "key2":"value2"} }.
Tags map[string]string
// The time zone for the hours of operation.
TimeZone *string
noSmithyDocumentSerde
}
// Contains information about the hours of operation.
type HoursOfOperationConfig struct {
// The day that the hours of operation applies to.
//
// This member is required.
Day HoursOfOperationDays
// The end time that your contact center closes.
//
// This member is required.
EndTime *HoursOfOperationTimeSlice
// The start time that your contact center opens.
//
// This member is required.
StartTime *HoursOfOperationTimeSlice
noSmithyDocumentSerde
}
// Contains summary information about hours of operation for a contact center.
type HoursOfOperationSummary struct {
// The Amazon Resource Name (ARN) of the hours of operation.
Arn *string
// The identifier of the hours of operation.
Id *string
// The name of the hours of operation.
Name *string
noSmithyDocumentSerde
}
// The start time or end time for an hours of operation.
type HoursOfOperationTimeSlice struct {
// The hours.
//
// This member is required.
Hours *int32
// The minutes.
//
// This member is required.
Minutes *int32
noSmithyDocumentSerde
}
// The Amazon Connect instance.
type Instance struct {
// The Amazon Resource Name (ARN) of the instance.
Arn *string
// When the instance was created.
CreatedTime *time.Time
// The identifier of the Amazon Connect instance. You can find the instanceId in
// the ARN of the instance.
Id *string
// The identity management type.
IdentityManagementType DirectoryType
// Whether inbound calls are enabled.
InboundCallsEnabled *bool
// The alias of instance.
InstanceAlias *string
// The state of the instance.
InstanceStatus InstanceStatus
// Whether outbound calls are enabled.
OutboundCallsEnabled *bool
// The service role of the instance.
ServiceRole *string
// Relevant details why the instance was not successfully created.
StatusReason *InstanceStatusReason
noSmithyDocumentSerde
}
// Relevant details why the instance was not successfully created.
type InstanceStatusReason struct {
// The message.
Message *string
noSmithyDocumentSerde
}
// The storage configuration for the instance.
type InstanceStorageConfig struct {
// A valid storage type.
//
// This member is required.
StorageType StorageType
// The existing association identifier that uniquely identifies the resource type
// and storage config for the given instance ID.
AssociationId *string
// The configuration of the Kinesis Firehose delivery stream.
KinesisFirehoseConfig *KinesisFirehoseConfig
// The configuration of the Kinesis data stream.
KinesisStreamConfig *KinesisStreamConfig
// The configuration of the Kinesis video stream.
KinesisVideoStreamConfig *KinesisVideoStreamConfig
// The S3 bucket configuration.
S3Config *S3Config
noSmithyDocumentSerde
}
// Information about the instance.
type InstanceSummary struct {
// The Amazon Resource Name (ARN) of the instance.
Arn *string
// When the instance was created.
CreatedTime *time.Time
// The identifier of the instance.
Id *string
// The identity management type of the instance.
IdentityManagementType DirectoryType
// Whether inbound calls are enabled.
InboundCallsEnabled *bool
// The alias of the instance.
InstanceAlias *string
// The state of the instance.
InstanceStatus InstanceStatus
// Whether outbound calls are enabled.
OutboundCallsEnabled *bool
// The service role of the instance.
ServiceRole *string
noSmithyDocumentSerde
}
// Contains summary information about the associated AppIntegrations.
type IntegrationAssociationSummary struct {
// The identifier of the Amazon Connect instance. You can find the instanceId in
// the ARN of the instance.
InstanceId *string
// The Amazon Resource Name (ARN) for the AppIntegration.
IntegrationArn *string
// The Amazon Resource Name (ARN) for the AppIntegration association.
IntegrationAssociationArn *string
// The identifier for the AppIntegration association.
IntegrationAssociationId *string
// The integration type.
IntegrationType IntegrationType
// The user-provided, friendly name for the external application.
SourceApplicationName *string
// The URL for the external application.
SourceApplicationUrl *string
// The name of the source.
SourceType SourceType
noSmithyDocumentSerde
}
// A field that is invisible to an agent.
type InvisibleFieldInfo struct {
// Identifier of the invisible field.
Id *TaskTemplateFieldIdentifier
noSmithyDocumentSerde
}
// Configuration information of a Kinesis Data Firehose delivery stream.
type KinesisFirehoseConfig struct {
// The Amazon Resource Name (ARN) of the delivery stream.
//
// This member is required.
FirehoseArn *string
noSmithyDocumentSerde
}
// Configuration information of a Kinesis data stream.
type KinesisStreamConfig struct {
// The Amazon Resource Name (ARN) of the data stream.
//
// This member is required.
StreamArn *string
noSmithyDocumentSerde
}
// Configuration information of a Kinesis video stream.
type KinesisVideoStreamConfig struct {
// The encryption configuration.
//
// This member is required.
EncryptionConfig *EncryptionConfig
// The prefix of the video stream.
//
// This member is required.
Prefix *string
// The number of hours data is retained in the stream. Kinesis Video Streams
// retains the data in a data store that is associated with the stream. The default
// value is 0, indicating that the stream does not persist data.
//
// This member is required.
RetentionPeriodHours int32
noSmithyDocumentSerde
}
// Configuration information of an Amazon Lex bot.
type LexBot struct {
// The Amazon Web Services Region where the Amazon Lex bot was created.
LexRegion *string
// The name of the Amazon Lex bot.
Name *string
noSmithyDocumentSerde
}
// Configuration information of an Amazon Lex or Amazon Lex V2 bot.
type LexBotConfig struct {
// Configuration information of an Amazon Lex bot.
LexBot *LexBot
// Configuration information of an Amazon Lex V2 bot.
LexV2Bot *LexV2Bot
noSmithyDocumentSerde
}
// Configuration information of an Amazon Lex V2 bot.
type LexV2Bot struct {
// The Amazon Resource Name (ARN) of the Amazon Lex V2 bot.
AliasArn *string
noSmithyDocumentSerde
}
// Information about phone numbers that have been claimed to your Amazon Connect
// instance or traffic distribution group.
type ListPhoneNumbersSummary struct {
// The phone number. Phone numbers are formatted [+] [country code] [subscriber
// number including area code].
PhoneNumber *string
// The Amazon Resource Name (ARN) of the phone number.
PhoneNumberArn *string
// The ISO country code.
PhoneNumberCountryCode PhoneNumberCountryCode
// A unique identifier for the phone number.
PhoneNumberId *string
// The type of phone number.
PhoneNumberType PhoneNumberType
// The Amazon Resource Name (ARN) for Amazon Connect instances or traffic
// distribution groups that phone numbers are claimed to.
TargetArn *string
noSmithyDocumentSerde
}
// Contains information about which channels are supported, and how many contacts
// an agent can have on a channel simultaneously.
type MediaConcurrency struct {
// The channels that agents can handle in the Contact Control Panel (CCP).
//
// This member is required.
Channel Channel
// The number of contacts an agent can have on a channel simultaneously. Valid
// Range for VOICE: Minimum value of 1. Maximum value of 1. Valid Range for CHAT:
// Minimum value of 1. Maximum value of 10. Valid Range for TASK: Minimum value of
// 1. Maximum value of 10.
//
// This member is required.
Concurrency int32
noSmithyDocumentSerde
}
// Information about a reference when the referenceType is NUMBER. Otherwise, null.
type NumberReference struct {
// Identifier of the number reference.
Name *string
// A valid number.
Value *string
noSmithyDocumentSerde
}
// The outbound caller ID name, number, and outbound whisper flow.
type OutboundCallerConfig struct {
// The caller ID name.
OutboundCallerIdName *string
// The caller ID number.
OutboundCallerIdNumberId *string
// The outbound whisper flow to be used during an outbound call.
OutboundFlowId *string
noSmithyDocumentSerde
}
// The customer's details.
type ParticipantDetails struct {
// Display name of the participant.
//
// This member is required.
DisplayName *string
noSmithyDocumentSerde
}
// Contains information about a phone number for a quick connect.
type PhoneNumberQuickConnectConfig struct {
// The phone number in E.164 format.
//
// This member is required.
PhoneNumber *string
noSmithyDocumentSerde
}
// The status of the phone number.
//
// * CLAIMED means the previous ClaimedPhoneNumber
// (https://docs.aws.amazon.com/connect/latest/APIReference/API_ClaimedPhoneNumber.html)
// or UpdatePhoneNumber
// (https://docs.aws.amazon.com/connect/latest/APIReference/API_UpdatePhoneNumber.html)
// operation succeeded.
//
// * IN_PROGRESS means a ClaimedPhoneNumber
// (https://docs.aws.amazon.com/connect/latest/APIReference/API_ClaimedPhoneNumber.html)
// or UpdatePhoneNumber
// (https://docs.aws.amazon.com/connect/latest/APIReference/API_UpdatePhoneNumber.html)
// operation is still in progress and has not yet completed. You can call
// DescribePhoneNumber
// (https://docs.aws.amazon.com/connect/latest/APIReference/API_DescribePhoneNumber.html)
// at a later time to verify if the previous operation has completed.
//
// * FAILED
// indicates that the previous ClaimedPhoneNumber
// (https://docs.aws.amazon.com/connect/latest/APIReference/API_ClaimedPhoneNumber.html)
// or UpdatePhoneNumber
// (https://docs.aws.amazon.com/connect/latest/APIReference/API_UpdatePhoneNumber.html)
// operation has failed. It will include a message indicating the failure reason. A
// common reason for a failure may be that the TargetArn value you are claiming or
// updating a phone number to has reached its limit of total claimed numbers. If
// you received a FAILED status from a ClaimPhoneNumber API call, you have one day
// to retry claiming the phone number before the number is released back to the
// inventory for other customers to claim.
type PhoneNumberStatus struct {
// The status message.
Message *string
// The status.
Status PhoneNumberWorkflowStatus
noSmithyDocumentSerde
}
// Contains summary information about a phone number for a contact center.
type PhoneNumberSummary struct {
// The Amazon Resource Name (ARN) of the phone number.
Arn *string
// The identifier of the phone number.
Id *string
// The phone number.
PhoneNumber *string
// The ISO country code.
PhoneNumberCountryCode PhoneNumberCountryCode
// The type of phone number.
PhoneNumberType PhoneNumberType
noSmithyDocumentSerde
}
// Information about a problem detail.
type ProblemDetail struct {
// The problem detail's message.
Message *string
noSmithyDocumentSerde
}
// Contains information about the prompt.
type PromptSummary struct {
// The Amazon Resource Name (ARN) of the prompt.
Arn *string
// The identifier of the prompt.
Id *string
// The name of the prompt.
Name *string
noSmithyDocumentSerde
}
// Contains information about why a property is not valid.
type PropertyValidationExceptionProperty struct {
// A message describing why the property is not valid.
//
// This member is required.
Message *string
// The full property path.
//
// This member is required.
PropertyPath *string
// Why the property is not valid.
//
// This member is required.
Reason PropertyValidationExceptionReason
noSmithyDocumentSerde
}
// Contains information about a queue.
type Queue struct {
// The description of the queue.
Description *string
// The identifier for the hours of operation.
HoursOfOperationId *string
// The maximum number of contacts that can be in the queue before it is considered
// full.
MaxContacts *int32
// The name of the queue.
Name *string
// The outbound caller ID name, number, and outbound whisper flow.
OutboundCallerConfig *OutboundCallerConfig
// The Amazon Resource Name (ARN) for the queue.
QueueArn *string
// The identifier for the queue.
QueueId *string
// The status of the queue.
Status QueueStatus
// The tags used to organize, track, or control access for this resource. For
// example, { "tags": {"key1":"value1", "key2":"value2"} }.
Tags map[string]string
noSmithyDocumentSerde
}
// If this contact was queued, this contains information about the queue.
type QueueInfo struct {
// The timestamp when the contact was added to the queue.
EnqueueTimestamp *time.Time
// The unique identifier for the queue.
Id *string
noSmithyDocumentSerde
}
// Contains information about a queue for a quick connect. The flow must be of type
// Transfer to Queue.
type QueueQuickConnectConfig struct {
// The identifier of the flow.
//
// This member is required.
ContactFlowId *string
// The identifier for the queue.
//
// This member is required.
QueueId *string
noSmithyDocumentSerde
}
// Contains information about a queue resource for which metrics are returned.
type QueueReference struct {
// The Amazon Resource Name (ARN) of the queue.
Arn *string
// The identifier of the queue.
Id *string
noSmithyDocumentSerde
}
// The search criteria to be used to return queues.
type QueueSearchCriteria struct {
// A list of conditions which would be applied together with an AND condition.
AndConditions []QueueSearchCriteria
// A list of conditions which would be applied together with an OR condition.
OrConditions []QueueSearchCriteria
// The type of queue.
QueueTypeCondition SearchableQueueType
// A leaf node condition which can be used to specify a string condition. The
// currently supported value for FieldName: name
StringCondition *StringCondition
noSmithyDocumentSerde
}
// Filters to be applied to search results.
type QueueSearchFilter struct {
// An object that can be used to specify Tag conditions inside the SearchFilter.
// This accepts an OR of AND (List of List) input where:
//
// * Top level list
// specifies conditions that need to be applied with OR operator
//
// * Inner list
// specifies conditions that need to be applied with AND operator.
TagFilter *ControlPlaneTagFilter
noSmithyDocumentSerde
}
// Contains summary information about a queue.
type QueueSummary struct {
// The Amazon Resource Name (ARN) of the queue.
Arn *string
// The identifier of the queue.
Id *string
// The name of the queue.
Name *string
// The type of queue.
QueueType QueueType
noSmithyDocumentSerde
}
// Contains information about a quick connect.
type QuickConnect struct {
// The description.
Description *string
// The name of the quick connect.
Name *string
// The Amazon Resource Name (ARN) of the quick connect.
QuickConnectARN *string
// Contains information about the quick connect.
QuickConnectConfig *QuickConnectConfig
// The identifier for the quick connect.
QuickConnectId *string
// The tags used to organize, track, or control access for this resource. For
// example, { "tags": {"key1":"value1", "key2":"value2"} }.
Tags map[string]string
noSmithyDocumentSerde
}
// Contains configuration settings for a quick connect.
type QuickConnectConfig struct {
// The type of quick connect. In the Amazon Connect console, when you create a
// quick connect, you are prompted to assign one of the following types: Agent
// (USER), External (PHONE_NUMBER), or Queue (QUEUE).
//
// This member is required.
QuickConnectType QuickConnectType
// The phone configuration. This is required only if QuickConnectType is
// PHONE_NUMBER.
PhoneConfig *PhoneNumberQuickConnectConfig
// The queue configuration. This is required only if QuickConnectType is QUEUE.
QueueConfig *QueueQuickConnectConfig
// The user configuration. This is required only if QuickConnectType is USER.
UserConfig *UserQuickConnectConfig
noSmithyDocumentSerde
}
// Contains summary information about a quick connect.
type QuickConnectSummary struct {
// The Amazon Resource Name (ARN) of the quick connect.
Arn *string
// The identifier for the quick connect.
Id *string
// The name of the quick connect.
Name *string
// The type of quick connect. In the Amazon Connect console, when you create a
// quick connect, you are prompted to assign one of the following types: Agent
// (USER), External (PHONE_NUMBER), or Queue (QUEUE).
QuickConnectType QuickConnectType
noSmithyDocumentSerde
}
// Indicates a field that is read-only to an agent.
type ReadOnlyFieldInfo struct {
// Identifier of the read-only field.
Id *TaskTemplateFieldIdentifier
noSmithyDocumentSerde
}
// Well-formed data on a contact, used by agents to complete a contact request. You
// can have up to 4,096 UTF-8 bytes across all references for a contact.
type Reference struct {
// The type of the reference. DATE must be of type Epoch timestamp.
//
// This member is required.
Type ReferenceType
// A valid value for the reference. For example, for a URL reference, a formatted
// URL that is displayed to an agent in the Contact Control Panel (CCP).
//
// This member is required.
Value *string
noSmithyDocumentSerde
}
// Contains summary information about a reference. ReferenceSummary contains only
// one non null field between the URL and attachment based on the reference type.
//
// The following types satisfy this interface:
//
// ReferenceSummaryMemberAttachment
// ReferenceSummaryMemberDate
// ReferenceSummaryMemberEmail
// ReferenceSummaryMemberNumber
// ReferenceSummaryMemberString
// ReferenceSummaryMemberUrl
type ReferenceSummary interface {
isReferenceSummary()
}
// Information about the reference when the referenceType is ATTACHMENT. Otherwise,
// null.
type ReferenceSummaryMemberAttachment struct {
Value AttachmentReference
noSmithyDocumentSerde
}
func (*ReferenceSummaryMemberAttachment) isReferenceSummary() {}
// Information about a reference when the referenceType is DATE. Otherwise, null.
type ReferenceSummaryMemberDate struct {
Value DateReference
noSmithyDocumentSerde
}
func (*ReferenceSummaryMemberDate) isReferenceSummary() {}
// Information about a reference when the referenceType is EMAIL. Otherwise, null.
type ReferenceSummaryMemberEmail struct {
Value EmailReference
noSmithyDocumentSerde
}
func (*ReferenceSummaryMemberEmail) isReferenceSummary() {}
// Information about a reference when the referenceType is NUMBER. Otherwise, null.
type ReferenceSummaryMemberNumber struct {
Value NumberReference
noSmithyDocumentSerde
}
func (*ReferenceSummaryMemberNumber) isReferenceSummary() {}
// Information about a reference when the referenceType is STRING. Otherwise, null.
type ReferenceSummaryMemberString struct {
Value StringReference
noSmithyDocumentSerde
}
func (*ReferenceSummaryMemberString) isReferenceSummary() {}
// Information about the reference when the referenceType is URL. Otherwise, null.
type ReferenceSummaryMemberUrl struct {
Value UrlReference
noSmithyDocumentSerde
}
func (*ReferenceSummaryMemberUrl) isReferenceSummary() {}
// Information about a required field.
type RequiredFieldInfo struct {
// The unique identifier for the field.
Id *TaskTemplateFieldIdentifier
noSmithyDocumentSerde
}
// Contains information about a routing profile.
type RoutingProfile struct {
// The identifier of the default outbound queue for this routing profile.
DefaultOutboundQueueId *string
// The description of the routing profile.
Description *string
// The identifier of the Amazon Connect instance. You can find the instanceId in
// the ARN of the instance.
InstanceId *string
// The channels agents can handle in the Contact Control Panel (CCP) for this
// routing profile.
MediaConcurrencies []MediaConcurrency
// The name of the routing profile.
Name *string
// The number of associated queues in routing profile.
NumberOfAssociatedQueues *int64
// The number of associated users in routing profile.
NumberOfAssociatedUsers *int64
// The Amazon Resource Name (ARN) of the routing profile.
RoutingProfileArn *string
// The identifier of the routing profile.
RoutingProfileId *string
// The tags used to organize, track, or control access for this resource. For
// example, { "tags": {"key1":"value1", "key2":"value2"} }.
Tags map[string]string
noSmithyDocumentSerde
}
// Contains information about the queue and channel for which priority and delay
// can be set.
type RoutingProfileQueueConfig struct {
// The delay, in seconds, a contact should be in the queue before they are routed
// to an available agent. For more information, see Queues: priority and delay
// (https://docs.aws.amazon.com/connect/latest/adminguide/concepts-routing-profiles-priority.html)
// in the Amazon Connect Administrator Guide.
//
// This member is required.
Delay *int32
// The order in which contacts are to be handled for the queue. For more
// information, see Queues: priority and delay
// (https://docs.aws.amazon.com/connect/latest/adminguide/concepts-routing-profiles-priority.html).
//
// This member is required.
Priority *int32
// Contains information about a queue resource.
//
// This member is required.
QueueReference *RoutingProfileQueueReference
noSmithyDocumentSerde
}
// Contains summary information about a routing profile queue.
type RoutingProfileQueueConfigSummary struct {
// The channels this queue supports.
//
// This member is required.
Channel Channel
// The delay, in seconds, that a contact should be in the queue before they are
// routed to an available agent. For more information, see Queues: priority and
// delay
// (https://docs.aws.amazon.com/connect/latest/adminguide/concepts-routing-profiles-priority.html)
// in the Amazon Connect Administrator Guide.
//
// This member is required.
Delay int32
// The order in which contacts are to be handled for the queue. For more
// information, see Queues: priority and delay
// (https://docs.aws.amazon.com/connect/latest/adminguide/concepts-routing-profiles-priority.html).
//
// This member is required.
Priority int32
// The Amazon Resource Name (ARN) of the queue.
//
// This member is required.
QueueArn *string
// The identifier for the queue.
//
// This member is required.
QueueId *string
// The name of the queue.
//
// This member is required.
QueueName *string
noSmithyDocumentSerde
}
// Contains the channel and queue identifier for a routing profile.
type RoutingProfileQueueReference struct {
// The channels agents can handle in the Contact Control Panel (CCP) for this
// routing profile.
//
// This member is required.
Channel Channel
// The identifier for the queue.
//
// This member is required.
QueueId *string
noSmithyDocumentSerde
}
// Information about the routing profile assigned to the user.
type RoutingProfileReference struct {
// The Amazon Resource Name (ARN) of the routing profile.
Arn *string
// The identifier of the routing profile.
Id *string
noSmithyDocumentSerde
}
// The search criteria to be used to return routing profiles.
type RoutingProfileSearchCriteria struct {
// A list of conditions which would be applied together with an AND condition.
AndConditions []RoutingProfileSearchCriteria
// A list of conditions which would be applied together with an OR condition.
OrConditions []RoutingProfileSearchCriteria
// A leaf node condition which can be used to specify a string condition. The
// currently supported value for FieldName: name
StringCondition *StringCondition
noSmithyDocumentSerde
}
// Filters to be applied to search results.
type RoutingProfileSearchFilter struct {
// An object that can be used to specify Tag conditions inside the SearchFilter.
// This accepts an OR of AND (List of List) input where:
//
// * Top level list
// specifies conditions that need to be applied with OR operator
//
// * Inner list
// specifies conditions that need to be applied with AND operator.
TagFilter *ControlPlaneTagFilter
noSmithyDocumentSerde
}
// Contains summary information about a routing profile.
type RoutingProfileSummary struct {
// The Amazon Resource Name (ARN) of the routing profile.
Arn *string
// The identifier of the routing profile.
Id *string
// The name of the routing profile.
Name *string
noSmithyDocumentSerde
}
// Information about the Amazon Simple Storage Service (Amazon S3) storage type.
type S3Config struct {
// The S3 bucket name.
//
// This member is required.
BucketName *string
// The S3 bucket prefix.
//
// This member is required.
BucketPrefix *string
// The Amazon S3 encryption configuration.
EncryptionConfig *EncryptionConfig
noSmithyDocumentSerde
}
// Configuration information of the security key.
type SecurityKey struct {
// The existing association identifier that uniquely identifies the resource type
// and storage config for the given instance ID.
AssociationId *string
// When the security key was created.
CreationTime *time.Time
// The key of the security key.
Key *string
noSmithyDocumentSerde
}
// Contains information about a security profile.
type SecurityProfile struct {
// The Amazon Resource Name (ARN) for the secruity profile.
Arn *string
// The description of the security profile.
Description *string
// The identifier for the security profile.
Id *string
// The organization resource identifier for the security profile.
OrganizationResourceId *string
// The name for the security profile.
SecurityProfileName *string
// The tags used to organize, track, or control access for this resource. For
// example, { "tags": {"key1":"value1", "key2":"value2"} }.
Tags map[string]string
noSmithyDocumentSerde
}
// The search criteria to be used to return security profiles.
type SecurityProfileSearchCriteria struct {
// A list of conditions which would be applied together with an AND condition.
AndConditions []SecurityProfileSearchCriteria
// A list of conditions which would be applied together with an OR condition.
OrConditions []SecurityProfileSearchCriteria
// A leaf node condition which can be used to specify a string condition. The
// currently supported value for FieldName: name
StringCondition *StringCondition
noSmithyDocumentSerde
}
// Information about the returned security profiles.
type SecurityProfileSearchSummary struct {
// The Amazon Resource Name (ARN) of the security profile.
Arn *string
// The description of the security profile.
Description *string
// The identifier of the security profile.
Id *string
// The organization resource identifier.
OrganizationResourceId *string
// The name of the security profile.
SecurityProfileName *string
// The tags used to organize, track, or control access for this resource. For
// example, { "tags": {"key1":"value1", "key2":"value2"} }.
Tags map[string]string
noSmithyDocumentSerde
}
// Filters to be applied to search results.
type SecurityProfilesSearchFilter struct {
// An object that can be used to specify Tag conditions inside the SearchFilter.
// This accepts an OR of AND (List of List) input where:
//
// * Top level list
// specifies conditions that need to be applied with OR operator
//
// * Inner list
// specifies conditions that need to be applied with AND operator.
TagFilter *ControlPlaneTagFilter
noSmithyDocumentSerde
}
// Contains information about a security profile.
type SecurityProfileSummary struct {
// The Amazon Resource Name (ARN) of the security profile.
Arn *string
// The identifier of the security profile.
Id *string
// The name of the security profile.
Name *string
noSmithyDocumentSerde
}
// A leaf node condition which can be used to specify a string condition. The
// currently supported value for FieldName: name
type StringCondition struct {
// The type of comparison to be made when evaluating the string condition.
ComparisonType StringComparisonType
// The name of the field in the string condition.
FieldName *string
// The value of the string.
Value *string
noSmithyDocumentSerde
}
// Information about a reference when the referenceType is STRING. Otherwise, null.
type StringReference struct {
// Identifier of the string reference.
Name *string
// A valid string.
Value *string
noSmithyDocumentSerde
}
// A leaf node condition which can be used to specify a tag condition, for example,
// HAVE BPO = 123.
type TagCondition struct {
// The tag key in the tag condition.
TagKey *string
// The tag value in the tag condition.
TagValue *string
noSmithyDocumentSerde
}
// Describes constraints that apply to the template fields.
type TaskTemplateConstraints struct {
// Lists the fields that are invisible to agents.
InvisibleFields []InvisibleFieldInfo
// Lists the fields that are read-only to agents, and cannot be edited.
ReadOnlyFields []ReadOnlyFieldInfo
// Lists the fields that are required to be filled by agents.
RequiredFields []RequiredFieldInfo
noSmithyDocumentSerde
}
// Describes a default field and its corresponding value.
type TaskTemplateDefaultFieldValue struct {
// Default value for the field.
DefaultValue *string
// Identifier of a field.
Id *TaskTemplateFieldIdentifier
noSmithyDocumentSerde
}
// Describes default values for fields on a template.
type TaskTemplateDefaults struct {
// Default value for the field.
DefaultFieldValues []TaskTemplateDefaultFieldValue
noSmithyDocumentSerde
}
// Describes a single task template field.
type TaskTemplateField struct {
// The unique identifier for the field.
//
// This member is required.
Id *TaskTemplateFieldIdentifier
// The description of the field.
Description *string
// A list of options for a single select field.
SingleSelectOptions []string
// Indicates the type of field.
Type TaskTemplateFieldType
noSmithyDocumentSerde
}
// The identifier of the task template field.
type TaskTemplateFieldIdentifier struct {
// The name of the task template field.
Name *string
noSmithyDocumentSerde
}
// Contains summary information about the task template.
type TaskTemplateMetadata struct {
// The Amazon Resource Name (ARN) of the task template.
Arn *string
// The timestamp when the task template was created.
CreatedTime *time.Time
// The description of the task template.
Description *string
// A unique identifier for the task template.
Id *string
// The timestamp when the task template was last modified.
LastModifiedTime *time.Time
// The name of the task template.
Name *string
// Marks a template as ACTIVE or INACTIVE for a task to refer to it. Tasks can only
// be created from ACTIVE templates. If a template is marked as INACTIVE, then a
// task that refers to this template cannot be created.
Status TaskTemplateStatus
noSmithyDocumentSerde
}
// The distribution of traffic between the instance and its replicas.
type TelephonyConfig struct {
// Information about traffic distributions.
//
// This member is required.
Distributions []Distribution
noSmithyDocumentSerde
}
// Contains information about the threshold for service level metrics.
type Threshold struct {
// The type of comparison. Only "less than" (LT) comparisons are supported.
Comparison Comparison
// The threshold value to compare.
ThresholdValue *float64
noSmithyDocumentSerde
}
// Information about a traffic distribution group.
type TrafficDistributionGroup struct {
// The Amazon Resource Name (ARN) of the traffic distribution group.
Arn *string
// The description of the traffic distribution group.
Description *string
// The identifier of the traffic distribution group. This can be the ID or the ARN
// if the API is being called in the Region where the traffic distribution group
// was created. The ARN must be provided if the call is from the replicated Region.
Id *string
// The Amazon Resource Name (ARN).
InstanceArn *string
// The name of the traffic distribution group.
Name *string
// The status of the traffic distribution group.
//
// * CREATION_IN_PROGRESS means the
// previous CreateTrafficDistributionGroup
// (https://docs.aws.amazon.com/connect/latest/APIReference/API_CreateTrafficDistributionGroup.html)
// operation is still in progress and has not yet completed.
//
// * ACTIVE means the
// previous CreateTrafficDistributionGroup
// (https://docs.aws.amazon.com/connect/latest/APIReference/API_CreateTrafficDistributionGroup.html)
// operation has succeeded.
//
// * CREATION_FAILED indicates that the previous
// CreateTrafficDistributionGroup
// (https://docs.aws.amazon.com/connect/latest/APIReference/API_CreateTrafficDistributionGroup.html)
// operation has failed.
//
// * PENDING_DELETION means the previous
// DeleteTrafficDistributionGroup
// (https://docs.aws.amazon.com/connect/latest/APIReference/API_DeleteTrafficDistributionGroup.html)
// operation is still in progress and has not yet completed.
//
// * DELETION_FAILED
// means the previous DeleteTrafficDistributionGroup
// (https://docs.aws.amazon.com/connect/latest/APIReference/API_DeleteTrafficDistributionGroup.html)
// operation has failed.
//
// * UPDATE_IN_PROGRESS means the previous
// UpdateTrafficDistributionGroup
// (https://docs.aws.amazon.com/connect/latest/APIReference/API_UpdateTrafficDistributionGroup.html)
// operation is still in progress and has not yet completed.
Status TrafficDistributionGroupStatus
// The tags used to organize, track, or control access for this resource. For
// example, { "tags": {"key1":"value1", "key2":"value2"} }.
Tags map[string]string
noSmithyDocumentSerde
}
// Information about traffic distribution groups.
type TrafficDistributionGroupSummary struct {
// The Amazon Resource Name (ARN) of the traffic distribution group.
Arn *string
// The identifier of the traffic distribution group. This can be the ID or the ARN
// if the API is being called in the Region where the traffic distribution group
// was created. The ARN must be provided if the call is from the replicated Region.
Id *string
// The Amazon Resource Name (ARN) of the traffic distribution group.
InstanceArn *string
// The name of the traffic distribution group.
Name *string
// The status of the traffic distribution group.
//
// * CREATION_IN_PROGRESS means the
// previous CreateTrafficDistributionGroup
// (https://docs.aws.amazon.com/connect/latest/APIReference/API_CreateTrafficDistributionGroup.html)
// operation is still in progress and has not yet completed.
//
// * ACTIVE means the
// previous CreateTrafficDistributionGroup
// (https://docs.aws.amazon.com/connect/latest/APIReference/API_CreateTrafficDistributionGroup.html)
// operation has succeeded.
//
// * CREATION_FAILED indicates that the previous
// CreateTrafficDistributionGroup
// (https://docs.aws.amazon.com/connect/latest/APIReference/API_CreateTrafficDistributionGroup.html)
// operation has failed.
//
// * PENDING_DELETION means the previous
// DeleteTrafficDistributionGroup
// (https://docs.aws.amazon.com/connect/latest/APIReference/API_DeleteTrafficDistributionGroup.html)
// operation is still in progress and has not yet completed.
//
// * DELETION_FAILED
// means the previous DeleteTrafficDistributionGroup
// (https://docs.aws.amazon.com/connect/latest/APIReference/API_DeleteTrafficDistributionGroup.html)
// operation has failed.
//
// * UPDATE_IN_PROGRESS means the previous
// UpdateTrafficDistributionGroup
// (https://docs.aws.amazon.com/connect/latest/APIReference/API_UpdateTrafficDistributionGroup.html)
// operation is still in progress and has not yet completed.
Status TrafficDistributionGroupStatus
noSmithyDocumentSerde
}
// The URL reference.
type UrlReference struct {
// Identifier of the URL reference.
Name *string
// A valid URL.
Value *string
noSmithyDocumentSerde
}
// Contains the use case.
type UseCase struct {
// The Amazon Resource Name (ARN) for the use case.
UseCaseArn *string
// The identifier for the use case.
UseCaseId *string
// The type of use case to associate to the integration association. Each
// integration association can have only one of each use case type.
UseCaseType UseCaseType
noSmithyDocumentSerde
}
// Contains information about a user account for an Amazon Connect instance.
type User struct {
// The Amazon Resource Name (ARN) of the user account.
Arn *string
// The identifier of the user account in the directory used for identity
// management.
DirectoryUserId *string
// The identifier of the hierarchy group for the user.
HierarchyGroupId *string
// The identifier of the user account.
Id *string
// Information about the user identity.
IdentityInfo *UserIdentityInfo
// Information about the phone configuration for the user.
PhoneConfig *UserPhoneConfig
// The identifier of the routing profile for the user.
RoutingProfileId *string
// The identifiers of the security profiles for the user.
SecurityProfileIds []string
// The tags.
Tags map[string]string
// The user name assigned to the user account.
Username *string
noSmithyDocumentSerde
}
// Data for a user.
type UserData struct {
// A map of active slots by channel. The key is a channel name. The value is an
// integer: the number of active slots.
ActiveSlotsByChannel map[string]int32
// A map of available slots by channel. The key is a channel name. The value is an
// integer: the available number of slots.
AvailableSlotsByChannel map[string]int32
// A list of contact reference information.
Contacts []AgentContactReference
// Contains information about the levels of a hierarchy group assigned to a user.
HierarchyPath *HierarchyPathReference
// A map of maximum slots by channel. The key is a channel name. The value is an
// integer: the maximum number of slots. This is calculated from MediaConcurrency
// (https://docs.aws.amazon.com/connect/latest/APIReference/API_MediaConcurrency.html)
// of the RoutingProfile assigned to the agent.
MaxSlotsByChannel map[string]int32
// Information about the routing profile that is assigned to the user.
RoutingProfile *RoutingProfileReference
// The status of the agent that they manually set in their Contact Control Panel
// (CCP), or that the supervisor manually changes in the real-time metrics report.
Status *AgentStatusReference
// Information about the user for the data that is returned. It contains the
// resourceId and ARN of the user.
User *UserReference
noSmithyDocumentSerde
}
// A filter for the user data.
type UserDataFilters struct {
// A filter for the user data based on the contact information that is associated
// to the user. It contains a list of contact states.
ContactFilter *ContactFilter
// Contains information about a queue resource for which metrics are returned.
Queues []string
noSmithyDocumentSerde
}
// Contains information about the identity of a user.
type UserIdentityInfo struct {
// The email address. If you are using SAML for identity management and include
// this parameter, an error is returned.
Email *string
// The first name. This is required if you are using Amazon Connect or SAML for
// identity management.
FirstName *string
// The last name. This is required if you are using Amazon Connect or SAML for
// identity management.
LastName *string
// The user's mobile number.
Mobile *string
// The user's secondary email address. If you provide a secondary email, the user
// receives email notifications - other than password reset notifications - to this
// email address instead of to their primary email address. Pattern:
// (?=^.{0,265}$)[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,63}
SecondaryEmail *string
noSmithyDocumentSerde
}
// The user's first name and last name.
type UserIdentityInfoLite struct {
// The user's first name.
FirstName *string
// The user's last name.
LastName *string
noSmithyDocumentSerde
}
// Contains information about the phone configuration settings for a user.
type UserPhoneConfig struct {
// The phone type.
//
// This member is required.
PhoneType PhoneType
// The After Call Work (ACW) timeout setting, in seconds. When returned by a
// SearchUsers call, AfterContactWorkTimeLimit is returned in milliseconds.
AfterContactWorkTimeLimit int32
// The Auto accept setting.
AutoAccept bool
// The phone number for the user's desk phone.
DeskPhoneNumber *string
noSmithyDocumentSerde
}
// Contains information about the quick connect configuration settings for a user.
// The contact flow must be of type Transfer to Agent.
type UserQuickConnectConfig struct {
// The identifier of the flow.
//
// This member is required.
ContactFlowId *string
// The identifier of the user.
//
// This member is required.
UserId *string
noSmithyDocumentSerde
}
// Information about the user.
type UserReference struct {
// The Amazon Resource Name (ARN) for the user.
Arn *string
// The unique identifier for the user.
Id *string
noSmithyDocumentSerde
}
// The search criteria to be used to return users. The Username, Firstname, and
// Lastname fields support "contains" queries with a minimum of 2 characters and a
// maximum of 25 characters. Any queries with character lengths outside of this
// range result in empty results.
type UserSearchCriteria struct {
// A list of conditions which would be applied together with an AND condition.
AndConditions []UserSearchCriteria
// A leaf node condition which can be used to specify a hierarchy group condition.
HierarchyGroupCondition *HierarchyGroupCondition
// A list of conditions which would be applied together with an OR condition.
OrConditions []UserSearchCriteria
// A leaf node condition which can be used to specify a string condition.
StringCondition *StringCondition
noSmithyDocumentSerde
}
// Filters to be applied to search results.
type UserSearchFilter struct {
// An object that can be used to specify Tag conditions inside the SearchFilter.
// This accepts an OR of AND (List of List) input where:
//
// * Top level list
// specifies conditions that need to be applied with OR operator
//
// * Inner list
// specifies conditions that need to be applied with AND operator.
TagFilter *ControlPlaneTagFilter
noSmithyDocumentSerde
}
// Information about the returned users.
type UserSearchSummary struct {
// The Amazon Resource Name (ARN) of the user.
Arn *string
// The directory identifier of the user.
DirectoryUserId *string
// The identifier of the user's hierarchy group.
HierarchyGroupId *string
// The identifier of the user's summary.
Id *string
// The user's first name and last name.
IdentityInfo *UserIdentityInfoLite
// Contains information about the phone configuration settings for a user.
PhoneConfig *UserPhoneConfig
// The identifier of the user's routing profile.
RoutingProfileId *string
// The identifiers of the user's security profiles.
SecurityProfileIds []string
// The tags used to organize, track, or control access for this resource. For
// example, { "tags": {"key1":"value1", "key2":"value2"} }.
Tags map[string]string
// The name of the user.
Username *string
noSmithyDocumentSerde
}
// Contains summary information about a user.
type UserSummary struct {
// The Amazon Resource Name (ARN) of the user account.
Arn *string
// The identifier of the user account.
Id *string
// The Amazon Connect user name of the user account.
Username *string
noSmithyDocumentSerde
}
// Contains information about a custom vocabulary.
type Vocabulary struct {
// The Amazon Resource Name (ARN) of the custom vocabulary.
//
// This member is required.
Arn *string
// The identifier of the custom vocabulary.
//
// This member is required.
Id *string
// The language code of the vocabulary entries. For a list of languages and their
// corresponding language codes, see What is Amazon Transcribe?
// (https://docs.aws.amazon.com/transcribe/latest/dg/transcribe-whatis.html)
//
// This member is required.
LanguageCode VocabularyLanguageCode
// The timestamp when the custom vocabulary was last modified.
//
// This member is required.
LastModifiedTime *time.Time
// A unique name of the custom vocabulary.
//
// This member is required.
Name *string
// The current state of the custom vocabulary.
//
// This member is required.
State VocabularyState
// The content of the custom vocabulary in plain-text format with a table of
// values. Each row in the table represents a word or a phrase, described with
// Phrase, IPA, SoundsLike, and DisplayAs fields. Separate the fields with TAB
// characters. For more information, see Create a custom vocabulary using a table
// (https://docs.aws.amazon.com/transcribe/latest/dg/custom-vocabulary.html#create-vocabulary-table).
Content *string
// The reason why the custom vocabulary was not created.
FailureReason *string
// The tags used to organize, track, or control access for this resource. For
// example, { "tags": {"key1":"value1", "key2":"value2"} }.
Tags map[string]string
noSmithyDocumentSerde
}
// Contains summary information about the custom vocabulary.
type VocabularySummary struct {
// The Amazon Resource Name (ARN) of the custom vocabulary.
//
// This member is required.
Arn *string
// The identifier of the custom vocabulary.
//
// This member is required.
Id *string
// The language code of the vocabulary entries. For a list of languages and their
// corresponding language codes, see What is Amazon Transcribe?
// (https://docs.aws.amazon.com/transcribe/latest/dg/transcribe-whatis.html)
//
// This member is required.
LanguageCode VocabularyLanguageCode
// The timestamp when the custom vocabulary was last modified.
//
// This member is required.
LastModifiedTime *time.Time
// A unique name of the custom vocabulary.
//
// This member is required.
Name *string
// The current state of the custom vocabulary.
//
// This member is required.
State VocabularyState
// The reason why the custom vocabulary was not created.
FailureReason *string
noSmithyDocumentSerde
}
// Contains information about the recording configuration settings.
type VoiceRecordingConfiguration struct {
// Identifies which track is being recorded.
VoiceRecordingTrack VoiceRecordingTrack
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
// UnknownUnionMember is returned when a union member is returned over the wire,
// but has an unknown tag.
type UnknownUnionMember struct {
Tag string
Value []byte
noSmithyDocumentSerde
}
func (*UnknownUnionMember) isReferenceSummary() {}
|