@aws-sdk/client-connect 3.301.0 → 3.303.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -15,13 +15,18 @@ export declare class AccessDeniedException extends __BaseException {
15
15
  }
16
16
  /**
17
17
  * @public
18
+ * @enum
18
19
  */
19
- export declare enum ActionType {
20
- ASSIGN_CONTACT_CATEGORY = "ASSIGN_CONTACT_CATEGORY",
21
- CREATE_TASK = "CREATE_TASK",
22
- GENERATE_EVENTBRIDGE_EVENT = "GENERATE_EVENTBRIDGE_EVENT",
23
- SEND_NOTIFICATION = "SEND_NOTIFICATION"
24
- }
20
+ export declare const ActionType: {
21
+ readonly ASSIGN_CONTACT_CATEGORY: "ASSIGN_CONTACT_CATEGORY";
22
+ readonly CREATE_TASK: "CREATE_TASK";
23
+ readonly GENERATE_EVENTBRIDGE_EVENT: "GENERATE_EVENTBRIDGE_EVENT";
24
+ readonly SEND_NOTIFICATION: "SEND_NOTIFICATION";
25
+ };
26
+ /**
27
+ * @public
28
+ */
29
+ export type ActionType = (typeof ActionType)[keyof typeof ActionType];
25
30
  /**
26
31
  * @public
27
32
  * <p>Information about an action.</p>
@@ -34,39 +39,54 @@ export interface ActionSummary {
34
39
  }
35
40
  /**
36
41
  * @public
42
+ * @enum
37
43
  */
38
- export declare enum ContactState {
39
- CONNECTED = "CONNECTED",
40
- CONNECTED_ONHOLD = "CONNECTED_ONHOLD",
41
- CONNECTING = "CONNECTING",
42
- ENDED = "ENDED",
43
- ERROR = "ERROR",
44
- INCOMING = "INCOMING",
45
- MISSED = "MISSED",
46
- PENDING = "PENDING",
47
- REJECTED = "REJECTED"
48
- }
44
+ export declare const ContactState: {
45
+ readonly CONNECTED: "CONNECTED";
46
+ readonly CONNECTED_ONHOLD: "CONNECTED_ONHOLD";
47
+ readonly CONNECTING: "CONNECTING";
48
+ readonly ENDED: "ENDED";
49
+ readonly ERROR: "ERROR";
50
+ readonly INCOMING: "INCOMING";
51
+ readonly MISSED: "MISSED";
52
+ readonly PENDING: "PENDING";
53
+ readonly REJECTED: "REJECTED";
54
+ };
49
55
  /**
50
56
  * @public
51
57
  */
52
- export declare enum Channel {
53
- CHAT = "CHAT",
54
- TASK = "TASK",
55
- VOICE = "VOICE"
56
- }
58
+ export type ContactState = (typeof ContactState)[keyof typeof ContactState];
57
59
  /**
58
60
  * @public
61
+ * @enum
59
62
  */
60
- export declare enum ContactInitiationMethod {
61
- API = "API",
62
- CALLBACK = "CALLBACK",
63
- DISCONNECT = "DISCONNECT",
64
- INBOUND = "INBOUND",
65
- MONITOR = "MONITOR",
66
- OUTBOUND = "OUTBOUND",
67
- QUEUE_TRANSFER = "QUEUE_TRANSFER",
68
- TRANSFER = "TRANSFER"
69
- }
63
+ export declare const Channel: {
64
+ readonly CHAT: "CHAT";
65
+ readonly TASK: "TASK";
66
+ readonly VOICE: "VOICE";
67
+ };
68
+ /**
69
+ * @public
70
+ */
71
+ export type Channel = (typeof Channel)[keyof typeof Channel];
72
+ /**
73
+ * @public
74
+ * @enum
75
+ */
76
+ export declare const ContactInitiationMethod: {
77
+ readonly API: "API";
78
+ readonly CALLBACK: "CALLBACK";
79
+ readonly DISCONNECT: "DISCONNECT";
80
+ readonly INBOUND: "INBOUND";
81
+ readonly MONITOR: "MONITOR";
82
+ readonly OUTBOUND: "OUTBOUND";
83
+ readonly QUEUE_TRANSFER: "QUEUE_TRANSFER";
84
+ readonly TRANSFER: "TRANSFER";
85
+ };
86
+ /**
87
+ * @public
88
+ */
89
+ export type ContactInitiationMethod = (typeof ContactInitiationMethod)[keyof typeof ContactInitiationMethod];
70
90
  /**
71
91
  * @public
72
92
  * <p>Contains information about a queue resource for which metrics are returned.</p>
@@ -132,19 +152,29 @@ export interface AgentInfo {
132
152
  }
133
153
  /**
134
154
  * @public
155
+ * @enum
135
156
  */
136
- export declare enum AgentStatusState {
137
- DISABLED = "DISABLED",
138
- ENABLED = "ENABLED"
139
- }
157
+ export declare const AgentStatusState: {
158
+ readonly DISABLED: "DISABLED";
159
+ readonly ENABLED: "ENABLED";
160
+ };
140
161
  /**
141
162
  * @public
142
163
  */
143
- export declare enum AgentStatusType {
144
- CUSTOM = "CUSTOM",
145
- OFFLINE = "OFFLINE",
146
- ROUTABLE = "ROUTABLE"
147
- }
164
+ export type AgentStatusState = (typeof AgentStatusState)[keyof typeof AgentStatusState];
165
+ /**
166
+ * @public
167
+ * @enum
168
+ */
169
+ export declare const AgentStatusType: {
170
+ readonly CUSTOM: "CUSTOM";
171
+ readonly OFFLINE: "OFFLINE";
172
+ readonly ROUTABLE: "ROUTABLE";
173
+ };
174
+ /**
175
+ * @public
176
+ */
177
+ export type AgentStatusType = (typeof AgentStatusType)[keyof typeof AgentStatusType];
148
178
  /**
149
179
  * @public
150
180
  * <p>Contains information about an agent status.</p>
@@ -225,11 +255,16 @@ export interface AgentStatusSummary {
225
255
  }
226
256
  /**
227
257
  * @public
258
+ * @enum
228
259
  */
229
- export declare enum MonitorCapability {
230
- BARGE = "BARGE",
231
- SILENT_MONITOR = "SILENT_MONITOR"
232
- }
260
+ export declare const MonitorCapability: {
261
+ readonly BARGE: "BARGE";
262
+ readonly SILENT_MONITOR: "SILENT_MONITOR";
263
+ };
264
+ /**
265
+ * @public
266
+ */
267
+ export type MonitorCapability = (typeof MonitorCapability)[keyof typeof MonitorCapability];
233
268
  /**
234
269
  * @public
235
270
  */
@@ -405,32 +440,37 @@ export declare class LimitExceededException extends __BaseException {
405
440
  }
406
441
  /**
407
442
  * @public
443
+ * @enum
408
444
  */
409
- export declare enum VocabularyLanguageCode {
410
- AR_AE = "ar-AE",
411
- DE_CH = "de-CH",
412
- DE_DE = "de-DE",
413
- EN_AB = "en-AB",
414
- EN_AU = "en-AU",
415
- EN_GB = "en-GB",
416
- EN_IE = "en-IE",
417
- EN_IN = "en-IN",
418
- EN_NZ = "en-NZ",
419
- EN_US = "en-US",
420
- EN_WL = "en-WL",
421
- EN_ZA = "en-ZA",
422
- ES_ES = "es-ES",
423
- ES_US = "es-US",
424
- FR_CA = "fr-CA",
425
- FR_FR = "fr-FR",
426
- HI_IN = "hi-IN",
427
- IT_IT = "it-IT",
428
- JA_JP = "ja-JP",
429
- KO_KR = "ko-KR",
430
- PT_BR = "pt-BR",
431
- PT_PT = "pt-PT",
432
- ZH_CN = "zh-CN"
433
- }
445
+ export declare const VocabularyLanguageCode: {
446
+ readonly AR_AE: "ar-AE";
447
+ readonly DE_CH: "de-CH";
448
+ readonly DE_DE: "de-DE";
449
+ readonly EN_AB: "en-AB";
450
+ readonly EN_AU: "en-AU";
451
+ readonly EN_GB: "en-GB";
452
+ readonly EN_IE: "en-IE";
453
+ readonly EN_IN: "en-IN";
454
+ readonly EN_NZ: "en-NZ";
455
+ readonly EN_US: "en-US";
456
+ readonly EN_WL: "en-WL";
457
+ readonly EN_ZA: "en-ZA";
458
+ readonly ES_ES: "es-ES";
459
+ readonly ES_US: "es-US";
460
+ readonly FR_CA: "fr-CA";
461
+ readonly FR_FR: "fr-FR";
462
+ readonly HI_IN: "hi-IN";
463
+ readonly IT_IT: "it-IT";
464
+ readonly JA_JP: "ja-JP";
465
+ readonly KO_KR: "ko-KR";
466
+ readonly PT_BR: "pt-BR";
467
+ readonly PT_PT: "pt-PT";
468
+ readonly ZH_CN: "zh-CN";
469
+ };
470
+ /**
471
+ * @public
472
+ */
473
+ export type VocabularyLanguageCode = (typeof VocabularyLanguageCode)[keyof typeof VocabularyLanguageCode];
434
474
  /**
435
475
  * @public
436
476
  */
