connect.d.ts
92.7 KB
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
import {Request} from '../lib/request';
import {Response} from '../lib/response';
import {AWSError} from '../lib/error';
import {Service} from '../lib/service';
import {ServiceConfigurationOptions} from '../lib/service';
import {ConfigBase as Config} from '../lib/config-base';
interface Blob {}
declare class Connect extends Service {
/**
* Constructs a service object. This object has one method for each API operation.
*/
constructor(options?: Connect.Types.ClientConfiguration)
config: Config & Connect.Types.ClientConfiguration;
/**
* Associates a set of queues with a routing profile.
*/
associateRoutingProfileQueues(params: Connect.Types.AssociateRoutingProfileQueuesRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Associates a set of queues with a routing profile.
*/
associateRoutingProfileQueues(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Creates a contact flow for the specified Amazon Connect instance. You can also create and update contact flows using the Amazon Connect Flow language.
*/
createContactFlow(params: Connect.Types.CreateContactFlowRequest, callback?: (err: AWSError, data: Connect.Types.CreateContactFlowResponse) => void): Request<Connect.Types.CreateContactFlowResponse, AWSError>;
/**
* Creates a contact flow for the specified Amazon Connect instance. You can also create and update contact flows using the Amazon Connect Flow language.
*/
createContactFlow(callback?: (err: AWSError, data: Connect.Types.CreateContactFlowResponse) => void): Request<Connect.Types.CreateContactFlowResponse, AWSError>;
/**
* Creates a new routing profile.
*/
createRoutingProfile(params: Connect.Types.CreateRoutingProfileRequest, callback?: (err: AWSError, data: Connect.Types.CreateRoutingProfileResponse) => void): Request<Connect.Types.CreateRoutingProfileResponse, AWSError>;
/**
* Creates a new routing profile.
*/
createRoutingProfile(callback?: (err: AWSError, data: Connect.Types.CreateRoutingProfileResponse) => void): Request<Connect.Types.CreateRoutingProfileResponse, AWSError>;
/**
* Creates a user account for the specified Amazon Connect instance. For information about how to create user accounts using the Amazon Connect console, see Add Users in the Amazon Connect Administrator Guide.
*/
createUser(params: Connect.Types.CreateUserRequest, callback?: (err: AWSError, data: Connect.Types.CreateUserResponse) => void): Request<Connect.Types.CreateUserResponse, AWSError>;
/**
* Creates a user account for the specified Amazon Connect instance. For information about how to create user accounts using the Amazon Connect console, see Add Users in the Amazon Connect Administrator Guide.
*/
createUser(callback?: (err: AWSError, data: Connect.Types.CreateUserResponse) => void): Request<Connect.Types.CreateUserResponse, AWSError>;
/**
* Deletes a user account from the specified Amazon Connect instance. For information about what happens to a user's data when their account is deleted, see Delete Users from Your Amazon Connect Instance in the Amazon Connect Administrator Guide.
*/
deleteUser(params: Connect.Types.DeleteUserRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Deletes a user account from the specified Amazon Connect instance. For information about what happens to a user's data when their account is deleted, see Delete Users from Your Amazon Connect Instance in the Amazon Connect Administrator Guide.
*/
deleteUser(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Describes the specified contact flow. You can also create and update contact flows using the Amazon Connect Flow language.
*/
describeContactFlow(params: Connect.Types.DescribeContactFlowRequest, callback?: (err: AWSError, data: Connect.Types.DescribeContactFlowResponse) => void): Request<Connect.Types.DescribeContactFlowResponse, AWSError>;
/**
* Describes the specified contact flow. You can also create and update contact flows using the Amazon Connect Flow language.
*/
describeContactFlow(callback?: (err: AWSError, data: Connect.Types.DescribeContactFlowResponse) => void): Request<Connect.Types.DescribeContactFlowResponse, AWSError>;
/**
* Describes the specified routing profile.
*/
describeRoutingProfile(params: Connect.Types.DescribeRoutingProfileRequest, callback?: (err: AWSError, data: Connect.Types.DescribeRoutingProfileResponse) => void): Request<Connect.Types.DescribeRoutingProfileResponse, AWSError>;
/**
* Describes the specified routing profile.
*/
describeRoutingProfile(callback?: (err: AWSError, data: Connect.Types.DescribeRoutingProfileResponse) => void): Request<Connect.Types.DescribeRoutingProfileResponse, AWSError>;
/**
* Describes the specified user account. You can find the instance ID in the console (it’s the final part of the ARN). The console does not display the user IDs. Instead, list the users and note the IDs provided in the output.
*/
describeUser(params: Connect.Types.DescribeUserRequest, callback?: (err: AWSError, data: Connect.Types.DescribeUserResponse) => void): Request<Connect.Types.DescribeUserResponse, AWSError>;
/**
* Describes the specified user account. You can find the instance ID in the console (it’s the final part of the ARN). The console does not display the user IDs. Instead, list the users and note the IDs provided in the output.
*/
describeUser(callback?: (err: AWSError, data: Connect.Types.DescribeUserResponse) => void): Request<Connect.Types.DescribeUserResponse, AWSError>;
/**
* Describes the specified hierarchy group.
*/
describeUserHierarchyGroup(params: Connect.Types.DescribeUserHierarchyGroupRequest, callback?: (err: AWSError, data: Connect.Types.DescribeUserHierarchyGroupResponse) => void): Request<Connect.Types.DescribeUserHierarchyGroupResponse, AWSError>;
/**
* Describes the specified hierarchy group.
*/
describeUserHierarchyGroup(callback?: (err: AWSError, data: Connect.Types.DescribeUserHierarchyGroupResponse) => void): Request<Connect.Types.DescribeUserHierarchyGroupResponse, AWSError>;
/**
* Describes the hierarchy structure of the specified Amazon Connect instance.
*/
describeUserHierarchyStructure(params: Connect.Types.DescribeUserHierarchyStructureRequest, callback?: (err: AWSError, data: Connect.Types.DescribeUserHierarchyStructureResponse) => void): Request<Connect.Types.DescribeUserHierarchyStructureResponse, AWSError>;
/**
* Describes the hierarchy structure of the specified Amazon Connect instance.
*/
describeUserHierarchyStructure(callback?: (err: AWSError, data: Connect.Types.DescribeUserHierarchyStructureResponse) => void): Request<Connect.Types.DescribeUserHierarchyStructureResponse, AWSError>;
/**
* Disassociates a set of queues from a routing profile.
*/
disassociateRoutingProfileQueues(params: Connect.Types.DisassociateRoutingProfileQueuesRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Disassociates a set of queues from a routing profile.
*/
disassociateRoutingProfileQueues(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Retrieves the contact attributes for the specified contact.
*/
getContactAttributes(params: Connect.Types.GetContactAttributesRequest, callback?: (err: AWSError, data: Connect.Types.GetContactAttributesResponse) => void): Request<Connect.Types.GetContactAttributesResponse, AWSError>;
/**
* Retrieves the contact attributes for the specified contact.
*/
getContactAttributes(callback?: (err: AWSError, data: Connect.Types.GetContactAttributesResponse) => void): Request<Connect.Types.GetContactAttributesResponse, AWSError>;
/**
* Gets the real-time metric data from the specified Amazon Connect instance. For a description of each metric, see Real-time Metrics Definitions in the Amazon Connect Administrator Guide.
*/
getCurrentMetricData(params: Connect.Types.GetCurrentMetricDataRequest, callback?: (err: AWSError, data: Connect.Types.GetCurrentMetricDataResponse) => void): Request<Connect.Types.GetCurrentMetricDataResponse, AWSError>;
/**
* Gets the real-time metric data from the specified Amazon Connect instance. For a description of each metric, see Real-time Metrics Definitions in the Amazon Connect Administrator Guide.
*/
getCurrentMetricData(callback?: (err: AWSError, data: Connect.Types.GetCurrentMetricDataResponse) => void): Request<Connect.Types.GetCurrentMetricDataResponse, AWSError>;
/**
* Retrieves a token for federation.
*/
getFederationToken(params: Connect.Types.GetFederationTokenRequest, callback?: (err: AWSError, data: Connect.Types.GetFederationTokenResponse) => void): Request<Connect.Types.GetFederationTokenResponse, AWSError>;
/**
* Retrieves a token for federation.
*/
getFederationToken(callback?: (err: AWSError, data: Connect.Types.GetFederationTokenResponse) => void): Request<Connect.Types.GetFederationTokenResponse, AWSError>;
/**
* Gets historical metric data from the specified Amazon Connect instance. For a description of each historical metric, see Historical Metrics Definitions in the Amazon Connect Administrator Guide.
*/
getMetricData(params: Connect.Types.GetMetricDataRequest, callback?: (err: AWSError, data: Connect.Types.GetMetricDataResponse) => void): Request<Connect.Types.GetMetricDataResponse, AWSError>;
/**
* Gets historical metric data from the specified Amazon Connect instance. For a description of each historical metric, see Historical Metrics Definitions in the Amazon Connect Administrator Guide.
*/
getMetricData(callback?: (err: AWSError, data: Connect.Types.GetMetricDataResponse) => void): Request<Connect.Types.GetMetricDataResponse, AWSError>;
/**
* Provides information about the contact flows for the specified Amazon Connect instance. You can also create and update contact flows using the Amazon Connect Flow language. For more information about contact flows, see Contact Flows in the Amazon Connect Administrator Guide.
*/
listContactFlows(params: Connect.Types.ListContactFlowsRequest, callback?: (err: AWSError, data: Connect.Types.ListContactFlowsResponse) => void): Request<Connect.Types.ListContactFlowsResponse, AWSError>;
/**
* Provides information about the contact flows for the specified Amazon Connect instance. You can also create and update contact flows using the Amazon Connect Flow language. For more information about contact flows, see Contact Flows in the Amazon Connect Administrator Guide.
*/
listContactFlows(callback?: (err: AWSError, data: Connect.Types.ListContactFlowsResponse) => void): Request<Connect.Types.ListContactFlowsResponse, AWSError>;
/**
* Provides information about the hours of operation for the specified Amazon Connect instance. For more information about hours of operation, see Set the Hours of Operation for a Queue in the Amazon Connect Administrator Guide.
*/
listHoursOfOperations(params: Connect.Types.ListHoursOfOperationsRequest, callback?: (err: AWSError, data: Connect.Types.ListHoursOfOperationsResponse) => void): Request<Connect.Types.ListHoursOfOperationsResponse, AWSError>;
/**
* Provides information about the hours of operation for the specified Amazon Connect instance. For more information about hours of operation, see Set the Hours of Operation for a Queue in the Amazon Connect Administrator Guide.
*/
listHoursOfOperations(callback?: (err: AWSError, data: Connect.Types.ListHoursOfOperationsResponse) => void): Request<Connect.Types.ListHoursOfOperationsResponse, AWSError>;
/**
* Provides information about the phone numbers for the specified Amazon Connect instance. For more information about phone numbers, see Set Up Phone Numbers for Your Contact Center in the Amazon Connect Administrator Guide.
*/
listPhoneNumbers(params: Connect.Types.ListPhoneNumbersRequest, callback?: (err: AWSError, data: Connect.Types.ListPhoneNumbersResponse) => void): Request<Connect.Types.ListPhoneNumbersResponse, AWSError>;
/**
* Provides information about the phone numbers for the specified Amazon Connect instance. For more information about phone numbers, see Set Up Phone Numbers for Your Contact Center in the Amazon Connect Administrator Guide.
*/
listPhoneNumbers(callback?: (err: AWSError, data: Connect.Types.ListPhoneNumbersResponse) => void): Request<Connect.Types.ListPhoneNumbersResponse, AWSError>;
/**
* Provides information about the prompts for the specified Amazon Connect instance.
*/
listPrompts(params: Connect.Types.ListPromptsRequest, callback?: (err: AWSError, data: Connect.Types.ListPromptsResponse) => void): Request<Connect.Types.ListPromptsResponse, AWSError>;
/**
* Provides information about the prompts for the specified Amazon Connect instance.
*/
listPrompts(callback?: (err: AWSError, data: Connect.Types.ListPromptsResponse) => void): Request<Connect.Types.ListPromptsResponse, AWSError>;
/**
* Provides information about the queues for the specified Amazon Connect instance. For more information about queues, see Queues: Standard and Agent in the Amazon Connect Administrator Guide.
*/
listQueues(params: Connect.Types.ListQueuesRequest, callback?: (err: AWSError, data: Connect.Types.ListQueuesResponse) => void): Request<Connect.Types.ListQueuesResponse, AWSError>;
/**
* Provides information about the queues for the specified Amazon Connect instance. For more information about queues, see Queues: Standard and Agent in the Amazon Connect Administrator Guide.
*/
listQueues(callback?: (err: AWSError, data: Connect.Types.ListQueuesResponse) => void): Request<Connect.Types.ListQueuesResponse, AWSError>;
/**
* List the queues associated with a routing profile.
*/
listRoutingProfileQueues(params: Connect.Types.ListRoutingProfileQueuesRequest, callback?: (err: AWSError, data: Connect.Types.ListRoutingProfileQueuesResponse) => void): Request<Connect.Types.ListRoutingProfileQueuesResponse, AWSError>;
/**
* List the queues associated with a routing profile.
*/
listRoutingProfileQueues(callback?: (err: AWSError, data: Connect.Types.ListRoutingProfileQueuesResponse) => void): Request<Connect.Types.ListRoutingProfileQueuesResponse, AWSError>;
/**
* Provides summary information about the routing profiles for the specified Amazon Connect instance. For more information about routing profiles, see Routing Profiles and Create a Routing Profile in the Amazon Connect Administrator Guide.
*/
listRoutingProfiles(params: Connect.Types.ListRoutingProfilesRequest, callback?: (err: AWSError, data: Connect.Types.ListRoutingProfilesResponse) => void): Request<Connect.Types.ListRoutingProfilesResponse, AWSError>;
/**
* Provides summary information about the routing profiles for the specified Amazon Connect instance. For more information about routing profiles, see Routing Profiles and Create a Routing Profile in the Amazon Connect Administrator Guide.
*/
listRoutingProfiles(callback?: (err: AWSError, data: Connect.Types.ListRoutingProfilesResponse) => void): Request<Connect.Types.ListRoutingProfilesResponse, AWSError>;
/**
* Provides summary information about the security profiles for the specified Amazon Connect instance. For more information about security profiles, see Security Profiles in the Amazon Connect Administrator Guide.
*/
listSecurityProfiles(params: Connect.Types.ListSecurityProfilesRequest, callback?: (err: AWSError, data: Connect.Types.ListSecurityProfilesResponse) => void): Request<Connect.Types.ListSecurityProfilesResponse, AWSError>;
/**
* Provides summary information about the security profiles for the specified Amazon Connect instance. For more information about security profiles, see Security Profiles in the Amazon Connect Administrator Guide.
*/
listSecurityProfiles(callback?: (err: AWSError, data: Connect.Types.ListSecurityProfilesResponse) => void): Request<Connect.Types.ListSecurityProfilesResponse, AWSError>;
/**
* Lists the tags for the specified resource. For sample policies that use tags, see Amazon Connect Identity-Based Policy Examples in the Amazon Connect Administrator Guide.
*/
listTagsForResource(params: Connect.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: Connect.Types.ListTagsForResourceResponse) => void): Request<Connect.Types.ListTagsForResourceResponse, AWSError>;
/**
* Lists the tags for the specified resource. For sample policies that use tags, see Amazon Connect Identity-Based Policy Examples in the Amazon Connect Administrator Guide.
*/
listTagsForResource(callback?: (err: AWSError, data: Connect.Types.ListTagsForResourceResponse) => void): Request<Connect.Types.ListTagsForResourceResponse, AWSError>;
/**
* Provides summary information about the hierarchy groups for the specified Amazon Connect instance. For more information about agent hierarchies, see Set Up Agent Hierarchies in the Amazon Connect Administrator Guide.
*/
listUserHierarchyGroups(params: Connect.Types.ListUserHierarchyGroupsRequest, callback?: (err: AWSError, data: Connect.Types.ListUserHierarchyGroupsResponse) => void): Request<Connect.Types.ListUserHierarchyGroupsResponse, AWSError>;
/**
* Provides summary information about the hierarchy groups for the specified Amazon Connect instance. For more information about agent hierarchies, see Set Up Agent Hierarchies in the Amazon Connect Administrator Guide.
*/
listUserHierarchyGroups(callback?: (err: AWSError, data: Connect.Types.ListUserHierarchyGroupsResponse) => void): Request<Connect.Types.ListUserHierarchyGroupsResponse, AWSError>;
/**
* Provides summary information about the users for the specified Amazon Connect instance.
*/
listUsers(params: Connect.Types.ListUsersRequest, callback?: (err: AWSError, data: Connect.Types.ListUsersResponse) => void): Request<Connect.Types.ListUsersResponse, AWSError>;
/**
* Provides summary information about the users for the specified Amazon Connect instance.
*/
listUsers(callback?: (err: AWSError, data: Connect.Types.ListUsersResponse) => void): Request<Connect.Types.ListUsersResponse, AWSError>;
/**
* When a contact is being recorded, and the recording has been suspended using SuspendContactRecording, this API resumes recording the call. Only voice recordings are supported at this time.
*/
resumeContactRecording(params: Connect.Types.ResumeContactRecordingRequest, callback?: (err: AWSError, data: Connect.Types.ResumeContactRecordingResponse) => void): Request<Connect.Types.ResumeContactRecordingResponse, AWSError>;
/**
* When a contact is being recorded, and the recording has been suspended using SuspendContactRecording, this API resumes recording the call. Only voice recordings are supported at this time.
*/
resumeContactRecording(callback?: (err: AWSError, data: Connect.Types.ResumeContactRecordingResponse) => void): Request<Connect.Types.ResumeContactRecordingResponse, AWSError>;
/**
* Initiates a contact flow to start a new chat for the customer. Response of this API provides a token required to obtain credentials from the CreateParticipantConnection API in the Amazon Connect Participant Service. When a new chat contact is successfully created, clients need to subscribe to the participant’s connection for the created chat within 5 minutes. This is achieved by invoking CreateParticipantConnection with WEBSOCKET and CONNECTION_CREDENTIALS. A 429 error occurs in two situations: API rate limit is exceeded. API TPS throttling returns a TooManyRequests exception from the API Gateway. The quota for concurrent active chats is exceeded. Active chat throttling returns a LimitExceededException. For more information about how chat works, see Chat in the Amazon Connect Administrator Guide.
*/
startChatContact(params: Connect.Types.StartChatContactRequest, callback?: (err: AWSError, data: Connect.Types.StartChatContactResponse) => void): Request<Connect.Types.StartChatContactResponse, AWSError>;
/**
* Initiates a contact flow to start a new chat for the customer. Response of this API provides a token required to obtain credentials from the CreateParticipantConnection API in the Amazon Connect Participant Service. When a new chat contact is successfully created, clients need to subscribe to the participant’s connection for the created chat within 5 minutes. This is achieved by invoking CreateParticipantConnection with WEBSOCKET and CONNECTION_CREDENTIALS. A 429 error occurs in two situations: API rate limit is exceeded. API TPS throttling returns a TooManyRequests exception from the API Gateway. The quota for concurrent active chats is exceeded. Active chat throttling returns a LimitExceededException. For more information about how chat works, see Chat in the Amazon Connect Administrator Guide.
*/
startChatContact(callback?: (err: AWSError, data: Connect.Types.StartChatContactResponse) => void): Request<Connect.Types.StartChatContactResponse, AWSError>;
/**
* This API starts recording the contact when the agent joins the call. StartContactRecording is a one-time action. For example, if you use StopContactRecording to stop recording an ongoing call, you can't use StartContactRecording to restart it. For scenarios where the recording has started and you want to suspend and resume it, such as when collecting sensitive information (for example, a credit card number), use SuspendContactRecording and ResumeContactRecording. You can use this API to override the recording behavior configured in the Set recording behavior block. Only voice recordings are supported at this time.
*/
startContactRecording(params: Connect.Types.StartContactRecordingRequest, callback?: (err: AWSError, data: Connect.Types.StartContactRecordingResponse) => void): Request<Connect.Types.StartContactRecordingResponse, AWSError>;
/**
* This API starts recording the contact when the agent joins the call. StartContactRecording is a one-time action. For example, if you use StopContactRecording to stop recording an ongoing call, you can't use StartContactRecording to restart it. For scenarios where the recording has started and you want to suspend and resume it, such as when collecting sensitive information (for example, a credit card number), use SuspendContactRecording and ResumeContactRecording. You can use this API to override the recording behavior configured in the Set recording behavior block. Only voice recordings are supported at this time.
*/
startContactRecording(callback?: (err: AWSError, data: Connect.Types.StartContactRecordingResponse) => void): Request<Connect.Types.StartContactRecordingResponse, AWSError>;
/**
* This API places an outbound call to a contact, and then initiates the contact flow. It performs the actions in the contact flow that's specified (in ContactFlowId). Agents are not involved in initiating the outbound API (that is, dialing the contact). If the contact flow places an outbound call to a contact, and then puts the contact in queue, that's when the call is routed to the agent, like any other inbound case. There is a 60 second dialing timeout for this operation. If the call is not connected after 60 seconds, it fails. UK numbers with a 447 prefix are not allowed by default. Before you can dial these UK mobile numbers, you must submit a service quota increase request. For more information, see Amazon Connect Service Quotas in the Amazon Connect Administrator Guide.
*/
startOutboundVoiceContact(params: Connect.Types.StartOutboundVoiceContactRequest, callback?: (err: AWSError, data: Connect.Types.StartOutboundVoiceContactResponse) => void): Request<Connect.Types.StartOutboundVoiceContactResponse, AWSError>;
/**
* This API places an outbound call to a contact, and then initiates the contact flow. It performs the actions in the contact flow that's specified (in ContactFlowId). Agents are not involved in initiating the outbound API (that is, dialing the contact). If the contact flow places an outbound call to a contact, and then puts the contact in queue, that's when the call is routed to the agent, like any other inbound case. There is a 60 second dialing timeout for this operation. If the call is not connected after 60 seconds, it fails. UK numbers with a 447 prefix are not allowed by default. Before you can dial these UK mobile numbers, you must submit a service quota increase request. For more information, see Amazon Connect Service Quotas in the Amazon Connect Administrator Guide.
*/
startOutboundVoiceContact(callback?: (err: AWSError, data: Connect.Types.StartOutboundVoiceContactResponse) => void): Request<Connect.Types.StartOutboundVoiceContactResponse, AWSError>;
/**
* Ends the specified contact.
*/
stopContact(params: Connect.Types.StopContactRequest, callback?: (err: AWSError, data: Connect.Types.StopContactResponse) => void): Request<Connect.Types.StopContactResponse, AWSError>;
/**
* Ends the specified contact.
*/
stopContact(callback?: (err: AWSError, data: Connect.Types.StopContactResponse) => void): Request<Connect.Types.StopContactResponse, AWSError>;
/**
* When a contact is being recorded, this API stops recording the call. StopContactRecording is a one-time action. If you use StopContactRecording to stop recording an ongoing call, you can't use StartContactRecording to restart it. For scenarios where the recording has started and you want to suspend it for sensitive information (for example, to collect a credit card number), and then restart it, use SuspendContactRecording and ResumeContactRecording. Only voice recordings are supported at this time.
*/
stopContactRecording(params: Connect.Types.StopContactRecordingRequest, callback?: (err: AWSError, data: Connect.Types.StopContactRecordingResponse) => void): Request<Connect.Types.StopContactRecordingResponse, AWSError>;
/**
* When a contact is being recorded, this API stops recording the call. StopContactRecording is a one-time action. If you use StopContactRecording to stop recording an ongoing call, you can't use StartContactRecording to restart it. For scenarios where the recording has started and you want to suspend it for sensitive information (for example, to collect a credit card number), and then restart it, use SuspendContactRecording and ResumeContactRecording. Only voice recordings are supported at this time.
*/
stopContactRecording(callback?: (err: AWSError, data: Connect.Types.StopContactRecordingResponse) => void): Request<Connect.Types.StopContactRecordingResponse, AWSError>;
/**
* When a contact is being recorded, this API suspends recording the call. For example, you might suspend the call recording while collecting sensitive information, such as a credit card number. Then use ResumeContactRecording to restart recording. The period of time that the recording is suspended is filled with silence in the final recording. Only voice recordings are supported at this time.
*/
suspendContactRecording(params: Connect.Types.SuspendContactRecordingRequest, callback?: (err: AWSError, data: Connect.Types.SuspendContactRecordingResponse) => void): Request<Connect.Types.SuspendContactRecordingResponse, AWSError>;
/**
* When a contact is being recorded, this API suspends recording the call. For example, you might suspend the call recording while collecting sensitive information, such as a credit card number. Then use ResumeContactRecording to restart recording. The period of time that the recording is suspended is filled with silence in the final recording. Only voice recordings are supported at this time.
*/
suspendContactRecording(callback?: (err: AWSError, data: Connect.Types.SuspendContactRecordingResponse) => void): Request<Connect.Types.SuspendContactRecordingResponse, AWSError>;
/**
* Adds the specified tags to the specified resource. The supported resource types are users, routing profiles, and contact flows. For sample policies that use tags, see Amazon Connect Identity-Based Policy Examples in the Amazon Connect Administrator Guide.
*/
tagResource(params: Connect.Types.TagResourceRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Adds the specified tags to the specified resource. The supported resource types are users, routing profiles, and contact flows. For sample policies that use tags, see Amazon Connect Identity-Based Policy Examples in the Amazon Connect Administrator Guide.
*/
tagResource(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Removes the specified tags from the specified resource.
*/
untagResource(params: Connect.Types.UntagResourceRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Removes the specified tags from the specified resource.
*/
untagResource(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Creates or updates the contact attributes associated with the specified contact. You can add or update attributes for both ongoing and completed contacts. For example, you can update the customer's name or the reason the customer called while the call is active, or add notes about steps that the agent took during the call that are displayed to the next agent that takes the call. You can also update attributes for a contact using data from your CRM application and save the data with the contact in Amazon Connect. You could also flag calls for additional analysis, such as legal review or identifying abusive callers. Contact attributes are available in Amazon Connect for 24 months, and are then deleted. This operation is also available in the Amazon Connect Flow language. See UpdateContactAttributes. Important: You cannot use the operation to update attributes for contacts that occurred prior to the release of the API, September 12, 2018. You can update attributes only for contacts that started after the release of the API. If you attempt to update attributes for a contact that occurred prior to the release of the API, a 400 error is returned. This applies also to queued callbacks that were initiated prior to the release of the API but are still active in your instance.
*/
updateContactAttributes(params: Connect.Types.UpdateContactAttributesRequest, callback?: (err: AWSError, data: Connect.Types.UpdateContactAttributesResponse) => void): Request<Connect.Types.UpdateContactAttributesResponse, AWSError>;
/**
* Creates or updates the contact attributes associated with the specified contact. You can add or update attributes for both ongoing and completed contacts. For example, you can update the customer's name or the reason the customer called while the call is active, or add notes about steps that the agent took during the call that are displayed to the next agent that takes the call. You can also update attributes for a contact using data from your CRM application and save the data with the contact in Amazon Connect. You could also flag calls for additional analysis, such as legal review or identifying abusive callers. Contact attributes are available in Amazon Connect for 24 months, and are then deleted. This operation is also available in the Amazon Connect Flow language. See UpdateContactAttributes. Important: You cannot use the operation to update attributes for contacts that occurred prior to the release of the API, September 12, 2018. You can update attributes only for contacts that started after the release of the API. If you attempt to update attributes for a contact that occurred prior to the release of the API, a 400 error is returned. This applies also to queued callbacks that were initiated prior to the release of the API but are still active in your instance.
*/
updateContactAttributes(callback?: (err: AWSError, data: Connect.Types.UpdateContactAttributesResponse) => void): Request<Connect.Types.UpdateContactAttributesResponse, AWSError>;
/**
* Updates the specified contact flow. You can also create and update contact flows using the Amazon Connect Flow language.
*/
updateContactFlowContent(params: Connect.Types.UpdateContactFlowContentRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Updates the specified contact flow. You can also create and update contact flows using the Amazon Connect Flow language.
*/
updateContactFlowContent(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* The name of the contact flow.
*/
updateContactFlowName(params: Connect.Types.UpdateContactFlowNameRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* The name of the contact flow.
*/
updateContactFlowName(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Updates the channels that agents can handle in the Contact Control Panel (CCP) for a routing profile.
*/
updateRoutingProfileConcurrency(params: Connect.Types.UpdateRoutingProfileConcurrencyRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Updates the channels that agents can handle in the Contact Control Panel (CCP) for a routing profile.
*/
updateRoutingProfileConcurrency(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Updates the default outbound queue of a routing profile.
*/
updateRoutingProfileDefaultOutboundQueue(params: Connect.Types.UpdateRoutingProfileDefaultOutboundQueueRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Updates the default outbound queue of a routing profile.
*/
updateRoutingProfileDefaultOutboundQueue(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Updates the name and description of a routing profile. The request accepts the following data in JSON format. At least Name or Description must be provided.
*/
updateRoutingProfileName(params: Connect.Types.UpdateRoutingProfileNameRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Updates the name and description of a routing profile. The request accepts the following data in JSON format. At least Name or Description must be provided.
*/
updateRoutingProfileName(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Updates the properties associated with a set of queues for a routing profile.
*/
updateRoutingProfileQueues(params: Connect.Types.UpdateRoutingProfileQueuesRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Updates the properties associated with a set of queues for a routing profile.
*/
updateRoutingProfileQueues(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Assigns the specified hierarchy group to the specified user.
*/
updateUserHierarchy(params: Connect.Types.UpdateUserHierarchyRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Assigns the specified hierarchy group to the specified user.
*/
updateUserHierarchy(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Updates the identity information for the specified user. Someone with the ability to invoke UpdateUserIndentityInfo can change the login credentials of other users by changing their email address. This poses a security risk to your organization. They can change the email address of a user to the attacker's email address, and then reset the password through email. We strongly recommend limiting who has the ability to invoke UpdateUserIndentityInfo. For more information, see Best Practices for Security Profiles in the Amazon Connect Administrator Guide.
*/
updateUserIdentityInfo(params: Connect.Types.UpdateUserIdentityInfoRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Updates the identity information for the specified user. Someone with the ability to invoke UpdateUserIndentityInfo can change the login credentials of other users by changing their email address. This poses a security risk to your organization. They can change the email address of a user to the attacker's email address, and then reset the password through email. We strongly recommend limiting who has the ability to invoke UpdateUserIndentityInfo. For more information, see Best Practices for Security Profiles in the Amazon Connect Administrator Guide.
*/
updateUserIdentityInfo(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Updates the phone configuration settings for the specified user.
*/
updateUserPhoneConfig(params: Connect.Types.UpdateUserPhoneConfigRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Updates the phone configuration settings for the specified user.
*/
updateUserPhoneConfig(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Assigns the specified routing profile to the specified user.
*/
updateUserRoutingProfile(params: Connect.Types.UpdateUserRoutingProfileRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Assigns the specified routing profile to the specified user.
*/
updateUserRoutingProfile(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Assigns the specified security profiles to the specified user.
*/
updateUserSecurityProfiles(params: Connect.Types.UpdateUserSecurityProfilesRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Assigns the specified security profiles to the specified user.
*/
updateUserSecurityProfiles(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
}
declare namespace Connect {
export type ARN = string;
export type AfterContactWorkTimeLimit = number;
export type AgentFirstName = string;
export type AgentLastName = string;
export type AgentUsername = string;
export interface AssociateRoutingProfileQueuesRequest {
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
/**
* The identifier of the routing profile.
*/
RoutingProfileId: RoutingProfileId;
/**
* The queues to associate with this routing profile.
*/
QueueConfigs: RoutingProfileQueueConfigList;
}
export type AttributeName = string;
export type AttributeValue = string;
export type Attributes = {[key: string]: AttributeValue};
export type AutoAccept = boolean;
export type Channel = "VOICE"|"CHAT"|string;
export type Channels = Channel[];
export type ChatContent = string;
export type ChatContentType = string;
export interface ChatMessage {
/**
* The type of the content. Supported types are text/plain.
*/
ContentType: ChatContentType;
/**
* The content of the chat message.
*/
Content: ChatContent;
}
export type ClientToken = string;
export type Comparison = "LT"|string;
export type Concurrency = number;
export interface ContactFlow {
/**
* The Amazon Resource Name (ARN) of the contact flow.
*/
Arn?: ARN;
/**
* The identifier of the contact flow.
*/
Id?: ContactFlowId;
/**
* The name of the contact flow.
*/
Name?: ContactFlowName;
/**
* The type of the contact flow. For descriptions of the available types, see Choose a Contact Flow Type in the Amazon Connect Administrator Guide.
*/
Type?: ContactFlowType;
/**
* The description of the contact flow.
*/
Description?: ContactFlowDescription;
/**
* The content of the contact flow.
*/
Content?: ContactFlowContent;
/**
* One or more tags.
*/
Tags?: TagMap;
}
export type ContactFlowContent = string;
export type ContactFlowDescription = string;
export type ContactFlowId = string;
export type ContactFlowName = string;
export interface ContactFlowSummary {
/**
* The identifier of the contact flow.
*/
Id?: ContactFlowId;
/**
* The Amazon Resource Name (ARN) of the contact flow.
*/
Arn?: ARN;
/**
* The name of the contact flow.
*/
Name?: ContactFlowName;
/**
* The type of contact flow.
*/
ContactFlowType?: ContactFlowType;
}
export type ContactFlowSummaryList = ContactFlowSummary[];
export type ContactFlowType = "CONTACT_FLOW"|"CUSTOMER_QUEUE"|"CUSTOMER_HOLD"|"CUSTOMER_WHISPER"|"AGENT_HOLD"|"AGENT_WHISPER"|"OUTBOUND_WHISPER"|"AGENT_TRANSFER"|"QUEUE_TRANSFER"|string;
export type ContactFlowTypes = ContactFlowType[];
export type ContactId = string;
export interface CreateContactFlowRequest {
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
/**
* The name of the contact flow.
*/
Name: ContactFlowName;
/**
* The type of the contact flow. For descriptions of the available types, see Choose a Contact Flow Type in the Amazon Connect Administrator Guide.
*/
Type: ContactFlowType;
/**
* The description of the contact flow.
*/
Description?: ContactFlowDescription;
/**
* The content of the contact flow.
*/
Content: ContactFlowContent;
/**
* One or more tags.
*/
Tags?: TagMap;
}
export interface CreateContactFlowResponse {
/**
* The identifier of the contact flow.
*/
ContactFlowId?: ContactFlowId;
/**
* The Amazon Resource Name (ARN) of the contact flow.
*/
ContactFlowArn?: ARN;
}
export interface CreateRoutingProfileRequest {
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
/**
* The name of the routing profile. Must not be more than 127 characters.
*/
Name: RoutingProfileName;
/**
* Description of the routing profile. Must not be more than 250 characters.
*/
Description: RoutingProfileDescription;
/**
* The default outbound queue for the routing profile.
*/
DefaultOutboundQueueId: QueueId;
/**
* The inbound queues associated with the routing profile. If no queue is added, the agent can only make outbound calls.
*/
QueueConfigs?: RoutingProfileQueueConfigList;
/**
* The channels agents can handle in the Contact Control Panel (CCP) for this routing profile.
*/
MediaConcurrencies: MediaConcurrencies;
/**
* One or more tags.
*/
Tags?: TagMap;
}
export interface CreateRoutingProfileResponse {
/**
* The Amazon Resource Name (ARN) of the routing profile.
*/
RoutingProfileArn?: ARN;
/**
* The identifier of the routing profile.
*/
RoutingProfileId?: RoutingProfileId;
}
export interface CreateUserRequest {
/**
* The user name for the account. For instances not using SAML for identity management, the user name can include up to 20 characters. If you are using SAML for identity management, the user name can include up to 64 characters from [a-zA-Z0-9_-.\@]+.
*/
Username: AgentUsername;
/**
* The password for the user account. A password is required if you are using Amazon Connect for identity management. Otherwise, it is an error to include a password.
*/
Password?: Password;
/**
* The information about the identity of the user.
*/
IdentityInfo?: UserIdentityInfo;
/**
* The phone settings for the user.
*/
PhoneConfig: UserPhoneConfig;
/**
* The identifier of the user account in the directory used for identity management. If Amazon Connect cannot access the directory, you can specify this identifier to authenticate users. If you include the identifier, we assume that Amazon Connect cannot access the directory. Otherwise, the identity information is used to authenticate users from your directory. This parameter is required if you are using an existing directory for identity management in Amazon Connect when Amazon Connect cannot access your directory to authenticate users. If you are using SAML for identity management and include this parameter, an error is returned.
*/
DirectoryUserId?: DirectoryUserId;
/**
* The identifier of the security profile for the user.
*/
SecurityProfileIds: SecurityProfileIds;
/**
* The identifier of the routing profile for the user.
*/
RoutingProfileId: RoutingProfileId;
/**
* The identifier of the hierarchy group for the user.
*/
HierarchyGroupId?: HierarchyGroupId;
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
/**
* One or more tags.
*/
Tags?: TagMap;
}
export interface CreateUserResponse {
/**
* The identifier of the user account.
*/
UserId?: UserId;
/**
* The Amazon Resource Name (ARN) of the user account.
*/
UserArn?: ARN;
}
export interface Credentials {
/**
* An access token generated for a federated user to access Amazon Connect.
*/
AccessToken?: SecurityToken;
/**
* A token generated with an expiration time for the session a user is logged in to Amazon Connect.
*/
AccessTokenExpiration?: timestamp;
/**
* Renews a token generated for a user to access the Amazon Connect instance.
*/
RefreshToken?: SecurityToken;
/**
* Renews the expiration timer for a generated token.
*/
RefreshTokenExpiration?: timestamp;
}
export interface CurrentMetric {
/**
* The name of the metric.
*/
Name?: CurrentMetricName;
/**
* The unit for the metric.
*/
Unit?: Unit;
}
export interface CurrentMetricData {
/**
* Information about the metric.
*/
Metric?: CurrentMetric;
/**
* The value of the metric.
*/
Value?: Value;
}
export type CurrentMetricDataCollections = CurrentMetricData[];
export type CurrentMetricName = "AGENTS_ONLINE"|"AGENTS_AVAILABLE"|"AGENTS_ON_CALL"|"AGENTS_NON_PRODUCTIVE"|"AGENTS_AFTER_CONTACT_WORK"|"AGENTS_ERROR"|"AGENTS_STAFFED"|"CONTACTS_IN_QUEUE"|"OLDEST_CONTACT_AGE"|"CONTACTS_SCHEDULED"|"AGENTS_ON_CONTACT"|"SLOTS_ACTIVE"|"SLOTS_AVAILABLE"|string;
export interface CurrentMetricResult {
/**
* The dimensions for the metrics.
*/
Dimensions?: Dimensions;
/**
* The set of metrics.
*/
Collections?: CurrentMetricDataCollections;
}
export type CurrentMetricResults = CurrentMetricResult[];
export type CurrentMetrics = CurrentMetric[];
export type Delay = number;
export interface DeleteUserRequest {
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
/**
* The identifier of the user.
*/
UserId: UserId;
}
export interface DescribeContactFlowRequest {
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
/**
* The identifier of the contact flow.
*/
ContactFlowId: ContactFlowId;
}
export interface DescribeContactFlowResponse {
/**
* Information about the contact flow.
*/
ContactFlow?: ContactFlow;
}
export interface DescribeRoutingProfileRequest {
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
/**
* The identifier of the routing profile.
*/
RoutingProfileId: RoutingProfileId;
}
export interface DescribeRoutingProfileResponse {
/**
* The routing profile.
*/
RoutingProfile?: RoutingProfile;
}
export interface DescribeUserHierarchyGroupRequest {
/**
* The identifier of the hierarchy group.
*/
HierarchyGroupId: HierarchyGroupId;
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
}
export interface DescribeUserHierarchyGroupResponse {
/**
* Information about the hierarchy group.
*/
HierarchyGroup?: HierarchyGroup;
}
export interface DescribeUserHierarchyStructureRequest {
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
}
export interface DescribeUserHierarchyStructureResponse {
/**
* Information about the hierarchy structure.
*/
HierarchyStructure?: HierarchyStructure;
}
export interface DescribeUserRequest {
/**
* The identifier of the user account.
*/
UserId: UserId;
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
}
export interface DescribeUserResponse {
/**
* Information about the user account and configuration settings.
*/
User?: User;
}
export interface Dimensions {
/**
* Information about the queue for which metrics are returned.
*/
Queue?: QueueReference;
/**
* The channel used for grouping and filters.
*/
Channel?: Channel;
}
export type DirectoryUserId = string;
export interface DisassociateRoutingProfileQueuesRequest {
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
/**
* The identifier of the routing profile.
*/
RoutingProfileId: RoutingProfileId;
/**
* The queues to disassociate from this routing profile.
*/
QueueReferences: RoutingProfileQueueReferenceList;
}
export type DisplayName = string;
export type Email = string;
export interface Filters {
/**
* The queues to use to filter the metrics. You can specify up to 100 queues per request.
*/
Queues?: Queues;
/**
* The channel to use to filter the metrics.
*/
Channels?: Channels;
}
export interface GetContactAttributesRequest {
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
/**
* The identifier of the initial contact.
*/
InitialContactId: ContactId;
}
export interface GetContactAttributesResponse {
/**
* Information about the attributes.
*/
Attributes?: Attributes;
}
export interface GetCurrentMetricDataRequest {
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
/**
* The queues, up to 100, or channels, to use to filter the metrics returned. Metric data is retrieved only for the resources associated with the queues or channels included in the filter. You can include both queue IDs and queue ARNs in the same request. Both VOICE and CHAT channels are supported.
*/
Filters: Filters;
/**
* The grouping applied to the metrics returned. For example, when grouped by QUEUE, the metrics returned apply to each queue rather than aggregated for all queues. If you group by CHANNEL, you should include a Channels filter. Both VOICE and CHAT channels are supported. If no Grouping is included in the request, a summary of metrics is returned.
*/
Groupings?: Groupings;
/**
* The metrics to retrieve. Specify the name and unit for each metric. The following metrics are available. For a description of all the metrics, see Real-time Metrics Definitions in the Amazon Connect Administrator Guide. AGENTS_AFTER_CONTACT_WORK Unit: COUNT Name in real-time metrics report: ACW AGENTS_AVAILABLE Unit: COUNT Name in real-time metrics report: Available AGENTS_ERROR Unit: COUNT Name in real-time metrics report: Error AGENTS_NON_PRODUCTIVE Unit: COUNT Name in real-time metrics report: NPT (Non-Productive Time) AGENTS_ON_CALL Unit: COUNT Name in real-time metrics report: On contact AGENTS_ON_CONTACT Unit: COUNT Name in real-time metrics report: On contact AGENTS_ONLINE Unit: COUNT Name in real-time metrics report: Online AGENTS_STAFFED Unit: COUNT Name in real-time metrics report: Staffed CONTACTS_IN_QUEUE Unit: COUNT Name in real-time metrics report: In queue CONTACTS_SCHEDULED Unit: COUNT Name in real-time metrics report: Scheduled OLDEST_CONTACT_AGE Unit: SECONDS When you use groupings, Unit says SECONDS but the Value is returned in MILLISECONDS. For example, if you get a response like this: { "Metric": { "Name": "OLDEST_CONTACT_AGE", "Unit": "SECONDS" }, "Value": 24113.0 } The actual OLDEST_CONTACT_AGE is 24 seconds. Name in real-time metrics report: Oldest SLOTS_ACTIVE Unit: COUNT Name in real-time metrics report: Active SLOTS_AVAILABLE Unit: COUNT Name in real-time metrics report: Availability
*/
CurrentMetrics: CurrentMetrics;
/**
* The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results. The token expires after 5 minutes from the time it is created. Subsequent requests that use the token must use the same request parameters as the request that generated the token.
*/
NextToken?: NextToken;
/**
* The maximimum number of results to return per page.
*/
MaxResults?: MaxResult100;
}
export interface GetCurrentMetricDataResponse {
/**
* If there are additional results, this is the token for the next set of results. The token expires after 5 minutes from the time it is created. Subsequent requests that use the token must use the same request parameters as the request that generated the token.
*/
NextToken?: NextToken;
/**
* Information about the real-time metrics.
*/
MetricResults?: CurrentMetricResults;
/**
* The time at which the metrics were retrieved and cached for pagination.
*/
DataSnapshotTime?: timestamp;
}
export interface GetFederationTokenRequest {
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
}
export interface GetFederationTokenResponse {
/**
* The credentials to use for federation.
*/
Credentials?: Credentials;
}
export interface GetMetricDataRequest {
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
/**
* The timestamp, in UNIX Epoch time format, at which to start the reporting interval for the retrieval of historical metrics data. The time must be specified using a multiple of 5 minutes, such as 10:05, 10:10, 10:15. The start time cannot be earlier than 24 hours before the time of the request. Historical metrics are available only for 24 hours.
*/
StartTime: timestamp;
/**
* The timestamp, in UNIX Epoch time format, at which to end the reporting interval for the retrieval of historical metrics data. The time must be specified using an interval of 5 minutes, such as 11:00, 11:05, 11:10, and must be later than the start time timestamp. The time range between the start and end time must be less than 24 hours.
*/
EndTime: timestamp;
/**
* The queues, up to 100, or channels, to use to filter the metrics returned. Metric data is retrieved only for the resources associated with the queues or channels included in the filter. You can include both queue IDs and queue ARNs in the same request. Both VOICE and CHAT channels are supported.
*/
Filters: Filters;
/**
* The grouping applied to the metrics returned. For example, when results are grouped by queue, the metrics returned are grouped by queue. The values returned apply to the metrics for each queue rather than aggregated for all queues. The only supported grouping is QUEUE. If no grouping is specified, a summary of metrics for all queues is returned.
*/
Groupings?: Groupings;
/**
* The metrics to retrieve. Specify the name, unit, and statistic for each metric. The following historical metrics are available. For a description of each metric, see Historical Metrics Definitions in the Amazon Connect Administrator Guide. ABANDON_TIME Unit: SECONDS Statistic: AVG AFTER_CONTACT_WORK_TIME Unit: SECONDS Statistic: AVG API_CONTACTS_HANDLED Unit: COUNT Statistic: SUM CALLBACK_CONTACTS_HANDLED Unit: COUNT Statistic: SUM CONTACTS_ABANDONED Unit: COUNT Statistic: SUM CONTACTS_AGENT_HUNG_UP_FIRST Unit: COUNT Statistic: SUM CONTACTS_CONSULTED Unit: COUNT Statistic: SUM CONTACTS_HANDLED Unit: COUNT Statistic: SUM CONTACTS_HANDLED_INCOMING Unit: COUNT Statistic: SUM CONTACTS_HANDLED_OUTBOUND Unit: COUNT Statistic: SUM CONTACTS_HOLD_ABANDONS Unit: COUNT Statistic: SUM CONTACTS_MISSED Unit: COUNT Statistic: SUM CONTACTS_QUEUED Unit: COUNT Statistic: SUM CONTACTS_TRANSFERRED_IN Unit: COUNT Statistic: SUM CONTACTS_TRANSFERRED_IN_FROM_QUEUE Unit: COUNT Statistic: SUM CONTACTS_TRANSFERRED_OUT Unit: COUNT Statistic: SUM CONTACTS_TRANSFERRED_OUT_FROM_QUEUE Unit: COUNT Statistic: SUM HANDLE_TIME Unit: SECONDS Statistic: AVG HOLD_TIME Unit: SECONDS Statistic: AVG INTERACTION_AND_HOLD_TIME Unit: SECONDS Statistic: AVG INTERACTION_TIME Unit: SECONDS Statistic: AVG OCCUPANCY Unit: PERCENT Statistic: AVG QUEUE_ANSWER_TIME Unit: SECONDS Statistic: AVG QUEUED_TIME Unit: SECONDS Statistic: MAX SERVICE_LEVEL Unit: PERCENT Statistic: AVG Threshold: Only "Less than" comparisons are supported, with the following service level thresholds: 15, 20, 25, 30, 45, 60, 90, 120, 180, 240, 300, 600
*/
HistoricalMetrics: HistoricalMetrics;
/**
* The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
*/
NextToken?: NextToken;
/**
* The maximimum number of results to return per page.
*/
MaxResults?: MaxResult100;
}
export interface GetMetricDataResponse {
/**
* If there are additional results, this is the token for the next set of results. The token expires after 5 minutes from the time it is created. Subsequent requests that use the token must use the same request parameters as the request that generated the token.
*/
NextToken?: NextToken;
/**
* Information about the historical metrics. If no grouping is specified, a summary of metric data is returned.
*/
MetricResults?: HistoricalMetricResults;
}
export type Grouping = "QUEUE"|"CHANNEL"|string;
export type Groupings = Grouping[];
export interface HierarchyGroup {
/**
* The identifier of the hierarchy group.
*/
Id?: HierarchyGroupId;
/**
* The Amazon Resource Name (ARN) of the hierarchy group.
*/
Arn?: ARN;
/**
* The name of the hierarchy group.
*/
Name?: HierarchyGroupName;
/**
* The identifier of the level in the hierarchy group.
*/
LevelId?: HierarchyLevelId;
/**
* Information about the levels in the hierarchy group.
*/
HierarchyPath?: HierarchyPath;
}
export type HierarchyGroupId = string;
export type HierarchyGroupName = string;
export interface HierarchyGroupSummary {
/**
* The identifier of the hierarchy group.
*/
Id?: HierarchyGroupId;
/**
* The Amazon Resource Name (ARN) of the hierarchy group.
*/
Arn?: ARN;
/**
* The name of the hierarchy group.
*/
Name?: HierarchyGroupName;
}
export type HierarchyGroupSummaryList = HierarchyGroupSummary[];
export interface HierarchyLevel {
/**
* The identifier of the hierarchy level.
*/
Id?: HierarchyLevelId;
/**
* The Amazon Resource Name (ARN) of the hierarchy level.
*/
Arn?: ARN;
/**
* The name of the hierarchy level.
*/
Name?: HierarchyLevelName;
}
export type HierarchyLevelId = string;
export type HierarchyLevelName = string;
export interface HierarchyPath {
/**
* Information about level one.
*/
LevelOne?: HierarchyGroupSummary;
/**
* Information about level two.
*/
LevelTwo?: HierarchyGroupSummary;
/**
* Information about level three.
*/
LevelThree?: HierarchyGroupSummary;
/**
* Information about level four.
*/
LevelFour?: HierarchyGroupSummary;
/**
* Information about level five.
*/
LevelFive?: HierarchyGroupSummary;
}
export interface HierarchyStructure {
/**
* Information about level one.
*/
LevelOne?: HierarchyLevel;
/**
* Information about level two.
*/
LevelTwo?: HierarchyLevel;
/**
* Information about level three.
*/
LevelThree?: HierarchyLevel;
/**
* Information about level four.
*/
LevelFour?: HierarchyLevel;
/**
* Information about level five.
*/
LevelFive?: HierarchyLevel;
}
export interface HistoricalMetric {
/**
* The name of the metric.
*/
Name?: HistoricalMetricName;
/**
* The threshold for the metric, used with service level metrics.
*/
Threshold?: Threshold;
/**
* The statistic for the metric.
*/
Statistic?: Statistic;
/**
* The unit for the metric.
*/
Unit?: Unit;
}
export interface HistoricalMetricData {
/**
* Information about the metric.
*/
Metric?: HistoricalMetric;
/**
* The value of the metric.
*/
Value?: Value;
}
export type HistoricalMetricDataCollections = HistoricalMetricData[];
export type HistoricalMetricName = "CONTACTS_QUEUED"|"CONTACTS_HANDLED"|"CONTACTS_ABANDONED"|"CONTACTS_CONSULTED"|"CONTACTS_AGENT_HUNG_UP_FIRST"|"CONTACTS_HANDLED_INCOMING"|"CONTACTS_HANDLED_OUTBOUND"|"CONTACTS_HOLD_ABANDONS"|"CONTACTS_TRANSFERRED_IN"|"CONTACTS_TRANSFERRED_OUT"|"CONTACTS_TRANSFERRED_IN_FROM_QUEUE"|"CONTACTS_TRANSFERRED_OUT_FROM_QUEUE"|"CONTACTS_MISSED"|"CALLBACK_CONTACTS_HANDLED"|"API_CONTACTS_HANDLED"|"OCCUPANCY"|"HANDLE_TIME"|"AFTER_CONTACT_WORK_TIME"|"QUEUED_TIME"|"ABANDON_TIME"|"QUEUE_ANSWER_TIME"|"HOLD_TIME"|"INTERACTION_TIME"|"INTERACTION_AND_HOLD_TIME"|"SERVICE_LEVEL"|string;
export interface HistoricalMetricResult {
/**
* The dimension for the metrics.
*/
Dimensions?: Dimensions;
/**
* The set of metrics.
*/
Collections?: HistoricalMetricDataCollections;
}
export type HistoricalMetricResults = HistoricalMetricResult[];
export type HistoricalMetrics = HistoricalMetric[];
export type HoursOfOperationId = string;
export type HoursOfOperationName = string;
export interface HoursOfOperationSummary {
/**
* The identifier of the hours of operation.
*/
Id?: HoursOfOperationId;
/**
* The Amazon Resource Name (ARN) of the hours of operation.
*/
Arn?: ARN;
/**
* The name of the hours of operation.
*/
Name?: HoursOfOperationName;
}
export type HoursOfOperationSummaryList = HoursOfOperationSummary[];
export type InstanceId = string;
export interface ListContactFlowsRequest {
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
/**
* The type of contact flow.
*/
ContactFlowTypes?: ContactFlowTypes;
/**
* The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
*/
NextToken?: NextToken;
/**
* The maximimum number of results to return per page.
*/
MaxResults?: MaxResult1000;
}
export interface ListContactFlowsResponse {
/**
* Information about the contact flows.
*/
ContactFlowSummaryList?: ContactFlowSummaryList;
/**
* If there are additional results, this is the token for the next set of results.
*/
NextToken?: NextToken;
}
export interface ListHoursOfOperationsRequest {
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
/**
* The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
*/
NextToken?: NextToken;
/**
* The maximimum number of results to return per page.
*/
MaxResults?: MaxResult1000;
}
export interface ListHoursOfOperationsResponse {
/**
* Information about the hours of operation.
*/
HoursOfOperationSummaryList?: HoursOfOperationSummaryList;
/**
* If there are additional results, this is the token for the next set of results.
*/
NextToken?: NextToken;
}
export interface ListPhoneNumbersRequest {
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
/**
* The type of phone number.
*/
PhoneNumberTypes?: PhoneNumberTypes;
/**
* The ISO country code.
*/
PhoneNumberCountryCodes?: PhoneNumberCountryCodes;
/**
* The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
*/
NextToken?: NextToken;
/**
* The maximimum number of results to return per page.
*/
MaxResults?: MaxResult1000;
}
export interface ListPhoneNumbersResponse {
/**
* Information about the phone numbers.
*/
PhoneNumberSummaryList?: PhoneNumberSummaryList;
/**
* If there are additional results, this is the token for the next set of results.
*/
NextToken?: NextToken;
}
export interface ListPromptsRequest {
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
/**
* The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
*/
NextToken?: NextToken;
/**
* The maximum number of results to return per page.
*/
MaxResults?: MaxResult1000;
}
export interface ListPromptsResponse {
/**
* Information about the prompts.
*/
PromptSummaryList?: PromptSummaryList;
/**
* If there are additional results, this is the token for the next set of results.
*/
NextToken?: NextToken;
}
export interface ListQueuesRequest {
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
/**
* The type of queue.
*/
QueueTypes?: QueueTypes;
/**
* The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
*/
NextToken?: NextToken;
/**
* The maximimum number of results to return per page.
*/
MaxResults?: MaxResult1000;
}
export interface ListQueuesResponse {
/**
* Information about the queues.
*/
QueueSummaryList?: QueueSummaryList;
/**
* If there are additional results, this is the token for the next set of results.
*/
NextToken?: NextToken;
}
export interface ListRoutingProfileQueuesRequest {
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
/**
* The identifier of the routing profile.
*/
RoutingProfileId: RoutingProfileId;
/**
* The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
*/
NextToken?: NextToken;
/**
* The maximimum number of results to return per page.
*/
MaxResults?: MaxResult100;
}
export interface ListRoutingProfileQueuesResponse {
/**
* If there are additional results, this is the token for the next set of results.
*/
NextToken?: NextToken;
/**
* Information about the routing profiles.
*/
RoutingProfileQueueConfigSummaryList?: RoutingProfileQueueConfigSummaryList;
}
export interface ListRoutingProfilesRequest {
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
/**
* The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
*/
NextToken?: NextToken;
/**
* The maximimum number of results to return per page.
*/
MaxResults?: MaxResult1000;
}
export interface ListRoutingProfilesResponse {
/**
* Information about the routing profiles.
*/
RoutingProfileSummaryList?: RoutingProfileSummaryList;
/**
* If there are additional results, this is the token for the next set of results.
*/
NextToken?: NextToken;
}
export interface ListSecurityProfilesRequest {
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
/**
* The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
*/
NextToken?: NextToken;
/**
* The maximimum number of results to return per page.
*/
MaxResults?: MaxResult1000;
}
export interface ListSecurityProfilesResponse {
/**
* Information about the security profiles.
*/
SecurityProfileSummaryList?: SecurityProfileSummaryList;
/**
* If there are additional results, this is the token for the next set of results.
*/
NextToken?: NextToken;
}
export interface ListTagsForResourceRequest {
/**
* The Amazon Resource Name (ARN) of the resource.
*/
resourceArn: ARN;
}
export interface ListTagsForResourceResponse {
/**
* Information about the tags.
*/
tags?: TagMap;
}
export interface ListUserHierarchyGroupsRequest {
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
/**
* The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
*/
NextToken?: NextToken;
/**
* The maximimum number of results to return per page.
*/
MaxResults?: MaxResult1000;
}
export interface ListUserHierarchyGroupsResponse {
/**
* Information about the hierarchy groups.
*/
UserHierarchyGroupSummaryList?: HierarchyGroupSummaryList;
/**
* If there are additional results, this is the token for the next set of results.
*/
NextToken?: NextToken;
}
export interface ListUsersRequest {
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
/**
* The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
*/
NextToken?: NextToken;
/**
* The maximimum number of results to return per page.
*/
MaxResults?: MaxResult1000;
}
export interface ListUsersResponse {
/**
* Information about the users.
*/
UserSummaryList?: UserSummaryList;
/**
* If there are additional results, this is the token for the next set of results.
*/
NextToken?: NextToken;
}
export type MaxResult100 = number;
export type MaxResult1000 = number;
export type MediaConcurrencies = MediaConcurrency[];
export interface MediaConcurrency {
/**
* The channels that agents can handle in the Contact Control Panel (CCP).
*/
Channel: Channel;
/**
* The number of contacts an agent can have on a channel simultaneously.
*/
Concurrency: Concurrency;
}
export type NextToken = string;
export interface ParticipantDetails {
/**
* Display name of the participant.
*/
DisplayName: DisplayName;
}
export type ParticipantId = string;
export type ParticipantToken = string;
export type Password = string;
export type PhoneNumber = string;
export type PhoneNumberCountryCode = "AF"|"AL"|"DZ"|"AS"|"AD"|"AO"|"AI"|"AQ"|"AG"|"AR"|"AM"|"AW"|"AU"|"AT"|"AZ"|"BS"|"BH"|"BD"|"BB"|"BY"|"BE"|"BZ"|"BJ"|"BM"|"BT"|"BO"|"BA"|"BW"|"BR"|"IO"|"VG"|"BN"|"BG"|"BF"|"BI"|"KH"|"CM"|"CA"|"CV"|"KY"|"CF"|"TD"|"CL"|"CN"|"CX"|"CC"|"CO"|"KM"|"CK"|"CR"|"HR"|"CU"|"CW"|"CY"|"CZ"|"CD"|"DK"|"DJ"|"DM"|"DO"|"TL"|"EC"|"EG"|"SV"|"GQ"|"ER"|"EE"|"ET"|"FK"|"FO"|"FJ"|"FI"|"FR"|"PF"|"GA"|"GM"|"GE"|"DE"|"GH"|"GI"|"GR"|"GL"|"GD"|"GU"|"GT"|"GG"|"GN"|"GW"|"GY"|"HT"|"HN"|"HK"|"HU"|"IS"|"IN"|"ID"|"IR"|"IQ"|"IE"|"IM"|"IL"|"IT"|"CI"|"JM"|"JP"|"JE"|"JO"|"KZ"|"KE"|"KI"|"KW"|"KG"|"LA"|"LV"|"LB"|"LS"|"LR"|"LY"|"LI"|"LT"|"LU"|"MO"|"MK"|"MG"|"MW"|"MY"|"MV"|"ML"|"MT"|"MH"|"MR"|"MU"|"YT"|"MX"|"FM"|"MD"|"MC"|"MN"|"ME"|"MS"|"MA"|"MZ"|"MM"|"NA"|"NR"|"NP"|"NL"|"AN"|"NC"|"NZ"|"NI"|"NE"|"NG"|"NU"|"KP"|"MP"|"NO"|"OM"|"PK"|"PW"|"PA"|"PG"|"PY"|"PE"|"PH"|"PN"|"PL"|"PT"|"PR"|"QA"|"CG"|"RE"|"RO"|"RU"|"RW"|"BL"|"SH"|"KN"|"LC"|"MF"|"PM"|"VC"|"WS"|"SM"|"ST"|"SA"|"SN"|"RS"|"SC"|"SL"|"SG"|"SX"|"SK"|"SI"|"SB"|"SO"|"ZA"|"KR"|"ES"|"LK"|"SD"|"SR"|"SJ"|"SZ"|"SE"|"CH"|"SY"|"TW"|"TJ"|"TZ"|"TH"|"TG"|"TK"|"TO"|"TT"|"TN"|"TR"|"TM"|"TC"|"TV"|"VI"|"UG"|"UA"|"AE"|"GB"|"US"|"UY"|"UZ"|"VU"|"VA"|"VE"|"VN"|"WF"|"EH"|"YE"|"ZM"|"ZW"|string;
export type PhoneNumberCountryCodes = PhoneNumberCountryCode[];
export type PhoneNumberId = string;
export interface PhoneNumberSummary {
/**
* The identifier of the phone number.
*/
Id?: PhoneNumberId;
/**
* The Amazon Resource Name (ARN) of the phone number.
*/
Arn?: ARN;
/**
* The phone number.
*/
PhoneNumber?: PhoneNumber;
/**
* The type of phone number.
*/
PhoneNumberType?: PhoneNumberType;
/**
* The ISO country code.
*/
PhoneNumberCountryCode?: PhoneNumberCountryCode;
}
export type PhoneNumberSummaryList = PhoneNumberSummary[];
export type PhoneNumberType = "TOLL_FREE"|"DID"|string;
export type PhoneNumberTypes = PhoneNumberType[];
export type PhoneType = "SOFT_PHONE"|"DESK_PHONE"|string;
export type Priority = number;
export type PromptId = string;
export type PromptName = string;
export interface PromptSummary {
/**
* The identifier of the prompt.
*/
Id?: PromptId;
/**
* The Amazon Resource Name (ARN) of the prompt.
*/
Arn?: ARN;
/**
* The name of the prompt.
*/
Name?: PromptName;
}
export type PromptSummaryList = PromptSummary[];
export type QueueId = string;
export type QueueName = string;
export interface QueueReference {
/**
* The identifier of the queue.
*/
Id?: QueueId;
/**
* The Amazon Resource Name (ARN) of the queue.
*/
Arn?: ARN;
}
export interface QueueSummary {
/**
* The identifier of the queue.
*/
Id?: QueueId;
/**
* The Amazon Resource Name (ARN) of the queue.
*/
Arn?: ARN;
/**
* The name of the queue.
*/
Name?: QueueName;
/**
* The type of queue.
*/
QueueType?: QueueType;
}
export type QueueSummaryList = QueueSummary[];
export type QueueType = "STANDARD"|"AGENT"|string;
export type QueueTypes = QueueType[];
export type Queues = QueueId[];
export interface ResumeContactRecordingRequest {
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
/**
* The identifier of the contact.
*/
ContactId: ContactId;
/**
* The identifier of the contact. This is the identifier of the contact associated with the first interaction with the contact center.
*/
InitialContactId: ContactId;
}
export interface ResumeContactRecordingResponse {
}
export interface RoutingProfile {
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId?: InstanceId;
/**
* The name of the routing profile.
*/
Name?: RoutingProfileName;
/**
* The Amazon Resource Name (ARN) of the routing profile.
*/
RoutingProfileArn?: ARN;
/**
* The identifier of the routing profile.
*/
RoutingProfileId?: RoutingProfileId;
/**
* The description of the routing profile.
*/
Description?: RoutingProfileDescription;
/**
* The channels agents can handle in the Contact Control Panel (CCP) for this routing profile.
*/
MediaConcurrencies?: MediaConcurrencies;
/**
* The identifier of the default outbound queue for this routing profile.
*/
DefaultOutboundQueueId?: QueueId;
/**
* One or more tags.
*/
Tags?: TagMap;
}
export type RoutingProfileDescription = string;
export type RoutingProfileId = string;
export type RoutingProfileName = string;
export interface RoutingProfileQueueConfig {
/**
* Contains information about a queue resource.
*/
QueueReference: RoutingProfileQueueReference;
/**
* The order in which contacts are to be handled for the queue. For more information, see Queues: priority and delay.
*/
Priority: Priority;
/**
* 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 in the Amazon Connect Administrator Guide.
*/
Delay: Delay;
}
export type RoutingProfileQueueConfigList = RoutingProfileQueueConfig[];
export interface RoutingProfileQueueConfigSummary {
/**
* The identifier of the queue.
*/
QueueId: QueueId;
/**
* The Amazon Resource Name (ARN) of the queue.
*/
QueueArn: ARN;
/**
* The name of the queue.
*/
QueueName: QueueName;
/**
* The order in which contacts are to be handled for the queue. For more information, see Queues: priority and delay.
*/
Priority: Priority;
/**
* 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 in the Amazon Connect Administrator Guide.
*/
Delay: Delay;
/**
* The channels this queue supports.
*/
Channel: Channel;
}
export type RoutingProfileQueueConfigSummaryList = RoutingProfileQueueConfigSummary[];
export interface RoutingProfileQueueReference {
/**
* The identifier of the queue.
*/
QueueId: QueueId;
/**
* The channels agents can handle in the Contact Control Panel (CCP) for this routing profile.
*/
Channel: Channel;
}
export type RoutingProfileQueueReferenceList = RoutingProfileQueueReference[];
export interface RoutingProfileSummary {
/**
* The identifier of the routing profile.
*/
Id?: RoutingProfileId;
/**
* The Amazon Resource Name (ARN) of the routing profile.
*/
Arn?: ARN;
/**
* The name of the routing profile.
*/
Name?: RoutingProfileName;
}
export type RoutingProfileSummaryList = RoutingProfileSummary[];
export type SecurityProfileId = string;
export type SecurityProfileIds = SecurityProfileId[];
export type SecurityProfileName = string;
export interface SecurityProfileSummary {
/**
* The identifier of the security profile.
*/
Id?: SecurityProfileId;
/**
* The Amazon Resource Name (ARN) of the security profile.
*/
Arn?: ARN;
/**
* The name of the security profile.
*/
Name?: SecurityProfileName;
}
export type SecurityProfileSummaryList = SecurityProfileSummary[];
export type SecurityToken = string;
export interface StartChatContactRequest {
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
/**
* The identifier of the contact flow for initiating the chat. To see the ContactFlowId in the Amazon Connect console user interface, on the navigation menu go to Routing, Contact Flows. Choose the contact flow. On the contact flow page, under the name of the contact flow, choose Show additional flow information. The ContactFlowId is the last part of the ARN, shown here in bold: arn:aws:connect:us-west-2:xxxxxxxxxxxx:instance/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/contact-flow/846ec553-a005-41c0-8341-xxxxxxxxxxxx
*/
ContactFlowId: ContactFlowId;
/**
* A custom key-value pair using an attribute map. The attributes are standard Amazon Connect attributes, and can be accessed in contact flows just like any other contact attributes. There can be up to 32,768 UTF-8 bytes across all key-value pairs per contact. Attribute keys can include only alphanumeric, dash, and underscore characters.
*/
Attributes?: Attributes;
/**
* Information identifying the participant.
*/
ParticipantDetails: ParticipantDetails;
/**
* The initial message to be sent to the newly created chat.
*/
InitialMessage?: ChatMessage;
/**
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
*/
ClientToken?: ClientToken;
}
export interface StartChatContactResponse {
/**
* The identifier of this contact within the Amazon Connect instance.
*/
ContactId?: ContactId;
/**
* The identifier for a chat participant. The participantId for a chat participant is the same throughout the chat lifecycle.
*/
ParticipantId?: ParticipantId;
/**
* The token used by the chat participant to call CreateParticipantConnection. The participant token is valid for the lifetime of a chat participant.
*/
ParticipantToken?: ParticipantToken;
}
export interface StartContactRecordingRequest {
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
/**
* The identifier of the contact.
*/
ContactId: ContactId;
/**
* The identifier of the contact. This is the identifier of the contact associated with the first interaction with the contact center.
*/
InitialContactId: ContactId;
/**
* Who is being recorded.
*/
VoiceRecordingConfiguration: VoiceRecordingConfiguration;
}
export interface StartContactRecordingResponse {
}
export interface StartOutboundVoiceContactRequest {
/**
* The phone number of the customer, in E.164 format.
*/
DestinationPhoneNumber: PhoneNumber;
/**
* The identifier of the contact flow for the outbound call. To see the ContactFlowId in the Amazon Connect console user interface, on the navigation menu go to Routing, Contact Flows. Choose the contact flow. On the contact flow page, under the name of the contact flow, choose Show additional flow information. The ContactFlowId is the last part of the ARN, shown here in bold: arn:aws:connect:us-west-2:xxxxxxxxxxxx:instance/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/contact-flow/846ec553-a005-41c0-8341-xxxxxxxxxxxx
*/
ContactFlowId: ContactFlowId;
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
/**
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. The token is valid for 7 days after creation. If a contact is already started, the contact ID is returned. If the contact is disconnected, a new contact is started.
*/
ClientToken?: ClientToken;
/**
* The phone number associated with the Amazon Connect instance, in E.164 format. If you do not specify a source phone number, you must specify a queue.
*/
SourcePhoneNumber?: PhoneNumber;
/**
* The queue for the call. If you specify a queue, the phone displayed for caller ID is the phone number specified in the queue. If you do not specify a queue, the queue defined in the contact flow is used. If you do not specify a queue, you must specify a source phone number.
*/
QueueId?: QueueId;
/**
* A custom key-value pair using an attribute map. The attributes are standard Amazon Connect attributes, and can be accessed in contact flows just like any other contact attributes. There can be up to 32,768 UTF-8 bytes across all key-value pairs per contact. Attribute keys can include only alphanumeric, dash, and underscore characters.
*/
Attributes?: Attributes;
}
export interface StartOutboundVoiceContactResponse {
/**
* The identifier of this contact within the Amazon Connect instance.
*/
ContactId?: ContactId;
}
export type Statistic = "SUM"|"MAX"|"AVG"|string;
export interface StopContactRecordingRequest {
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
/**
* The identifier of the contact.
*/
ContactId: ContactId;
/**
* The identifier of the contact. This is the identifier of the contact associated with the first interaction with the contact center.
*/
InitialContactId: ContactId;
}
export interface StopContactRecordingResponse {
}
export interface StopContactRequest {
/**
* The ID of the contact.
*/
ContactId: ContactId;
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
}
export interface StopContactResponse {
}
export interface SuspendContactRecordingRequest {
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
/**
* The identifier of the contact.
*/
ContactId: ContactId;
/**
* The identifier of the contact. This is the identifier of the contact associated with the first interaction with the contact center.
*/
InitialContactId: ContactId;
}
export interface SuspendContactRecordingResponse {
}
export type TagKey = string;
export type TagKeyList = TagKey[];
export type TagMap = {[key: string]: TagValue};
export interface TagResourceRequest {
/**
* The Amazon Resource Name (ARN) of the resource.
*/
resourceArn: ARN;
/**
* One or more tags. For example, { "tags": {"key1":"value1", "key2":"value2"} }.
*/
tags: TagMap;
}
export type TagValue = string;
export interface Threshold {
/**
* The type of comparison. Only "less than" (LT) comparisons are supported.
*/
Comparison?: Comparison;
/**
* The threshold value to compare.
*/
ThresholdValue?: ThresholdValue;
}
export type ThresholdValue = number;
export type Unit = "SECONDS"|"COUNT"|"PERCENT"|string;
export interface UntagResourceRequest {
/**
* The Amazon Resource Name (ARN) of the resource.
*/
resourceArn: ARN;
/**
* The tag keys.
*/
tagKeys: TagKeyList;
}
export interface UpdateContactAttributesRequest {
/**
* The identifier of the contact. This is the identifier of the contact associated with the first interaction with the contact center.
*/
InitialContactId: ContactId;
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
/**
* The Amazon Connect attributes. These attributes can be accessed in contact flows just like any other contact attributes. You can have up to 32,768 UTF-8 bytes across all attributes for a contact. Attribute keys can include only alphanumeric, dash, and underscore characters.
*/
Attributes: Attributes;
}
export interface UpdateContactAttributesResponse {
}
export interface UpdateContactFlowContentRequest {
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
/**
* The identifier of the contact flow.
*/
ContactFlowId: ContactFlowId;
/**
* The JSON string that represents contact flow’s content. For an example, see Example contact flow in Amazon Connect Flow language in the Amazon Connect Administrator Guide.
*/
Content: ContactFlowContent;
}
export interface UpdateContactFlowNameRequest {
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
/**
* The identifier of the contact flow.
*/
ContactFlowId: ContactFlowId;
/**
* The name of the contact flow.
*/
Name?: ContactFlowName;
/**
* The description of the contact flow.
*/
Description?: ContactFlowDescription;
}
export interface UpdateRoutingProfileConcurrencyRequest {
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
/**
* The identifier of the routing profile.
*/
RoutingProfileId: RoutingProfileId;
/**
* The channels agents can handle in the Contact Control Panel (CCP).
*/
MediaConcurrencies: MediaConcurrencies;
}
export interface UpdateRoutingProfileDefaultOutboundQueueRequest {
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
/**
* The identifier of the routing profile.
*/
RoutingProfileId: RoutingProfileId;
/**
* The identifier for the default outbound queue.
*/
DefaultOutboundQueueId: QueueId;
}
export interface UpdateRoutingProfileNameRequest {
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
/**
* The identifier of the routing profile.
*/
RoutingProfileId: RoutingProfileId;
/**
* The name of the routing profile. Must not be more than 127 characters.
*/
Name?: RoutingProfileName;
/**
* The description of the routing profile. Must not be more than 250 characters.
*/
Description?: RoutingProfileDescription;
}
export interface UpdateRoutingProfileQueuesRequest {
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
/**
* The identifier of the routing profile.
*/
RoutingProfileId: RoutingProfileId;
/**
* The queues to be updated for this routing profile.
*/
QueueConfigs: RoutingProfileQueueConfigList;
}
export interface UpdateUserHierarchyRequest {
/**
* The identifier of the hierarchy group.
*/
HierarchyGroupId?: HierarchyGroupId;
/**
* The identifier of the user account.
*/
UserId: UserId;
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
}
export interface UpdateUserIdentityInfoRequest {
/**
* The identity information for the user.
*/
IdentityInfo: UserIdentityInfo;
/**
* The identifier of the user account.
*/
UserId: UserId;
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
}
export interface UpdateUserPhoneConfigRequest {
/**
* Information about phone configuration settings for the user.
*/
PhoneConfig: UserPhoneConfig;
/**
* The identifier of the user account.
*/
UserId: UserId;
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
}
export interface UpdateUserRoutingProfileRequest {
/**
* The identifier of the routing profile for the user.
*/
RoutingProfileId: RoutingProfileId;
/**
* The identifier of the user account.
*/
UserId: UserId;
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
}
export interface UpdateUserSecurityProfilesRequest {
/**
* The identifiers of the security profiles for the user.
*/
SecurityProfileIds: SecurityProfileIds;
/**
* The identifier of the user account.
*/
UserId: UserId;
/**
* The identifier of the Amazon Connect instance.
*/
InstanceId: InstanceId;
}
export interface User {
/**
* The identifier of the user account.
*/
Id?: UserId;
/**
* The Amazon Resource Name (ARN) of the user account.
*/
Arn?: ARN;
/**
* The user name assigned to the user account.
*/
Username?: AgentUsername;
/**
* Information about the user identity.
*/
IdentityInfo?: UserIdentityInfo;
/**
* Information about the phone configuration for the user.
*/
PhoneConfig?: UserPhoneConfig;
/**
* The identifier of the user account in the directory used for identity management.
*/
DirectoryUserId?: DirectoryUserId;
/**
* The identifiers of the security profiles for the user.
*/
SecurityProfileIds?: SecurityProfileIds;
/**
* The identifier of the routing profile for the user.
*/
RoutingProfileId?: RoutingProfileId;
/**
* The identifier of the hierarchy group for the user.
*/
HierarchyGroupId?: HierarchyGroupId;
/**
* The tags.
*/
Tags?: TagMap;
}
export type UserId = string;
export interface UserIdentityInfo {
/**
* The first name. This is required if you are using Amazon Connect or SAML for identity management.
*/
FirstName?: AgentFirstName;
/**
* The last name. This is required if you are using Amazon Connect or SAML for identity management.
*/
LastName?: AgentLastName;
/**
* The email address. If you are using SAML for identity management and include this parameter, an error is returned.
*/
Email?: Email;
}
export interface UserPhoneConfig {
/**
* The phone type.
*/
PhoneType: PhoneType;
/**
* The Auto accept setting.
*/
AutoAccept?: AutoAccept;
/**
* The After Call Work (ACW) timeout setting, in seconds.
*/
AfterContactWorkTimeLimit?: AfterContactWorkTimeLimit;
/**
* The phone number for the user's desk phone.
*/
DeskPhoneNumber?: PhoneNumber;
}
export interface UserSummary {
/**
* The identifier of the user account.
*/
Id?: UserId;
/**
* The Amazon Resource Name (ARN) of the user account.
*/
Arn?: ARN;
/**
* The Amazon Connect user name of the user account.
*/
Username?: AgentUsername;
}
export type UserSummaryList = UserSummary[];
export type Value = number;
export interface VoiceRecordingConfiguration {
/**
* Identifies which track is being recorded.
*/
VoiceRecordingTrack?: VoiceRecordingTrack;
}
export type VoiceRecordingTrack = "FROM_AGENT"|"TO_AGENT"|"ALL"|string;
export type timestamp = Date;
/**
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
*/
export type apiVersion = "2017-08-08"|"latest"|string;
export interface ClientApiVersions {
/**
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
*/
apiVersion?: apiVersion;
}
export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
/**
* Contains interfaces for use with the Connect client.
*/
export import Types = Connect;
}
export = Connect;