@@ -457,18 +497,23 @@ export interface AssociateDefaultVocabularyResponse {
457
497
  }
458
498
  /**
459
499
  * @public
500
+ * @enum
460
501
  */
461
- export declare enum InstanceStorageResourceType {
462
- AGENT_EVENTS = "AGENT_EVENTS",
463
- ATTACHMENTS = "ATTACHMENTS",
464
- CALL_RECORDINGS = "CALL_RECORDINGS",
465
- CHAT_TRANSCRIPTS = "CHAT_TRANSCRIPTS",
466
- CONTACT_EVALUATIONS = "CONTACT_EVALUATIONS",
467
- CONTACT_TRACE_RECORDS = "CONTACT_TRACE_RECORDS",
468
- MEDIA_STREAMS = "MEDIA_STREAMS",
469
- REAL_TIME_CONTACT_ANALYSIS_SEGMENTS = "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS",
470
- SCHEDULED_REPORTS = "SCHEDULED_REPORTS"
471
- }
502
+ export declare const InstanceStorageResourceType: {
503
+ readonly AGENT_EVENTS: "AGENT_EVENTS";
504
+ readonly ATTACHMENTS: "ATTACHMENTS";
505
+ readonly CALL_RECORDINGS: "CALL_RECORDINGS";
506
+ readonly CHAT_TRANSCRIPTS: "CHAT_TRANSCRIPTS";
507
+ readonly CONTACT_EVALUATIONS: "CONTACT_EVALUATIONS";
508
+ readonly CONTACT_TRACE_RECORDS: "CONTACT_TRACE_RECORDS";
509
+ readonly MEDIA_STREAMS: "MEDIA_STREAMS";
510
+ readonly REAL_TIME_CONTACT_ANALYSIS_SEGMENTS: "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS";
511
+ readonly SCHEDULED_REPORTS: "SCHEDULED_REPORTS";
512
+ };
513
+ /**
514
+ * @public
515
+ */
516
+ export type InstanceStorageResourceType = (typeof InstanceStorageResourceType)[keyof typeof InstanceStorageResourceType];
472
517
  /**
473
518
  * @public
474
519
  * <p>Configuration information of a Kinesis Data Firehose delivery stream.</p>
@@ -491,10 +536,15 @@ export interface KinesisStreamConfig {
491
536
  }
492
537
  /**
493
538
  * @public
539
+ * @enum
494
540
  */
495
- export declare enum EncryptionType {
496
- KMS = "KMS"
497
- }
541
+ export declare const EncryptionType: {
542
+ readonly KMS: "KMS";
543
+ };
544
+ /**
545
+ * @public
546
+ */
547
+ export type EncryptionType = (typeof EncryptionType)[keyof typeof EncryptionType];
498
548
  /**
499
549
  * @public
500
550
  * <p>The encryption configuration.</p>
@@ -556,13 +606,18 @@ export interface S3Config {
556
606
  }
557
607
  /**
558
608
  * @public
609
+ * @enum
559
610
  */
560
- export declare enum StorageType {
561
- KINESIS_FIREHOSE = "KINESIS_FIREHOSE",
562
- KINESIS_STREAM = "KINESIS_STREAM",
563
- KINESIS_VIDEO_STREAM = "KINESIS_VIDEO_STREAM",
564
- S3 = "S3"
565
- }
611
+ export declare const StorageType: {
612
+ readonly KINESIS_FIREHOSE: "KINESIS_FIREHOSE";
613
+ readonly KINESIS_STREAM: "KINESIS_STREAM";
614
+ readonly KINESIS_VIDEO_STREAM: "KINESIS_VIDEO_STREAM";
615
+ readonly S3: "S3";
616
+ };
617
+ /**
618
+ * @public
619
+ */
620
+ export type StorageType = (typeof StorageType)[keyof typeof StorageType];
566
621
  /**
567
622
  * @public
568
623
  * <p>The storage configuration for the instance.</p>
@@ -872,18 +927,23 @@ export declare class DuplicateResourceException extends __BaseException {
872
927
  }
873
928
  /**
874
929
  * @public
930
+ * @enum
875
931
  */
876
- export declare enum ContactFlowType {
877
- AGENT_HOLD = "AGENT_HOLD",
878
- AGENT_TRANSFER = "AGENT_TRANSFER",
879
- AGENT_WHISPER = "AGENT_WHISPER",
880
- CONTACT_FLOW = "CONTACT_FLOW",
881
- CUSTOMER_HOLD = "CUSTOMER_HOLD",
882
- CUSTOMER_QUEUE = "CUSTOMER_QUEUE",
883
- CUSTOMER_WHISPER = "CUSTOMER_WHISPER",
884
- OUTBOUND_WHISPER = "OUTBOUND_WHISPER",
885
- QUEUE_TRANSFER = "QUEUE_TRANSFER"
886
- }
932
+ export declare const ContactFlowType: {
933
+ readonly AGENT_HOLD: "AGENT_HOLD";
934
+ readonly AGENT_TRANSFER: "AGENT_TRANSFER";
935
+ readonly AGENT_WHISPER: "AGENT_WHISPER";
936
+ readonly CONTACT_FLOW: "CONTACT_FLOW";
937
+ readonly CUSTOMER_HOLD: "CUSTOMER_HOLD";
938
+ readonly CUSTOMER_QUEUE: "CUSTOMER_QUEUE";
939
+ readonly CUSTOMER_WHISPER: "CUSTOMER_WHISPER";
940
+ readonly OUTBOUND_WHISPER: "OUTBOUND_WHISPER";
941
+ readonly QUEUE_TRANSFER: "QUEUE_TRANSFER";
942
+ };
943
+ /**
944
+ * @public
945
+ */
946
+ export type ContactFlowType = (typeof ContactFlowType)[keyof typeof ContactFlowType];
887
947
  /**
888
948
  * @public
889
949
  */
@@ -1013,16 +1073,21 @@ export declare class InvalidContactFlowModuleException extends __BaseException {
1013
1073
  }
1014
1074
  /**
1015
1075
  * @public
1076
+ * @enum
1016
1077
  */
1017
- export declare enum HoursOfOperationDays {
1018
- FRIDAY = "FRIDAY",
1019
- MONDAY = "MONDAY",
1020
- SATURDAY = "SATURDAY",
1021
- SUNDAY = "SUNDAY",
1022
- THURSDAY = "THURSDAY",
1023
- TUESDAY = "TUESDAY",
1024
- WEDNESDAY = "WEDNESDAY"
1025
- }
1078
+ export declare const HoursOfOperationDays: {
1079
+ readonly FRIDAY: "FRIDAY";
1080
+ readonly MONDAY: "MONDAY";
1081
+ readonly SATURDAY: "SATURDAY";
1082
+ readonly SUNDAY: "SUNDAY";
1083
+ readonly THURSDAY: "THURSDAY";
1084
+ readonly TUESDAY: "TUESDAY";
1085
+ readonly WEDNESDAY: "WEDNESDAY";
1086
+ };
1087
+ /**
1088
+ * @public
1089
+ */
1090
+ export type HoursOfOperationDays = (typeof HoursOfOperationDays)[keyof typeof HoursOfOperationDays];
1026
1091
  /**
1027
1092
  * @public
1028
1093
  * <p>The start time or end time for an hours of operation.</p>
@@ -1099,12 +1164,17 @@ export interface CreateHoursOfOperationResponse {
1099
1164
  }
1100
1165
  /**
1101
1166
  * @public
1167
+ * @enum
1102
1168
  */
1103
- export declare enum DirectoryType {
1104
- CONNECT_MANAGED = "CONNECT_MANAGED",
1105
- EXISTING_DIRECTORY = "EXISTING_DIRECTORY",
1106
- SAML = "SAML"
1107
- }
1169
+ export declare const DirectoryType: {
1170
+ readonly CONNECT_MANAGED: "CONNECT_MANAGED";
1171
+ readonly EXISTING_DIRECTORY: "EXISTING_DIRECTORY";
1172
+ readonly SAML: "SAML";
1173
+ };
1174
+ /**
1175
+ * @public
1176
+ */
1177
+ export type DirectoryType = (typeof DirectoryType)[keyof typeof DirectoryType];
1108
1178
  /**
1109
1179
  * @public
1110
1180
  */
@@ -1149,22 +1219,32 @@ export interface CreateInstanceResponse {
1149
1219
  }
1150
1220
  /**
1151
1221
  * @public
1222
+ * @enum
1152
1223
  */
1153
- export declare enum IntegrationType {
1154
- CASES_DOMAIN = "CASES_DOMAIN",
1155
- EVENT = "EVENT",
1156
- PINPOINT_APP = "PINPOINT_APP",
1157
- VOICE_ID = "VOICE_ID",
1158
- WISDOM_ASSISTANT = "WISDOM_ASSISTANT",
1159
- WISDOM_KNOWLEDGE_BASE = "WISDOM_KNOWLEDGE_BASE"
1160
- }
1224
+ export declare const IntegrationType: {
1225
+ readonly CASES_DOMAIN: "CASES_DOMAIN";
1226
+ readonly EVENT: "EVENT";
1227
+ readonly PINPOINT_APP: "PINPOINT_APP";
1228
+ readonly VOICE_ID: "VOICE_ID";
1229
+ readonly WISDOM_ASSISTANT: "WISDOM_ASSISTANT";
1230
+ readonly WISDOM_KNOWLEDGE_BASE: "WISDOM_KNOWLEDGE_BASE";
1231
+ };
1161
1232
  /**
1162
1233
  * @public
1163
1234
  */
1164
- export declare enum SourceType {
1165
- SALESFORCE = "SALESFORCE",
1166
- ZENDESK = "ZENDESK"
1167
- }
1235
+ export type IntegrationType = (typeof IntegrationType)[keyof typeof IntegrationType];
1236
+ /**
1237
+ * @public
1238
+ * @enum
1239
+ */
1240
+ export declare const SourceType: {
1241
+ readonly SALESFORCE: "SALESFORCE";
1242
+ readonly ZENDESK: "ZENDESK";
1243
+ };
1244
+ /**
1245
+ * @public
1246
+ */
1247
+ export type SourceType = (typeof SourceType)[keyof typeof SourceType];
1168
1248
  /**
1169
1249
  * @public
1170
1250
  */
@@ -1310,12 +1390,17 @@ export interface QueueQuickConnectConfig {
1310
1390
  }
1311
1391
  /**
1312
1392
  * @public
1393
+ * @enum
1313
1394
  */
1314
- export declare enum QuickConnectType {
1315
- PHONE_NUMBER = "PHONE_NUMBER",
1316
- QUEUE = "QUEUE",
1317
- USER = "USER"
1318
- }
1395
+ export declare const QuickConnectType: {
1396
+ readonly PHONE_NUMBER: "PHONE_NUMBER";
1397
+ readonly QUEUE: "QUEUE";
1398
+ readonly USER: "USER";
1399
+ };
1400
+ /**
1401
+ * @public
1402
+ */
1403
+ export type QuickConnectType = (typeof QuickConnectType)[keyof typeof QuickConnectType];
1319
1404
  /**
1320
1405
  * @public
1321
1406
  * <p>Contains information about the quick connect configuration settings for a user. The contact
@@ -1485,16 +1570,26 @@ export interface EventBridgeActionDefinition {
1485
1570
  }
1486
1571
  /**
1487
1572
  * @public
1573
+ * @enum
1488
1574
  */
1489
- export declare enum NotificationContentType {
1490
- PLAIN_TEXT = "PLAIN_TEXT"
1491
- }
1575
+ export declare const NotificationContentType: {
1576
+ readonly PLAIN_TEXT: "PLAIN_TEXT";
1577
+ };
1492
1578
  /**
1493
1579
  * @public
1494
1580
  */
1495
- export declare enum NotificationDeliveryType {
1496
- EMAIL = "EMAIL"
1497
- }
1581
+ export type NotificationContentType = (typeof NotificationContentType)[keyof typeof NotificationContentType];
1582
+ /**
1583
+ * @public
1584
+ * @enum
1585
+ */
1586
+ export declare const NotificationDeliveryType: {
1587
+ readonly EMAIL: "EMAIL";
1588
+ };
1589
+ /**
1590
+ * @public
1591
+ */
1592
+ export type NotificationDeliveryType = (typeof NotificationDeliveryType)[keyof typeof NotificationDeliveryType];
1498
1593
  /**
1499
1594
  * @public
1500
1595
  * <p>The type of notification recipient.</p>
@@ -1542,15 +1637,20 @@ export interface SendNotificationActionDefinition {
1542
1637
  }
1543
1638
  /**
1544
1639
  * @public
1640
+ * @enum
1545
1641
  */
1546
- export declare enum ReferenceType {
1547
- ATTACHMENT = "ATTACHMENT",
1548
- DATE = "DATE",
1549
- EMAIL = "EMAIL",
1550
- NUMBER = "NUMBER",
1551
- STRING = "STRING",
1552
- URL = "URL"
1553
- }
1642
+ export declare const ReferenceType: {
1643
+ readonly ATTACHMENT: "ATTACHMENT";
1644
+ readonly DATE: "DATE";
1645
+ readonly EMAIL: "EMAIL";
1646
+ readonly NUMBER: "NUMBER";
1647
+ readonly STRING: "STRING";
1648
+ readonly URL: "URL";
1649
+ };
1650
+ /**
1651
+ * @public
1652
+ */
1653
+ export type ReferenceType = (typeof ReferenceType)[keyof typeof ReferenceType];
1554
1654
  /**
1555
1655
  * @public
1556
1656
  * <p>Well-formed data on a contact, used by agents to complete a contact request. You can have up
@@ -1626,22 +1726,32 @@ export interface RuleAction {
1626
1726
  }
1627
1727
  /**
1628
1728
  * @public
1729
+ * @enum
1629
1730
  */
1630
- export declare enum RulePublishStatus {
1631
- DRAFT = "DRAFT",
1632
- PUBLISHED = "PUBLISHED"
1633
- }
1731
+ export declare const RulePublishStatus: {
1732
+ readonly DRAFT: "DRAFT";
1733
+ readonly PUBLISHED: "PUBLISHED";
1734
+ };
1634
1735
  /**
1635
1736
  * @public
1636
1737
  */
1637
- export declare enum EventSourceName {
1638
- OnPostCallAnalysisAvailable = "OnPostCallAnalysisAvailable",
1639
- OnPostChatAnalysisAvailable = "OnPostChatAnalysisAvailable",
1640
- OnRealTimeCallAnalysisAvailable = "OnRealTimeCallAnalysisAvailable",
1641
- OnSalesforceCaseCreate = "OnSalesforceCaseCreate",
1642
- OnZendeskTicketCreate = "OnZendeskTicketCreate",
1643
- OnZendeskTicketStatusUpdate = "OnZendeskTicketStatusUpdate"
1644
- }
1738
+ export type RulePublishStatus = (typeof RulePublishStatus)[keyof typeof RulePublishStatus];
1739
+ /**
1740
+ * @public
1741
+ * @enum
1742
+ */
1743
+ export declare const EventSourceName: {
1744
+ readonly OnPostCallAnalysisAvailable: "OnPostCallAnalysisAvailable";
1745
+ readonly OnPostChatAnalysisAvailable: "OnPostChatAnalysisAvailable";
1746
+ readonly OnRealTimeCallAnalysisAvailable: "OnRealTimeCallAnalysisAvailable";
1747
+ readonly OnSalesforceCaseCreate: "OnSalesforceCaseCreate";
1748
+ readonly OnZendeskTicketCreate: "OnZendeskTicketCreate";
1749
+ readonly OnZendeskTicketStatusUpdate: "OnZendeskTicketStatusUpdate";
1750
+ };
1751
+ /**
1752
+ * @public
1753
+ */
1754
+ export type EventSourceName = (typeof EventSourceName)[keyof typeof EventSourceName];
1645
1755
  /**
1646
1756
  * @public
1647
1757
  * <p>The name of the event source. This field is required if <code>TriggerEventSource</code> is one of the
@@ -1841,21 +1951,26 @@ export interface TaskTemplateDefaults {
1841
1951
  }
1842
1952
  /**
1843
1953
  * @public
1954
+ * @enum
1844
1955
  */
1845
- export declare enum TaskTemplateFieldType {
1846
- BOOLEAN = "BOOLEAN",
1847
- DATE_TIME = "DATE_TIME",
1848
- DESCRIPTION = "DESCRIPTION",
1849
- EMAIL = "EMAIL",
1850
- NAME = "NAME",
1851
- NUMBER = "NUMBER",
1852
- QUICK_CONNECT = "QUICK_CONNECT",
1853
- SCHEDULED_TIME = "SCHEDULED_TIME",
1854
- SINGLE_SELECT = "SINGLE_SELECT",
1855
- TEXT = "TEXT",
1856
- TEXT_AREA = "TEXT_AREA",
1857
- URL = "URL"
1858
- }
1956
+ export declare const TaskTemplateFieldType: {
1957
+ readonly BOOLEAN: "BOOLEAN";
1958
+ readonly DATE_TIME: "DATE_TIME";
1959
+ readonly DESCRIPTION: "DESCRIPTION";
1960
+ readonly EMAIL: "EMAIL";
1961
+ readonly NAME: "NAME";
1962
+ readonly NUMBER: "NUMBER";
1963
+ readonly QUICK_CONNECT: "QUICK_CONNECT";
1964
+ readonly SCHEDULED_TIME: "SCHEDULED_TIME";
1965
+ readonly SINGLE_SELECT: "SINGLE_SELECT";
1966
+ readonly TEXT: "TEXT";
1967
+ readonly TEXT_AREA: "TEXT_AREA";
1968
+ readonly URL: "URL";
1969
+ };
1970
+ /**
1971
+ * @public
1972
+ */
1973
+ export type TaskTemplateFieldType = (typeof TaskTemplateFieldType)[keyof typeof TaskTemplateFieldType];
1859
1974
  /**
1860
1975
  * @public
1861
1976
  * <p>Describes a single task template field.</p>
@@ -1880,11 +1995,16 @@ export interface TaskTemplateField {
1880
1995
  }
1881
1996
  /**
1882
1997
  * @public
1998
+ * @enum
1883
1999
  */
1884
- export declare enum TaskTemplateStatus {
1885
- ACTIVE = "ACTIVE",
1886
- INACTIVE = "INACTIVE"
1887
- }
2000
+ export declare const TaskTemplateStatus: {
2001
+ readonly ACTIVE: "ACTIVE";
2002
+ readonly INACTIVE: "INACTIVE";
2003
+ };
2004
+ /**
2005
+ * @public
2006
+ */
2007
+ export type TaskTemplateStatus = (typeof TaskTemplateStatus)[keyof typeof TaskTemplateStatus];
1888
2008
  /**
1889
2009
  * @public
1890
2010
  */
@@ -1946,15 +2066,20 @@ export interface CreateTaskTemplateResponse {
1946
2066
  }
1947
2067
  /**
1948
2068
  * @public
2069
+ * @enum
1949
2070
  */
1950
- export declare enum PropertyValidationExceptionReason {
1951
- INVALID_FORMAT = "INVALID_FORMAT",
1952
- NOT_SUPPORTED = "NOT_SUPPORTED",
1953
- REFERENCED_RESOURCE_NOT_FOUND = "REFERENCED_RESOURCE_NOT_FOUND",
1954
- REQUIRED_PROPERTY_MISSING = "REQUIRED_PROPERTY_MISSING",
1955
- RESOURCE_NAME_ALREADY_EXISTS = "RESOURCE_NAME_ALREADY_EXISTS",
1956
- UNIQUE_CONSTRAINT_VIOLATED = "UNIQUE_CONSTRAINT_VIOLATED"
1957
- }
2071
+ export declare const PropertyValidationExceptionReason: {
2072
+ readonly INVALID_FORMAT: "INVALID_FORMAT";
2073
+ readonly NOT_SUPPORTED: "NOT_SUPPORTED";
2074
+ readonly REFERENCED_RESOURCE_NOT_FOUND: "REFERENCED_RESOURCE_NOT_FOUND";
2075
+ readonly REQUIRED_PROPERTY_MISSING: "REQUIRED_PROPERTY_MISSING";
2076
+ readonly RESOURCE_NAME_ALREADY_EXISTS: "RESOURCE_NAME_ALREADY_EXISTS";
2077
+ readonly UNIQUE_CONSTRAINT_VIOLATED: "UNIQUE_CONSTRAINT_VIOLATED";
2078
+ };
2079
+ /**
2080
+ * @public
2081
+ */
2082
+ export type PropertyValidationExceptionReason = (typeof PropertyValidationExceptionReason)[keyof typeof PropertyValidationExceptionReason];
1958
2083
  /**
1959
2084
  * @public
1960
2085
  * <p>Contains information about why a property is not valid.</p>
@@ -2046,11 +2171,16 @@ export declare class ResourceNotReadyException extends __BaseException {
2046
2171
  }
2047
2172
  /**
2048
2173
  * @public
2174
+ * @enum
2049
2175
  */
2050
- export declare enum UseCaseType {
2051
- CONNECT_CAMPAIGNS = "CONNECT_CAMPAIGNS",
2052
- RULES_EVALUATION = "RULES_EVALUATION"
2053
- }
2176
+ export declare const UseCaseType: {
2177
+ readonly CONNECT_CAMPAIGNS: "CONNECT_CAMPAIGNS";
2178
+ readonly RULES_EVALUATION: "RULES_EVALUATION";
2179
+ };
2180
+ /**
2181
+ * @public
2182
+ */
2183
+ export type UseCaseType = (typeof UseCaseType)[keyof typeof UseCaseType];
2054
2184
  /**
2055
2185
  * @public
2056
2186
  */
@@ -2121,11 +2251,16 @@ export interface UserIdentityInfo {
2121
2251
  }
2122
2252
  /**
2123
2253
  * @public
2254
+ * @enum
2124
2255
  */
2125
- export declare enum PhoneType {
2126
- DESK_PHONE = "DESK_PHONE",
2127
- SOFT_PHONE = "SOFT_PHONE"
2128
- }
2256
+ export declare const PhoneType: {
2257
+ readonly DESK_PHONE: "DESK_PHONE";
2258
+ readonly SOFT_PHONE: "SOFT_PHONE";
2259
+ };
2260
+ /**
2261
+ * @public
2262
+ */
2263
+ export type PhoneType = (typeof PhoneType)[keyof typeof PhoneType];
2129
2264
  /**
2130
2265
  * @public
2131
2266
  * <p>Contains information about the phone configuration settings for a user.</p>
@@ -2294,13 +2429,18 @@ export interface CreateVocabularyRequest {
2294
2429
  }
2295
2430
  /**
2296
2431
  * @public
2432
+ * @enum
2297
2433
  */
2298
- export declare enum VocabularyState {
2299
- ACTIVE = "ACTIVE",
2300
- CREATION_FAILED = "CREATION_FAILED",
2301
- CREATION_IN_PROGRESS = "CREATION_IN_PROGRESS",
2302
- DELETE_IN_PROGRESS = "DELETE_IN_PROGRESS"
2303
- }
2434
+ export declare const VocabularyState: {
2435
+ readonly ACTIVE: "ACTIVE";
2436
+ readonly CREATION_FAILED: "CREATION_FAILED";
2437
+ readonly CREATION_IN_PROGRESS: "CREATION_IN_PROGRESS";
2438
+ readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
2439
+ };
2440
+ /**
2441
+ * @public
2442
+ */
2443
+ export type VocabularyState = (typeof VocabularyState)[keyof typeof VocabularyState];
2304
2444
  /**
2305
2445
  * @public
2306
2446
  */
@@ -2430,16 +2570,21 @@ export interface DeleteSecurityProfileRequest {
2430
2570
  }
2431
2571
  /**
2432
2572
  * @public
2573
+ * @enum
2433
2574
  */
2434
- export declare enum ResourceType {
2435
- CONTACT = "CONTACT",
2436
- CONTACT_FLOW = "CONTACT_FLOW",
2437
- HIERARCHY_GROUP = "HIERARCHY_GROUP",
2438
- HIERARCHY_LEVEL = "HIERARCHY_LEVEL",
2439
- INSTANCE = "INSTANCE",
2440
- PARTICIPANT = "PARTICIPANT",
2441
- USER = "USER"
2442
- }
2575
+ export declare const ResourceType: {
2576
+ readonly CONTACT: "CONTACT";
2577
+ readonly CONTACT_FLOW: "CONTACT_FLOW";
2578
+ readonly HIERARCHY_GROUP: "HIERARCHY_GROUP";
2579
+ readonly HIERARCHY_LEVEL: "HIERARCHY_LEVEL";
2580
+ readonly INSTANCE: "INSTANCE";
2581
+ readonly PARTICIPANT: "PARTICIPANT";
2582
+ readonly USER: "USER";
2583
+ };
2584
+ /**
2585
+ * @public
2586
+ */
2587
+ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
2443
2588
  /**
2444
2589
  * @public
2445
2590
  * <p>That resource is already in use. Please try another.</p>
@@ -2740,11 +2885,16 @@ export interface DescribeContactFlowRequest {
2740
2885
  }
2741
2886
  /**
2742
2887
  * @public
2888
+ * @enum
2743
2889
  */
2744
- export declare enum ContactFlowState {
2745
- ACTIVE = "ACTIVE",
2746
- ARCHIVED = "ARCHIVED"
2747
- }
2890
+ export declare const ContactFlowState: {
2891
+ readonly ACTIVE: "ACTIVE";
2892
+ readonly ARCHIVED: "ARCHIVED";
2893
+ };
2894
+ /**
2895
+ * @public
2896
+ */
2897
+ export type ContactFlowState = (typeof ContactFlowState)[keyof typeof ContactFlowState];
2748
2898
  /**
2749
2899
  * @public
2750
2900
  * <p>Contains information about a flow.</p>
@@ -2808,18 +2958,28 @@ export interface DescribeContactFlowModuleRequest {
2808
2958
  }
2809
2959
  /**
2810
2960
  * @public
2961
+ * @enum
2811
2962
  */
2812
- export declare enum ContactFlowModuleState {
2813
- ACTIVE = "ACTIVE",
2814
- ARCHIVED = "ARCHIVED"
2815
- }
2963
+ export declare const ContactFlowModuleState: {
2964
+ readonly ACTIVE: "ACTIVE";
2965
+ readonly ARCHIVED: "ARCHIVED";
2966
+ };
2816
2967
  /**
2817
2968
  * @public
2818
2969
  */
2819
- export declare enum ContactFlowModuleStatus {
2820
- PUBLISHED = "PUBLISHED",
2821
- SAVED = "SAVED"
2822
- }
2970
+ export type ContactFlowModuleState = (typeof ContactFlowModuleState)[keyof typeof ContactFlowModuleState];
2971
+ /**
2972
+ * @public
2973
+ * @enum
2974
+ */
2975
+ export declare const ContactFlowModuleStatus: {
2976
+ readonly PUBLISHED: "PUBLISHED";
2977
+ readonly SAVED: "SAVED";
2978
+ };
2979
+ /**
2980
+ * @public
2981
+ */
2982
+ export type ContactFlowModuleStatus = (typeof ContactFlowModuleStatus)[keyof typeof ContactFlowModuleStatus];
2823
2983
  /**
2824
2984
  * @public
2825
2985
  * <p>Contains information about a flow module.</p>
@@ -2934,12 +3094,17 @@ export interface DescribeInstanceRequest {
2934
3094
  }
2935
3095
  /**
2936
3096
  * @public
3097
+ * @enum
2937
3098
  */
2938
- export declare enum InstanceStatus {
2939
- ACTIVE = "ACTIVE",
2940
- CREATION_FAILED = "CREATION_FAILED",
2941
- CREATION_IN_PROGRESS = "CREATION_IN_PROGRESS"
2942
- }
3099
+ export declare const InstanceStatus: {
3100
+ readonly ACTIVE: "ACTIVE";
3101
+ readonly CREATION_FAILED: "CREATION_FAILED";
3102
+ readonly CREATION_IN_PROGRESS: "CREATION_IN_PROGRESS";
3103
+ };
3104
+ /**
3105
+ * @public
3106
+ */
3107
+ export type InstanceStatus = (typeof InstanceStatus)[keyof typeof InstanceStatus];
2943
3108
  /**
2944
3109
  * @public
2945
3110
  * <p>Relevant
@@ -3009,19 +3174,24 @@ export interface DescribeInstanceResponse {
3009
3174
  }
3010
3175
  /**
3011
3176
  * @public
3177
+ * @enum
3012
3178
  */
3013
- export declare enum InstanceAttributeType {
3014
- AUTO_RESOLVE_BEST_VOICES = "AUTO_RESOLVE_BEST_VOICES",
3015
- CONTACTFLOW_LOGS = "CONTACTFLOW_LOGS",
3016
- CONTACT_LENS = "CONTACT_LENS",
3017
- EARLY_MEDIA = "EARLY_MEDIA",
3018
- ENHANCED_CONTACT_MONITORING = "ENHANCED_CONTACT_MONITORING",
3019
- HIGH_VOLUME_OUTBOUND = "HIGH_VOLUME_OUTBOUND",
3020
- INBOUND_CALLS = "INBOUND_CALLS",
3021
- MULTI_PARTY_CONFERENCE = "MULTI_PARTY_CONFERENCE",
3022
- OUTBOUND_CALLS = "OUTBOUND_CALLS",
3023
- USE_CUSTOM_TTS_VOICES = "USE_CUSTOM_TTS_VOICES"
3024
- }
3179
+ export declare const InstanceAttributeType: {
3180
+ readonly AUTO_RESOLVE_BEST_VOICES: "AUTO_RESOLVE_BEST_VOICES";
3181
+ readonly CONTACTFLOW_LOGS: "CONTACTFLOW_LOGS";
3182
+ readonly CONTACT_LENS: "CONTACT_LENS";
3183
+ readonly EARLY_MEDIA: "EARLY_MEDIA";
3184
+ readonly ENHANCED_CONTACT_MONITORING: "ENHANCED_CONTACT_MONITORING";
3185
+ readonly HIGH_VOLUME_OUTBOUND: "HIGH_VOLUME_OUTBOUND";
3186
+ readonly INBOUND_CALLS: "INBOUND_CALLS";
3187
+ readonly MULTI_PARTY_CONFERENCE: "MULTI_PARTY_CONFERENCE";
3188
+ readonly OUTBOUND_CALLS: "OUTBOUND_CALLS";
3189
+ readonly USE_CUSTOM_TTS_VOICES: "USE_CUSTOM_TTS_VOICES";
3190
+ };
3191
+ /**
3192
+ * @public
3193
+ */
3194
+ export type InstanceAttributeType = (typeof InstanceAttributeType)[keyof typeof InstanceAttributeType];
3025
3195
  /**
3026
3196
  * @public
3027
3197
  */
@@ -3097,254 +3267,264 @@ export interface DescribePhoneNumberRequest {
3097
3267
  }
3098
3268
  /**
3099
3269
  * @public
3100
- */
3101
- export declare enum PhoneNumberCountryCode {
3102
- AD = "AD",
3103
- AE = "AE",
3104
- AF = "AF",
3105
- AG = "AG",
3106
- AI = "AI",
3107
- AL = "AL",
3108
- AM = "AM",
3109
- AN = "AN",
3110
- AO = "AO",
3111
- AQ = "AQ",
3112
- AR = "AR",
3113
- AS = "AS",
3114
- AT = "AT",
3115
- AU = "AU",
3116
- AW = "AW",
3117
- AZ = "AZ",
3118
- BA = "BA",
3119
- BB = "BB",
3120
- BD = "BD",
3121
- BE = "BE",
3122
- BF = "BF",
3123
- BG = "BG",
3124
- BH = "BH",
3125
- BI = "BI",
3126
- BJ = "BJ",
3127
- BL = "BL",
3128
- BM = "BM",
3129
- BN = "BN",
3130
- BO = "BO",
3131
- BR = "BR",
3132
- BS = "BS",
3133
- BT = "BT",
3134
- BW = "BW",
3135
- BY = "BY",
3136
- BZ = "BZ",
3137
- CA = "CA",
3138
- CC = "CC",
3139
- CD = "CD",
3140
- CF = "CF",
3141
- CG = "CG",
3142
- CH = "CH",
3143
- CI = "CI",
3144
- CK = "CK",
3145
- CL = "CL",
3146
- CM = "CM",
3147
- CN = "CN",
3148
- CO = "CO",
3149
- CR = "CR",
3150
- CU = "CU",
3151
- CV = "CV",
3152
- CW = "CW",
3153
- CX = "CX",
3154
- CY = "CY",
3155
- CZ = "CZ",
3156
- DE = "DE",
3157
- DJ = "DJ",
3158
- DK = "DK",
3159
- DM = "DM",
3160
- DO = "DO",
3161
- DZ = "DZ",
3162
- EC = "EC",
3163
- EE = "EE",
3164
- EG = "EG",
3165
- EH = "EH",
3166
- ER = "ER",
3167
- ES = "ES",
3168
- ET = "ET",
3169
- FI = "FI",
3170
- FJ = "FJ",
3171
- FK = "FK",
3172
- FM = "FM",
3173
- FO = "FO",
3174
- FR = "FR",
3175
- GA = "GA",
3176
- GB = "GB",
3177
- GD = "GD",
3178
- GE = "GE",
3179
- GG = "GG",
3180
- GH = "GH",
3181
- GI = "GI",
3182
- GL = "GL",
3183
- GM = "GM",
3184
- GN = "GN",
3185
- GQ = "GQ",
3186
- GR = "GR",
3187
- GT = "GT",
3188
- GU = "GU",
3189
- GW = "GW",
3190
- GY = "GY",
3191
- HK = "HK",
3192
- HN = "HN",
3193
- HR = "HR",
3194
- HT = "HT",
3195
- HU = "HU",
3196
- ID = "ID",
3197
- IE = "IE",
3198
- IL = "IL",
3199
- IM = "IM",
3200
- IN = "IN",
3201
- IO = "IO",
3202
- IQ = "IQ",
3203
- IR = "IR",
3204
- IS = "IS",
3205
- IT = "IT",
3206
- JE = "JE",
3207
- JM = "JM",
3208
- JO = "JO",
3209
- JP = "JP",
3210
- KE = "KE",
3211
- KG = "KG",
3212
- KH = "KH",
3213
- KI = "KI",
3214
- KM = "KM",
3215
- KN = "KN",
3216
- KP = "KP",
3217
- KR = "KR",
3218
- KW = "KW",
3219
- KY = "KY",
3220
- KZ = "KZ",
3221
- LA = "LA",
3222
- LB = "LB",
3223
- LC = "LC",
3224
- LI = "LI",
3225
- LK = "LK",
3226
- LR = "LR",
3227
- LS = "LS",
3228
- LT = "LT",
3229
- LU = "LU",
3230
- LV = "LV",
3231
- LY = "LY",
3232
- MA = "MA",
3233
- MC = "MC",
3234
- MD = "MD",
3235
- ME = "ME",
3236
- MF = "MF",
3237
- MG = "MG",
3238
- MH = "MH",
3239
- MK = "MK",
3240
- ML = "ML",
3241
- MM = "MM",
3242
- MN = "MN",
3243
- MO = "MO",
3244
- MP = "MP",
3245
- MR = "MR",
3246
- MS = "MS",
3247
- MT = "MT",
3248
- MU = "MU",
3249
- MV = "MV",
3250
- MW = "MW",
3251
- MX = "MX",
3252
- MY = "MY",
3253
- MZ = "MZ",
3254
- NA = "NA",
3255
- NC = "NC",
3256
- NE = "NE",
3257
- NG = "NG",
3258
- NI = "NI",
3259
- NL = "NL",
3260
- NO = "NO",
3261
- NP = "NP",
3262
- NR = "NR",
3263
- NU = "NU",
3264
- NZ = "NZ",
3265
- OM = "OM",
3266
- PA = "PA",
3267
- PE = "PE",
3268
- PF = "PF",
3269
- PG = "PG",
3270
- PH = "PH",
3271
- PK = "PK",
3272
- PL = "PL",
3273
- PM = "PM",
3274
- PN = "PN",
3275
- PR = "PR",
3276
- PT = "PT",
3277
- PW = "PW",
3278
- PY = "PY",
3279
- QA = "QA",
3280
- RE = "RE",
3281
- RO = "RO",
3282
- RS = "RS",
3283
- RU = "RU",
3284
- RW = "RW",
3285
- SA = "SA",
3286
- SB = "SB",
3287
- SC = "SC",
3288
- SD = "SD",
3289
- SE = "SE",
3290
- SG = "SG",
3291
- SH = "SH",
3292
- SI = "SI",
3293
- SJ = "SJ",
3294
- SK = "SK",
3295
- SL = "SL",
3296
- SM = "SM",
3297
- SN = "SN",
3298
- SO = "SO",
3299
- SR = "SR",
3300
- ST = "ST",
3301
- SV = "SV",
3302
- SX = "SX",
3303
- SY = "SY",
3304
- SZ = "SZ",
3305
- TC = "TC",
3306
- TD = "TD",
3307
- TG = "TG",
3308
- TH = "TH",
3309
- TJ = "TJ",
3310
- TK = "TK",
3311
- TL = "TL",
3312
- TM = "TM",
3313
- TN = "TN",
3314
- TO = "TO",
3315
- TR = "TR",
3316
- TT = "TT",
3317
- TV = "TV",
3318
- TW = "TW",
3319
- TZ = "TZ",
3320
- UA = "UA",
3321
- UG = "UG",
3322
- US = "US",
3323
- UY = "UY",
3324
- UZ = "UZ",
3325
- VA = "VA",
3326
- VC = "VC",
3327
- VE = "VE",
3328
- VG = "VG",
3329
- VI = "VI",
3330
- VN = "VN",
3331
- VU = "VU",
3332
- WF = "WF",
3333
- WS = "WS",
3334
- YE = "YE",
3335
- YT = "YT",
3336
- ZA = "ZA",
3337
- ZM = "ZM",
3338
- ZW = "ZW"
3339
- }
3340
- /**
3341
- * @public
3342
- */
3343
- export declare enum PhoneNumberWorkflowStatus {
3344
- Claimed = "CLAIMED",
3345
- Failed = "FAILED",
3346
- InProgress = "IN_PROGRESS"
3347
- }
3270
+ * @enum
3271
+ */
3272
+ export declare const PhoneNumberCountryCode: {
3273
+ readonly AD: "AD";
3274
+ readonly AE: "AE";
3275
+ readonly AF: "AF";
3276
+ readonly AG: "AG";
3277
+ readonly AI: "AI";
3278
+ readonly AL: "AL";
3279
+ readonly AM: "AM";
3280
+ readonly AN: "AN";
3281
+ readonly AO: "AO";
3282
+ readonly AQ: "AQ";
3283
+ readonly AR: "AR";
3284
+ readonly AS: "AS";
3285
+ readonly AT: "AT";
3286
+ readonly AU: "AU";
3287
+ readonly AW: "AW";
3288
+ readonly AZ: "AZ";
3289
+ readonly BA: "BA";
3290
+ readonly BB: "BB";
3291
+ readonly BD: "BD";
3292
+ readonly BE: "BE";
3293
+ readonly BF: "BF";
3294
+ readonly BG: "BG";
3295
+ readonly BH: "BH";
3296
+ readonly BI: "BI";
3297
+ readonly BJ: "BJ";
3298
+ readonly BL: "BL";
3299
+ readonly BM: "BM";
3300
+ readonly BN: "BN";
3301
+ readonly BO: "BO";
3302
+ readonly BR: "BR";
3303
+ readonly BS: "BS";
3304
+ readonly BT: "BT";
3305
+ readonly BW: "BW";
3306
+ readonly BY: "BY";
3307
+ readonly BZ: "BZ";
3308
+ readonly CA: "CA";
3309
+ readonly CC: "CC";
3310
+ readonly CD: "CD";
3311
+ readonly CF: "CF";
3312
+ readonly CG: "CG";
3313
+ readonly CH: "CH";
3314
+ readonly CI: "CI";
3315
+ readonly CK: "CK";
3316
+ readonly CL: "CL";
3317
+ readonly CM: "CM";
3318
+ readonly CN: "CN";
3319
+ readonly CO: "CO";
3320
+ readonly CR: "CR";
3321
+ readonly CU: "CU";
3322
+ readonly CV: "CV";
3323
+ readonly CW: "CW";
3324
+ readonly CX: "CX";
3325
+ readonly CY: "CY";
3326
+ readonly CZ: "CZ";
3327
+ readonly DE: "DE";
3328
+ readonly DJ: "DJ";
3329
+ readonly DK: "DK";
3330
+ readonly DM: "DM";
3331
+ readonly DO: "DO";
3332
+ readonly DZ: "DZ";
3333
+ readonly EC: "EC";
3334
+ readonly EE: "EE";
3335
+ readonly EG: "EG";
3336
+ readonly EH: "EH";
3337
+ readonly ER: "ER";
3338
+ readonly ES: "ES";
3339
+ readonly ET: "ET";
3340
+ readonly FI: "FI";
3341
+ readonly FJ: "FJ";
3342
+ readonly FK: "FK";
3343
+ readonly FM: "FM";
3344
+ readonly FO: "FO";
3345
+ readonly FR: "FR";
3346
+ readonly GA: "GA";
3347
+ readonly GB: "GB";
3348
+ readonly GD: "GD";
3349
+ readonly GE: "GE";
3350
+ readonly GG: "GG";
3351
+ readonly GH: "GH";
3352
+ readonly GI: "GI";
3353
+ readonly GL: "GL";
3354
+ readonly GM: "GM";
3355
+ readonly GN: "GN";
3356
+ readonly GQ: "GQ";
3357
+ readonly GR: "GR";
3358
+ readonly GT: "GT";
3359
+ readonly GU: "GU";
3360
+ readonly GW: "GW";
3361
+ readonly GY: "GY";
3362
+ readonly HK: "HK";
3363
+ readonly HN: "HN";
3364
+ readonly HR: "HR";
3365
+ readonly HT: "HT";
3366
+ readonly HU: "HU";
3367
+ readonly ID: "ID";
3368
+ readonly IE: "IE";
3369
+ readonly IL: "IL";
3370
+ readonly IM: "IM";
3371
+ readonly IN: "IN";
3372
+ readonly IO: "IO";
3373
+ readonly IQ: "IQ";
3374
+ readonly IR: "IR";
3375
+ readonly IS: "IS";
3376
+ readonly IT: "IT";
3377
+ readonly JE: "JE";
3378
+ readonly JM: "JM";
3379
+ readonly JO: "JO";
3380
+ readonly JP: "JP";
3381
+ readonly KE: "KE";
3382
+ readonly KG: "KG";
3383
+ readonly KH: "KH";
3384
+ readonly KI: "KI";
3385
+ readonly KM: "KM";
3386
+ readonly KN: "KN";
3387
+ readonly KP: "KP";
3388
+ readonly KR: "KR";
3389
+ readonly KW: "KW";
3390
+ readonly KY: "KY";
3391
+ readonly KZ: "KZ";
3392
+ readonly LA: "LA";
3393
+ readonly LB: "LB";
3394
+ readonly LC: "LC";
3395
+ readonly LI: "LI";
3396
+ readonly LK: "LK";
3397
+ readonly LR: "LR";
3398
+ readonly LS: "LS";
3399
+ readonly LT: "LT";
3400
+ readonly LU: "LU";
3401
+ readonly LV: "LV";
3402
+ readonly LY: "LY";
3403
+ readonly MA: "MA";
3404
+ readonly MC: "MC";
3405
+ readonly MD: "MD";
3406
+ readonly ME: "ME";
3407
+ readonly MF: "MF";
3408
+ readonly MG: "MG";
3409
+ readonly MH: "MH";
3410
+ readonly MK: "MK";
3411
+ readonly ML: "ML";
3412
+ readonly MM: "MM";
3413
+ readonly MN: "MN";
3414
+ readonly MO: "MO";
3415
+ readonly MP: "MP";
3416
+ readonly MR: "MR";
3417
+ readonly MS: "MS";
3418
+ readonly MT: "MT";
3419
+ readonly MU: "MU";
3420
+ readonly MV: "MV";
3421
+ readonly MW: "MW";
3422
+ readonly MX: "MX";
3423
+ readonly MY: "MY";
3424
+ readonly MZ: "MZ";
3425
+ readonly NA: "NA";
3426
+ readonly NC: "NC";
3427
+ readonly NE: "NE";
3428
+ readonly NG: "NG";
3429
+ readonly NI: "NI";
3430
+ readonly NL: "NL";
3431
+ readonly NO: "NO";
3432
+ readonly NP: "NP";
3433
+ readonly NR: "NR";
3434
+ readonly NU: "NU";
3435
+ readonly NZ: "NZ";
3436
+ readonly OM: "OM";
3437
+ readonly PA: "PA";
3438
+ readonly PE: "PE";
3439
+ readonly PF: "PF";
3440
+ readonly PG: "PG";
3441
+ readonly PH: "PH";
3442
+ readonly PK: "PK";
3443
+ readonly PL: "PL";
3444
+ readonly PM: "PM";
3445
+ readonly PN: "PN";
3446
+ readonly PR: "PR";
3447
+ readonly PT: "PT";
3448
+ readonly PW: "PW";
3449
+ readonly PY: "PY";
3450
+ readonly QA: "QA";
3451
+ readonly RE: "RE";
3452
+ readonly RO: "RO";
3453
+ readonly RS: "RS";
3454
+ readonly RU: "RU";
3455
+ readonly RW: "RW";
3456
+ readonly SA: "SA";
3457
+ readonly SB: "SB";
3458
+ readonly SC: "SC";
3459
+ readonly SD: "SD";
3460
+ readonly SE: "SE";
3461
+ readonly SG: "SG";
3462
+ readonly SH: "SH";
3463
+ readonly SI: "SI";
3464
+ readonly SJ: "SJ";
3465
+ readonly SK: "SK";
3466
+ readonly SL: "SL";
3467
+ readonly SM: "SM";
3468
+ readonly SN: "SN";
3469
+ readonly SO: "SO";
3470
+ readonly SR: "SR";
3471
+ readonly ST: "ST";
3472
+ readonly SV: "SV";
3473
+ readonly SX: "SX";
3474
+ readonly SY: "SY";
3475
+ readonly SZ: "SZ";
3476
+ readonly TC: "TC";
3477
+ readonly TD: "TD";
3478
+ readonly TG: "TG";
3479
+ readonly TH: "TH";
3480
+ readonly TJ: "TJ";
3481
+ readonly TK: "TK";
3482
+ readonly TL: "TL";
3483
+ readonly TM: "TM";
3484
+ readonly TN: "TN";
3485
+ readonly TO: "TO";
3486
+ readonly TR: "TR";
3487
+ readonly TT: "TT";
3488
+ readonly TV: "TV";
3489
+ readonly TW: "TW";
3490
+ readonly TZ: "TZ";
3491
+ readonly UA: "UA";
3492
+ readonly UG: "UG";
3493
+ readonly US: "US";
3494
+ readonly UY: "UY";
3495
+ readonly UZ: "UZ";
3496
+ readonly VA: "VA";
3497
+ readonly VC: "VC";
3498
+ readonly VE: "VE";
3499
+ readonly VG: "VG";
3500
+ readonly VI: "VI";
3501
+ readonly VN: "VN";
3502
+ readonly VU: "VU";
3503
+ readonly WF: "WF";
3504
+ readonly WS: "WS";
3505
+ readonly YE: "YE";
3506
+ readonly YT: "YT";
3507
+ readonly ZA: "ZA";
3508
+ readonly ZM: "ZM";
3509
+ readonly ZW: "ZW";
3510
+ };
3511
+ /**
3512
+ * @public
3513
+ */
3514
+ export type PhoneNumberCountryCode = (typeof PhoneNumberCountryCode)[keyof typeof PhoneNumberCountryCode];
3515
+ /**
3516
+ * @public
3517
+ * @enum
3518
+ */
3519
+ export declare const PhoneNumberWorkflowStatus: {
3520
+ readonly Claimed: "CLAIMED";
3521
+ readonly Failed: "FAILED";
3522
+ readonly InProgress: "IN_PROGRESS";
3523
+ };
3524
+ /**
3525
+ * @public
3526
+ */
3527
+ export type PhoneNumberWorkflowStatus = (typeof PhoneNumberWorkflowStatus)[keyof typeof PhoneNumberWorkflowStatus];
3348
3528
  /**
3349
3529
  * @public
3350
3530
  * <p>The status of the phone number.</p>
@@ -3385,11 +3565,16 @@ export interface PhoneNumberStatus {
3385
3565
  }
3386
3566
  /**
3387
3567
  * @public
3568
+ * @enum
3388
3569
  */
3389
- export declare enum PhoneNumberType {
3390
- DID = "DID",
3391
- TOLL_FREE = "TOLL_FREE"
3392
- }
3570
+ export declare const PhoneNumberType: {
3571
+ readonly DID: "DID";
3572
+ readonly TOLL_FREE: "TOLL_FREE";
3573
+ };
3574
+ /**
3575
+ * @public
3576
+ */
3577
+ export type PhoneNumberType = (typeof PhoneNumberType)[keyof typeof PhoneNumberType];
3393
3578
  /**
3394
3579
  * @public
3395
3580
  * <p>Information about a phone number that has been claimed to your Amazon Connect instance
@@ -3486,11 +3671,16 @@ export interface DescribeQueueRequest {
3486
3671
  }
3487
3672
  /**
3488
3673
  * @public
3674
+ * @enum
3489
3675
  */
3490
- export declare enum QueueStatus {
3491
- DISABLED = "DISABLED",
3492
- ENABLED = "ENABLED"
3493
- }
3676
+ export declare const QueueStatus: {
3677
+ readonly DISABLED: "DISABLED";
3678
+ readonly ENABLED: "ENABLED";
3679
+ };
3680
+ /**
3681
+ * @public
3682
+ */
3683
+ export type QueueStatus = (typeof QueueStatus)[keyof typeof QueueStatus];
3494
3684
  /**
3495
3685
  * @public
3496
3686
  * <p>Contains information about a queue.</p>
@@ -3808,15 +3998,20 @@ export interface DescribeTrafficDistributionGroupRequest {
3808
3998
  }
3809
3999
  /**
3810
4000
  * @public
4001
+ * @enum
3811
4002
  */
3812
- export declare enum TrafficDistributionGroupStatus {
3813
- ACTIVE = "ACTIVE",
3814
- CREATION_FAILED = "CREATION_FAILED",
3815
- CREATION_IN_PROGRESS = "CREATION_IN_PROGRESS",
3816
- DELETION_FAILED = "DELETION_FAILED",
3817
- PENDING_DELETION = "PENDING_DELETION",
3818
- UPDATE_IN_PROGRESS = "UPDATE_IN_PROGRESS"
3819
- }
4003
+ export declare const TrafficDistributionGroupStatus: {
4004
+ readonly ACTIVE: "ACTIVE";
4005
+ readonly CREATION_FAILED: "CREATION_FAILED";
4006
+ readonly CREATION_IN_PROGRESS: "CREATION_IN_PROGRESS";
4007
+ readonly DELETION_FAILED: "DELETION_FAILED";
4008
+ readonly PENDING_DELETION: "PENDING_DELETION";
4009
+ readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
4010
+ };
4011
+ /**
4012
+ * @public
4013
+ */
4014
+ export type TrafficDistributionGroupStatus = (typeof TrafficDistributionGroupStatus)[keyof typeof TrafficDistributionGroupStatus];
3820
4015
  /**
3821
4016
  * @public
3822
4017
  * <p>Information about a traffic distribution group.</p>
@@ -4374,30 +4569,40 @@ export interface GetContactAttributesResponse {
4374
4569
  }
4375
4570
  /**
4376
4571
  * @public
4572
+ * @enum
4377
4573
  */
4378
- export declare enum CurrentMetricName {
4379
- AGENTS_AFTER_CONTACT_WORK = "AGENTS_AFTER_CONTACT_WORK",
4380
- AGENTS_AVAILABLE = "AGENTS_AVAILABLE",
4381
- AGENTS_ERROR = "AGENTS_ERROR",
4382
- AGENTS_NON_PRODUCTIVE = "AGENTS_NON_PRODUCTIVE",
4383
- AGENTS_ONLINE = "AGENTS_ONLINE",
4384
- AGENTS_ON_CALL = "AGENTS_ON_CALL",
4385
- AGENTS_ON_CONTACT = "AGENTS_ON_CONTACT",
4386
- AGENTS_STAFFED = "AGENTS_STAFFED",
4387
- CONTACTS_IN_QUEUE = "CONTACTS_IN_QUEUE",
4388
- CONTACTS_SCHEDULED = "CONTACTS_SCHEDULED",
4389
- OLDEST_CONTACT_AGE = "OLDEST_CONTACT_AGE",
4390
- SLOTS_ACTIVE = "SLOTS_ACTIVE",
4391
- SLOTS_AVAILABLE = "SLOTS_AVAILABLE"
4392
- }
4574
+ export declare const CurrentMetricName: {
4575
+ readonly AGENTS_AFTER_CONTACT_WORK: "AGENTS_AFTER_CONTACT_WORK";
4576
+ readonly AGENTS_AVAILABLE: "AGENTS_AVAILABLE";
4577
+ readonly AGENTS_ERROR: "AGENTS_ERROR";
4578
+ readonly AGENTS_NON_PRODUCTIVE: "AGENTS_NON_PRODUCTIVE";
4579
+ readonly AGENTS_ONLINE: "AGENTS_ONLINE";
4580
+ readonly AGENTS_ON_CALL: "AGENTS_ON_CALL";
4581
+ readonly AGENTS_ON_CONTACT: "AGENTS_ON_CONTACT";
4582
+ readonly AGENTS_STAFFED: "AGENTS_STAFFED";
4583
+ readonly CONTACTS_IN_QUEUE: "CONTACTS_IN_QUEUE";
4584
+ readonly CONTACTS_SCHEDULED: "CONTACTS_SCHEDULED";
4585
+ readonly OLDEST_CONTACT_AGE: "OLDEST_CONTACT_AGE";
4586
+ readonly SLOTS_ACTIVE: "SLOTS_ACTIVE";
4587
+ readonly SLOTS_AVAILABLE: "SLOTS_AVAILABLE";
4588
+ };
4393
4589
  /**
4394
4590
  * @public
4395
4591
  */
4396
- export declare enum Unit {
4397
- COUNT = "COUNT",
4398
- PERCENT = "PERCENT",
4399
- SECONDS = "SECONDS"
4400
- }
4592
+ export type CurrentMetricName = (typeof CurrentMetricName)[keyof typeof CurrentMetricName];
4593
+ /**
4594
+ * @public
4595
+ * @enum
4596
+ */
4597
+ export declare const Unit: {
4598
+ readonly COUNT: "COUNT";
4599
+ readonly PERCENT: "PERCENT";
4600
+ readonly SECONDS: "SECONDS";
4601
+ };
4602
+ /**
4603
+ * @public
4604
+ */
4605
+ export type Unit = (typeof Unit)[keyof typeof Unit];
4401
4606
  /**
4402
4607
  * @public
4403
4608
  * <p>Contains information about a real-time metric. For a description of each metric, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/real-time-metrics-definitions.html">Real-time Metrics Definitions</a> in the <i>Amazon Connect Administrator
@@ -4435,19 +4640,29 @@ export interface Filters {
4435
4640
  }
4436
4641
  /**
4437
4642
  * @public
4643
+ * @enum
4438
4644
  */
4439
- export declare enum Grouping {
4440
- CHANNEL = "CHANNEL",
4441
- QUEUE = "QUEUE",
4442
- ROUTING_PROFILE = "ROUTING_PROFILE"
4443
- }
4645
+ export declare const Grouping: {
4646
+ readonly CHANNEL: "CHANNEL";
4647
+ readonly QUEUE: "QUEUE";
4648
+ readonly ROUTING_PROFILE: "ROUTING_PROFILE";
4649
+ };
4444
4650
  /**
4445
4651
  * @public
4446
4652
  */
4447
- export declare enum SortOrder {
4448
- ASCENDING = "ASCENDING",
4449
- DESCENDING = "DESCENDING"
4450
- }
4653
+ export type Grouping = (typeof Grouping)[keyof typeof Grouping];
4654
+ /**
4655
+ * @public
4656
+ * @enum
4657
+ */
4658
+ export declare const SortOrder: {
4659
+ readonly ASCENDING: "ASCENDING";
4660
+ readonly DESCENDING: "DESCENDING";
4661
+ };
4662
+ /**
4663
+ * @public
4664
+ */
4665
+ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
4451
4666
  /**
4452
4667
  * @public
4453
4668
  * <p>The way to sort the resulting response based on metrics. By default resources are sorted
@@ -4984,48 +5199,63 @@ export declare class UserNotFoundException extends __BaseException {
4984
5199
  }
4985
5200
  /**
4986
5201
  * @public
5202
+ * @enum
4987
5203
  */
4988
- export declare enum HistoricalMetricName {
4989
- ABANDON_TIME = "ABANDON_TIME",
4990
- AFTER_CONTACT_WORK_TIME = "AFTER_CONTACT_WORK_TIME",
4991
- API_CONTACTS_HANDLED = "API_CONTACTS_HANDLED",
4992
- CALLBACK_CONTACTS_HANDLED = "CALLBACK_CONTACTS_HANDLED",
4993
- CONTACTS_ABANDONED = "CONTACTS_ABANDONED",
4994
- CONTACTS_AGENT_HUNG_UP_FIRST = "CONTACTS_AGENT_HUNG_UP_FIRST",
4995
- CONTACTS_CONSULTED = "CONTACTS_CONSULTED",
4996
- CONTACTS_HANDLED = "CONTACTS_HANDLED",
4997
- CONTACTS_HANDLED_INCOMING = "CONTACTS_HANDLED_INCOMING",
4998
- CONTACTS_HANDLED_OUTBOUND = "CONTACTS_HANDLED_OUTBOUND",
4999
- CONTACTS_HOLD_ABANDONS = "CONTACTS_HOLD_ABANDONS",
5000
- CONTACTS_MISSED = "CONTACTS_MISSED",
5001
- CONTACTS_QUEUED = "CONTACTS_QUEUED",
5002
- CONTACTS_TRANSFERRED_IN = "CONTACTS_TRANSFERRED_IN",
5003
- CONTACTS_TRANSFERRED_IN_FROM_QUEUE = "CONTACTS_TRANSFERRED_IN_FROM_QUEUE",
5004
- CONTACTS_TRANSFERRED_OUT = "CONTACTS_TRANSFERRED_OUT",
5005
- CONTACTS_TRANSFERRED_OUT_FROM_QUEUE = "CONTACTS_TRANSFERRED_OUT_FROM_QUEUE",
5006
- HANDLE_TIME = "HANDLE_TIME",
5007
- HOLD_TIME = "HOLD_TIME",
5008
- INTERACTION_AND_HOLD_TIME = "INTERACTION_AND_HOLD_TIME",
5009
- INTERACTION_TIME = "INTERACTION_TIME",
5010
- OCCUPANCY = "OCCUPANCY",
5011
- QUEUED_TIME = "QUEUED_TIME",
5012
- QUEUE_ANSWER_TIME = "QUEUE_ANSWER_TIME",
5013
- SERVICE_LEVEL = "SERVICE_LEVEL"
5014
- }
5204
+ export declare const HistoricalMetricName: {
5205
+ readonly ABANDON_TIME: "ABANDON_TIME";
5206
+ readonly AFTER_CONTACT_WORK_TIME: "AFTER_CONTACT_WORK_TIME";
5207
+ readonly API_CONTACTS_HANDLED: "API_CONTACTS_HANDLED";
5208
+ readonly CALLBACK_CONTACTS_HANDLED: "CALLBACK_CONTACTS_HANDLED";
5209
+ readonly CONTACTS_ABANDONED: "CONTACTS_ABANDONED";
5210
+ readonly CONTACTS_AGENT_HUNG_UP_FIRST: "CONTACTS_AGENT_HUNG_UP_FIRST";
5211
+ readonly CONTACTS_CONSULTED: "CONTACTS_CONSULTED";
5212
+ readonly CONTACTS_HANDLED: "CONTACTS_HANDLED";
5213
+ readonly CONTACTS_HANDLED_INCOMING: "CONTACTS_HANDLED_INCOMING";
5214
+ readonly CONTACTS_HANDLED_OUTBOUND: "CONTACTS_HANDLED_OUTBOUND";
5215
+ readonly CONTACTS_HOLD_ABANDONS: "CONTACTS_HOLD_ABANDONS";
5216
+ readonly CONTACTS_MISSED: "CONTACTS_MISSED";
5217
+ readonly CONTACTS_QUEUED: "CONTACTS_QUEUED";
5218
+ readonly CONTACTS_TRANSFERRED_IN: "CONTACTS_TRANSFERRED_IN";
5219
+ readonly CONTACTS_TRANSFERRED_IN_FROM_QUEUE: "CONTACTS_TRANSFERRED_IN_FROM_QUEUE";
5220
+ readonly CONTACTS_TRANSFERRED_OUT: "CONTACTS_TRANSFERRED_OUT";
5221
+ readonly CONTACTS_TRANSFERRED_OUT_FROM_QUEUE: "CONTACTS_TRANSFERRED_OUT_FROM_QUEUE";
5222
+ readonly HANDLE_TIME: "HANDLE_TIME";
5223
+ readonly HOLD_TIME: "HOLD_TIME";
5224
+ readonly INTERACTION_AND_HOLD_TIME: "INTERACTION_AND_HOLD_TIME";
5225
+ readonly INTERACTION_TIME: "INTERACTION_TIME";
5226
+ readonly OCCUPANCY: "OCCUPANCY";
5227
+ readonly QUEUED_TIME: "QUEUED_TIME";
5228
+ readonly QUEUE_ANSWER_TIME: "QUEUE_ANSWER_TIME";
5229
+ readonly SERVICE_LEVEL: "SERVICE_LEVEL";
5230
+ };
5015
5231
  /**
5016
5232
  * @public
5017
5233
  */
5018
- export declare enum Statistic {
5019
- AVG = "AVG",
5020
- MAX = "MAX",
5021
- SUM = "SUM"
5022
- }
5234
+ export type HistoricalMetricName = (typeof HistoricalMetricName)[keyof typeof HistoricalMetricName];
5023
5235
  /**
5024
5236
  * @public
5237
+ * @enum
5025
5238
  */
5026
- export declare enum Comparison {
5027
- LT = "LT"
5028
- }
5239
+ export declare const Statistic: {
5240
+ readonly AVG: "AVG";
5241
+ readonly MAX: "MAX";
5242
+ readonly SUM: "SUM";
5243
+ };
5244
+ /**
5245
+ * @public
5246
+ */
5247
+ export type Statistic = (typeof Statistic)[keyof typeof Statistic];
5248
+ /**
5249
+ * @public
5250
+ * @enum
5251
+ */
5252
+ export declare const Comparison: {
5253
+ readonly LT: "LT";
5254
+ };
5255
+ /**
5256
+ * @public
5257
+ */
5258
+ export type Comparison = (typeof Comparison)[keyof typeof Comparison];
5029
5259
  /**
5030
5260
  * @public
5031
5261
  * <p>Contains information about the threshold for service level metrics.</p>
@@ -5870,11 +6100,16 @@ export interface ListApprovedOriginsResponse {
5870
6100
  }
5871
6101
  /**
5872
6102
  * @public
6103
+ * @enum
5873
6104
  */
5874
- export declare enum LexVersion {
5875
- V1 = "V1",
5876
- V2 = "V2"
5877
- }
6105
+ export declare const LexVersion: {
6106
+ readonly V1: "V1";
6107
+ readonly V2: "V2";
6108
+ };
6109
+ /**
6110
+ * @public
6111
+ */
6112
+ export type LexVersion = (typeof LexVersion)[keyof typeof LexVersion];
5878
6113
  /**
5879
6114
  * @public
5880
6115
  */