@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.
- package/dist-cjs/models/models_0.js +564 -611
- package/dist-cjs/models/models_1.js +44 -55
- package/dist-es/models/models_0.js +564 -611
- package/dist-es/models/models_1.js +44 -55
- package/dist-types/models/models_0.d.ts +803 -568
- package/dist-types/models/models_1.d.ts +99 -44
- package/dist-types/ts3.4/models/models_0.d.ts +641 -564
- package/dist-types/ts3.4/models/models_1.d.ts +64 -44
- package/package.json +34 -34
|
@@ -8,41 +8,46 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
8
8
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
9
|
);
|
|
10
10
|
}
|
|
11
|
-
export declare
|
|
12
|
-
ASSIGN_CONTACT_CATEGORY
|
|
13
|
-
CREATE_TASK
|
|
14
|
-
GENERATE_EVENTBRIDGE_EVENT
|
|
15
|
-
SEND_NOTIFICATION
|
|
16
|
-
}
|
|
11
|
+
export declare const ActionType: {
|
|
12
|
+
readonly ASSIGN_CONTACT_CATEGORY: "ASSIGN_CONTACT_CATEGORY";
|
|
13
|
+
readonly CREATE_TASK: "CREATE_TASK";
|
|
14
|
+
readonly GENERATE_EVENTBRIDGE_EVENT: "GENERATE_EVENTBRIDGE_EVENT";
|
|
15
|
+
readonly SEND_NOTIFICATION: "SEND_NOTIFICATION";
|
|
16
|
+
};
|
|
17
|
+
export type ActionType = (typeof ActionType)[keyof typeof ActionType];
|
|
17
18
|
export interface ActionSummary {
|
|
18
19
|
ActionType: ActionType | string | undefined;
|
|
19
20
|
}
|
|
20
|
-
export declare
|
|
21
|
-
CONNECTED
|
|
22
|
-
CONNECTED_ONHOLD
|
|
23
|
-
CONNECTING
|
|
24
|
-
ENDED
|
|
25
|
-
ERROR
|
|
26
|
-
INCOMING
|
|
27
|
-
MISSED
|
|
28
|
-
PENDING
|
|
29
|
-
REJECTED
|
|
30
|
-
}
|
|
31
|
-
export
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
21
|
+
export declare const ContactState: {
|
|
22
|
+
readonly CONNECTED: "CONNECTED";
|
|
23
|
+
readonly CONNECTED_ONHOLD: "CONNECTED_ONHOLD";
|
|
24
|
+
readonly CONNECTING: "CONNECTING";
|
|
25
|
+
readonly ENDED: "ENDED";
|
|
26
|
+
readonly ERROR: "ERROR";
|
|
27
|
+
readonly INCOMING: "INCOMING";
|
|
28
|
+
readonly MISSED: "MISSED";
|
|
29
|
+
readonly PENDING: "PENDING";
|
|
30
|
+
readonly REJECTED: "REJECTED";
|
|
31
|
+
};
|
|
32
|
+
export type ContactState = (typeof ContactState)[keyof typeof ContactState];
|
|
33
|
+
export declare const Channel: {
|
|
34
|
+
readonly CHAT: "CHAT";
|
|
35
|
+
readonly TASK: "TASK";
|
|
36
|
+
readonly VOICE: "VOICE";
|
|
37
|
+
};
|
|
38
|
+
export type Channel = (typeof Channel)[keyof typeof Channel];
|
|
39
|
+
export declare const ContactInitiationMethod: {
|
|
40
|
+
readonly API: "API";
|
|
41
|
+
readonly CALLBACK: "CALLBACK";
|
|
42
|
+
readonly DISCONNECT: "DISCONNECT";
|
|
43
|
+
readonly INBOUND: "INBOUND";
|
|
44
|
+
readonly MONITOR: "MONITOR";
|
|
45
|
+
readonly OUTBOUND: "OUTBOUND";
|
|
46
|
+
readonly QUEUE_TRANSFER: "QUEUE_TRANSFER";
|
|
47
|
+
readonly TRANSFER: "TRANSFER";
|
|
48
|
+
};
|
|
49
|
+
export type ContactInitiationMethod =
|
|
50
|
+
(typeof ContactInitiationMethod)[keyof typeof ContactInitiationMethod];
|
|
46
51
|
export interface QueueReference {
|
|
47
52
|
Id?: string;
|
|
48
53
|
Arn?: string;
|
|
@@ -60,15 +65,19 @@ export interface AgentInfo {
|
|
|
60
65
|
Id?: string;
|
|
61
66
|
ConnectedToAgentTimestamp?: Date;
|
|
62
67
|
}
|
|
63
|
-
export declare
|
|
64
|
-
DISABLED
|
|
65
|
-
ENABLED
|
|
66
|
-
}
|
|
67
|
-
export
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
68
|
+
export declare const AgentStatusState: {
|
|
69
|
+
readonly DISABLED: "DISABLED";
|
|
70
|
+
readonly ENABLED: "ENABLED";
|
|
71
|
+
};
|
|
72
|
+
export type AgentStatusState =
|
|
73
|
+
(typeof AgentStatusState)[keyof typeof AgentStatusState];
|
|
74
|
+
export declare const AgentStatusType: {
|
|
75
|
+
readonly CUSTOM: "CUSTOM";
|
|
76
|
+
readonly OFFLINE: "OFFLINE";
|
|
77
|
+
readonly ROUTABLE: "ROUTABLE";
|
|
78
|
+
};
|
|
79
|
+
export type AgentStatusType =
|
|
80
|
+
(typeof AgentStatusType)[keyof typeof AgentStatusType];
|
|
72
81
|
export interface AgentStatus {
|
|
73
82
|
AgentStatusARN?: string;
|
|
74
83
|
AgentStatusId?: string;
|
|
@@ -90,10 +99,12 @@ export interface AgentStatusSummary {
|
|
|
90
99
|
Name?: string;
|
|
91
100
|
Type?: AgentStatusType | string;
|
|
92
101
|
}
|
|
93
|
-
export declare
|
|
94
|
-
BARGE
|
|
95
|
-
SILENT_MONITOR
|
|
96
|
-
}
|
|
102
|
+
export declare const MonitorCapability: {
|
|
103
|
+
readonly BARGE: "BARGE";
|
|
104
|
+
readonly SILENT_MONITOR: "SILENT_MONITOR";
|
|
105
|
+
};
|
|
106
|
+
export type MonitorCapability =
|
|
107
|
+
(typeof MonitorCapability)[keyof typeof MonitorCapability];
|
|
97
108
|
export interface AssociateApprovedOriginRequest {
|
|
98
109
|
InstanceId: string | undefined;
|
|
99
110
|
Origin: string | undefined;
|
|
@@ -174,57 +185,63 @@ export declare class LimitExceededException extends __BaseException {
|
|
|
174
185
|
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
175
186
|
);
|
|
176
187
|
}
|
|
177
|
-
export declare
|
|
178
|
-
AR_AE
|
|
179
|
-
DE_CH
|
|
180
|
-
DE_DE
|
|
181
|
-
EN_AB
|
|
182
|
-
EN_AU
|
|
183
|
-
EN_GB
|
|
184
|
-
EN_IE
|
|
185
|
-
EN_IN
|
|
186
|
-
EN_NZ
|
|
187
|
-
EN_US
|
|
188
|
-
EN_WL
|
|
189
|
-
EN_ZA
|
|
190
|
-
ES_ES
|
|
191
|
-
ES_US
|
|
192
|
-
FR_CA
|
|
193
|
-
FR_FR
|
|
194
|
-
HI_IN
|
|
195
|
-
IT_IT
|
|
196
|
-
JA_JP
|
|
197
|
-
KO_KR
|
|
198
|
-
PT_BR
|
|
199
|
-
PT_PT
|
|
200
|
-
ZH_CN
|
|
201
|
-
}
|
|
188
|
+
export declare const VocabularyLanguageCode: {
|
|
189
|
+
readonly AR_AE: "ar-AE";
|
|
190
|
+
readonly DE_CH: "de-CH";
|
|
191
|
+
readonly DE_DE: "de-DE";
|
|
192
|
+
readonly EN_AB: "en-AB";
|
|
193
|
+
readonly EN_AU: "en-AU";
|
|
194
|
+
readonly EN_GB: "en-GB";
|
|
195
|
+
readonly EN_IE: "en-IE";
|
|
196
|
+
readonly EN_IN: "en-IN";
|
|
197
|
+
readonly EN_NZ: "en-NZ";
|
|
198
|
+
readonly EN_US: "en-US";
|
|
199
|
+
readonly EN_WL: "en-WL";
|
|
200
|
+
readonly EN_ZA: "en-ZA";
|
|
201
|
+
readonly ES_ES: "es-ES";
|
|
202
|
+
readonly ES_US: "es-US";
|
|
203
|
+
readonly FR_CA: "fr-CA";
|
|
204
|
+
readonly FR_FR: "fr-FR";
|
|
205
|
+
readonly HI_IN: "hi-IN";
|
|
206
|
+
readonly IT_IT: "it-IT";
|
|
207
|
+
readonly JA_JP: "ja-JP";
|
|
208
|
+
readonly KO_KR: "ko-KR";
|
|
209
|
+
readonly PT_BR: "pt-BR";
|
|
210
|
+
readonly PT_PT: "pt-PT";
|
|
211
|
+
readonly ZH_CN: "zh-CN";
|
|
212
|
+
};
|
|
213
|
+
export type VocabularyLanguageCode =
|
|
214
|
+
(typeof VocabularyLanguageCode)[keyof typeof VocabularyLanguageCode];
|
|
202
215
|
export interface AssociateDefaultVocabularyRequest {
|
|
203
216
|
InstanceId: string | undefined;
|
|
204
217
|
LanguageCode: VocabularyLanguageCode | string | undefined;
|
|
205
218
|
VocabularyId?: string;
|
|
206
219
|
}
|
|
207
220
|
export interface AssociateDefaultVocabularyResponse {}
|
|
208
|
-
export declare
|
|
209
|
-
AGENT_EVENTS
|
|
210
|
-
ATTACHMENTS
|
|
211
|
-
CALL_RECORDINGS
|
|
212
|
-
CHAT_TRANSCRIPTS
|
|
213
|
-
CONTACT_EVALUATIONS
|
|
214
|
-
CONTACT_TRACE_RECORDS
|
|
215
|
-
MEDIA_STREAMS
|
|
216
|
-
REAL_TIME_CONTACT_ANALYSIS_SEGMENTS
|
|
217
|
-
SCHEDULED_REPORTS
|
|
218
|
-
}
|
|
221
|
+
export declare const InstanceStorageResourceType: {
|
|
222
|
+
readonly AGENT_EVENTS: "AGENT_EVENTS";
|
|
223
|
+
readonly ATTACHMENTS: "ATTACHMENTS";
|
|
224
|
+
readonly CALL_RECORDINGS: "CALL_RECORDINGS";
|
|
225
|
+
readonly CHAT_TRANSCRIPTS: "CHAT_TRANSCRIPTS";
|
|
226
|
+
readonly CONTACT_EVALUATIONS: "CONTACT_EVALUATIONS";
|
|
227
|
+
readonly CONTACT_TRACE_RECORDS: "CONTACT_TRACE_RECORDS";
|
|
228
|
+
readonly MEDIA_STREAMS: "MEDIA_STREAMS";
|
|
229
|
+
readonly REAL_TIME_CONTACT_ANALYSIS_SEGMENTS: "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS";
|
|
230
|
+
readonly SCHEDULED_REPORTS: "SCHEDULED_REPORTS";
|
|
231
|
+
};
|
|
232
|
+
export type InstanceStorageResourceType =
|
|
233
|
+
(typeof InstanceStorageResourceType)[keyof typeof InstanceStorageResourceType];
|
|
219
234
|
export interface KinesisFirehoseConfig {
|
|
220
235
|
FirehoseArn: string | undefined;
|
|
221
236
|
}
|
|
222
237
|
export interface KinesisStreamConfig {
|
|
223
238
|
StreamArn: string | undefined;
|
|
224
239
|
}
|
|
225
|
-
export declare
|
|
226
|
-
KMS
|
|
227
|
-
}
|
|
240
|
+
export declare const EncryptionType: {
|
|
241
|
+
readonly KMS: "KMS";
|
|
242
|
+
};
|
|
243
|
+
export type EncryptionType =
|
|
244
|
+
(typeof EncryptionType)[keyof typeof EncryptionType];
|
|
228
245
|
export interface EncryptionConfig {
|
|
229
246
|
EncryptionType: EncryptionType | string | undefined;
|
|
230
247
|
KeyId: string | undefined;
|
|
@@ -239,12 +256,13 @@ export interface S3Config {
|
|
|
239
256
|
BucketPrefix: string | undefined;
|
|
240
257
|
EncryptionConfig?: EncryptionConfig;
|
|
241
258
|
}
|
|
242
|
-
export declare
|
|
243
|
-
KINESIS_FIREHOSE
|
|
244
|
-
KINESIS_STREAM
|
|
245
|
-
KINESIS_VIDEO_STREAM
|
|
246
|
-
S3
|
|
247
|
-
}
|
|
259
|
+
export declare const StorageType: {
|
|
260
|
+
readonly KINESIS_FIREHOSE: "KINESIS_FIREHOSE";
|
|
261
|
+
readonly KINESIS_STREAM: "KINESIS_STREAM";
|
|
262
|
+
readonly KINESIS_VIDEO_STREAM: "KINESIS_VIDEO_STREAM";
|
|
263
|
+
readonly S3: "S3";
|
|
264
|
+
};
|
|
265
|
+
export type StorageType = (typeof StorageType)[keyof typeof StorageType];
|
|
248
266
|
export interface InstanceStorageConfig {
|
|
249
267
|
AssociationId?: string;
|
|
250
268
|
StorageType: StorageType | string | undefined;
|
|
@@ -339,17 +357,19 @@ export declare class DuplicateResourceException extends __BaseException {
|
|
|
339
357
|
opts: __ExceptionOptionType<DuplicateResourceException, __BaseException>
|
|
340
358
|
);
|
|
341
359
|
}
|
|
342
|
-
export declare
|
|
343
|
-
AGENT_HOLD
|
|
344
|
-
AGENT_TRANSFER
|
|
345
|
-
AGENT_WHISPER
|
|
346
|
-
CONTACT_FLOW
|
|
347
|
-
CUSTOMER_HOLD
|
|
348
|
-
CUSTOMER_QUEUE
|
|
349
|
-
CUSTOMER_WHISPER
|
|
350
|
-
OUTBOUND_WHISPER
|
|
351
|
-
QUEUE_TRANSFER
|
|
352
|
-
}
|
|
360
|
+
export declare const ContactFlowType: {
|
|
361
|
+
readonly AGENT_HOLD: "AGENT_HOLD";
|
|
362
|
+
readonly AGENT_TRANSFER: "AGENT_TRANSFER";
|
|
363
|
+
readonly AGENT_WHISPER: "AGENT_WHISPER";
|
|
364
|
+
readonly CONTACT_FLOW: "CONTACT_FLOW";
|
|
365
|
+
readonly CUSTOMER_HOLD: "CUSTOMER_HOLD";
|
|
366
|
+
readonly CUSTOMER_QUEUE: "CUSTOMER_QUEUE";
|
|
367
|
+
readonly CUSTOMER_WHISPER: "CUSTOMER_WHISPER";
|
|
368
|
+
readonly OUTBOUND_WHISPER: "OUTBOUND_WHISPER";
|
|
369
|
+
readonly QUEUE_TRANSFER: "QUEUE_TRANSFER";
|
|
370
|
+
};
|
|
371
|
+
export type ContactFlowType =
|
|
372
|
+
(typeof ContactFlowType)[keyof typeof ContactFlowType];
|
|
353
373
|
export interface CreateContactFlowRequest {
|
|
354
374
|
InstanceId: string | undefined;
|
|
355
375
|
Name: string | undefined;
|
|
@@ -396,15 +416,17 @@ export declare class InvalidContactFlowModuleException extends __BaseException {
|
|
|
396
416
|
>
|
|
397
417
|
);
|
|
398
418
|
}
|
|
399
|
-
export declare
|
|
400
|
-
FRIDAY
|
|
401
|
-
MONDAY
|
|
402
|
-
SATURDAY
|
|
403
|
-
SUNDAY
|
|
404
|
-
THURSDAY
|
|
405
|
-
TUESDAY
|
|
406
|
-
WEDNESDAY
|
|
407
|
-
}
|
|
419
|
+
export declare const HoursOfOperationDays: {
|
|
420
|
+
readonly FRIDAY: "FRIDAY";
|
|
421
|
+
readonly MONDAY: "MONDAY";
|
|
422
|
+
readonly SATURDAY: "SATURDAY";
|
|
423
|
+
readonly SUNDAY: "SUNDAY";
|
|
424
|
+
readonly THURSDAY: "THURSDAY";
|
|
425
|
+
readonly TUESDAY: "TUESDAY";
|
|
426
|
+
readonly WEDNESDAY: "WEDNESDAY";
|
|
427
|
+
};
|
|
428
|
+
export type HoursOfOperationDays =
|
|
429
|
+
(typeof HoursOfOperationDays)[keyof typeof HoursOfOperationDays];
|
|
408
430
|
export interface HoursOfOperationTimeSlice {
|
|
409
431
|
Hours: number | undefined;
|
|
410
432
|
Minutes: number | undefined;
|
|
@@ -426,11 +448,12 @@ export interface CreateHoursOfOperationResponse {
|
|
|
426
448
|
HoursOfOperationId?: string;
|
|
427
449
|
HoursOfOperationArn?: string;
|
|
428
450
|
}
|
|
429
|
-
export declare
|
|
430
|
-
CONNECT_MANAGED
|
|
431
|
-
EXISTING_DIRECTORY
|
|
432
|
-
SAML
|
|
433
|
-
}
|
|
451
|
+
export declare const DirectoryType: {
|
|
452
|
+
readonly CONNECT_MANAGED: "CONNECT_MANAGED";
|
|
453
|
+
readonly EXISTING_DIRECTORY: "EXISTING_DIRECTORY";
|
|
454
|
+
readonly SAML: "SAML";
|
|
455
|
+
};
|
|
456
|
+
export type DirectoryType = (typeof DirectoryType)[keyof typeof DirectoryType];
|
|
434
457
|
export interface CreateInstanceRequest {
|
|
435
458
|
ClientToken?: string;
|
|
436
459
|
IdentityManagementType: DirectoryType | string | undefined;
|
|
@@ -443,18 +466,21 @@ export interface CreateInstanceResponse {
|
|
|
443
466
|
Id?: string;
|
|
444
467
|
Arn?: string;
|
|
445
468
|
}
|
|
446
|
-
export declare
|
|
447
|
-
CASES_DOMAIN
|
|
448
|
-
EVENT
|
|
449
|
-
PINPOINT_APP
|
|
450
|
-
VOICE_ID
|
|
451
|
-
WISDOM_ASSISTANT
|
|
452
|
-
WISDOM_KNOWLEDGE_BASE
|
|
453
|
-
}
|
|
454
|
-
export
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
469
|
+
export declare const IntegrationType: {
|
|
470
|
+
readonly CASES_DOMAIN: "CASES_DOMAIN";
|
|
471
|
+
readonly EVENT: "EVENT";
|
|
472
|
+
readonly PINPOINT_APP: "PINPOINT_APP";
|
|
473
|
+
readonly VOICE_ID: "VOICE_ID";
|
|
474
|
+
readonly WISDOM_ASSISTANT: "WISDOM_ASSISTANT";
|
|
475
|
+
readonly WISDOM_KNOWLEDGE_BASE: "WISDOM_KNOWLEDGE_BASE";
|
|
476
|
+
};
|
|
477
|
+
export type IntegrationType =
|
|
478
|
+
(typeof IntegrationType)[keyof typeof IntegrationType];
|
|
479
|
+
export declare const SourceType: {
|
|
480
|
+
readonly SALESFORCE: "SALESFORCE";
|
|
481
|
+
readonly ZENDESK: "ZENDESK";
|
|
482
|
+
};
|
|
483
|
+
export type SourceType = (typeof SourceType)[keyof typeof SourceType];
|
|
458
484
|
export interface CreateIntegrationAssociationRequest {
|
|
459
485
|
InstanceId: string | undefined;
|
|
460
486
|
IntegrationType: IntegrationType | string | undefined;
|
|
@@ -494,11 +520,13 @@ export interface QueueQuickConnectConfig {
|
|
|
494
520
|
QueueId: string | undefined;
|
|
495
521
|
ContactFlowId: string | undefined;
|
|
496
522
|
}
|
|
497
|
-
export declare
|
|
498
|
-
PHONE_NUMBER
|
|
499
|
-
QUEUE
|
|
500
|
-
USER
|
|
501
|
-
}
|
|
523
|
+
export declare const QuickConnectType: {
|
|
524
|
+
readonly PHONE_NUMBER: "PHONE_NUMBER";
|
|
525
|
+
readonly QUEUE: "QUEUE";
|
|
526
|
+
readonly USER: "USER";
|
|
527
|
+
};
|
|
528
|
+
export type QuickConnectType =
|
|
529
|
+
(typeof QuickConnectType)[keyof typeof QuickConnectType];
|
|
502
530
|
export interface UserQuickConnectConfig {
|
|
503
531
|
UserId: string | undefined;
|
|
504
532
|
ContactFlowId: string | undefined;
|
|
@@ -541,12 +569,16 @@ export interface AssignContactCategoryActionDefinition {}
|
|
|
541
569
|
export interface EventBridgeActionDefinition {
|
|
542
570
|
Name: string | undefined;
|
|
543
571
|
}
|
|
544
|
-
export declare
|
|
545
|
-
PLAIN_TEXT
|
|
546
|
-
}
|
|
547
|
-
export
|
|
548
|
-
|
|
549
|
-
|
|
572
|
+
export declare const NotificationContentType: {
|
|
573
|
+
readonly PLAIN_TEXT: "PLAIN_TEXT";
|
|
574
|
+
};
|
|
575
|
+
export type NotificationContentType =
|
|
576
|
+
(typeof NotificationContentType)[keyof typeof NotificationContentType];
|
|
577
|
+
export declare const NotificationDeliveryType: {
|
|
578
|
+
readonly EMAIL: "EMAIL";
|
|
579
|
+
};
|
|
580
|
+
export type NotificationDeliveryType =
|
|
581
|
+
(typeof NotificationDeliveryType)[keyof typeof NotificationDeliveryType];
|
|
550
582
|
export interface NotificationRecipientType {
|
|
551
583
|
UserTags?: Record<string, string>;
|
|
552
584
|
UserIds?: string[];
|
|
@@ -558,14 +590,15 @@ export interface SendNotificationActionDefinition {
|
|
|
558
590
|
ContentType: NotificationContentType | string | undefined;
|
|
559
591
|
Recipient: NotificationRecipientType | undefined;
|
|
560
592
|
}
|
|
561
|
-
export declare
|
|
562
|
-
ATTACHMENT
|
|
563
|
-
DATE
|
|
564
|
-
EMAIL
|
|
565
|
-
NUMBER
|
|
566
|
-
STRING
|
|
567
|
-
URL
|
|
568
|
-
}
|
|
593
|
+
export declare const ReferenceType: {
|
|
594
|
+
readonly ATTACHMENT: "ATTACHMENT";
|
|
595
|
+
readonly DATE: "DATE";
|
|
596
|
+
readonly EMAIL: "EMAIL";
|
|
597
|
+
readonly NUMBER: "NUMBER";
|
|
598
|
+
readonly STRING: "STRING";
|
|
599
|
+
readonly URL: "URL";
|
|
600
|
+
};
|
|
601
|
+
export type ReferenceType = (typeof ReferenceType)[keyof typeof ReferenceType];
|
|
569
602
|
export interface Reference {
|
|
570
603
|
Value: string | undefined;
|
|
571
604
|
Type: ReferenceType | string | undefined;
|
|
@@ -583,18 +616,22 @@ export interface RuleAction {
|
|
|
583
616
|
AssignContactCategoryAction?: AssignContactCategoryActionDefinition;
|
|
584
617
|
SendNotificationAction?: SendNotificationActionDefinition;
|
|
585
618
|
}
|
|
586
|
-
export declare
|
|
587
|
-
DRAFT
|
|
588
|
-
PUBLISHED
|
|
589
|
-
}
|
|
590
|
-
export
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
619
|
+
export declare const RulePublishStatus: {
|
|
620
|
+
readonly DRAFT: "DRAFT";
|
|
621
|
+
readonly PUBLISHED: "PUBLISHED";
|
|
622
|
+
};
|
|
623
|
+
export type RulePublishStatus =
|
|
624
|
+
(typeof RulePublishStatus)[keyof typeof RulePublishStatus];
|
|
625
|
+
export declare const EventSourceName: {
|
|
626
|
+
readonly OnPostCallAnalysisAvailable: "OnPostCallAnalysisAvailable";
|
|
627
|
+
readonly OnPostChatAnalysisAvailable: "OnPostChatAnalysisAvailable";
|
|
628
|
+
readonly OnRealTimeCallAnalysisAvailable: "OnRealTimeCallAnalysisAvailable";
|
|
629
|
+
readonly OnSalesforceCaseCreate: "OnSalesforceCaseCreate";
|
|
630
|
+
readonly OnZendeskTicketCreate: "OnZendeskTicketCreate";
|
|
631
|
+
readonly OnZendeskTicketStatusUpdate: "OnZendeskTicketStatusUpdate";
|
|
632
|
+
};
|
|
633
|
+
export type EventSourceName =
|
|
634
|
+
(typeof EventSourceName)[keyof typeof EventSourceName];
|
|
598
635
|
export interface RuleTriggerEventSource {
|
|
599
636
|
EventSourceName: EventSourceName | string | undefined;
|
|
600
637
|
IntegrationAssociationId?: string;
|
|
@@ -649,30 +686,34 @@ export interface TaskTemplateDefaultFieldValue {
|
|
|
649
686
|
export interface TaskTemplateDefaults {
|
|
650
687
|
DefaultFieldValues?: TaskTemplateDefaultFieldValue[];
|
|
651
688
|
}
|
|
652
|
-
export declare
|
|
653
|
-
BOOLEAN
|
|
654
|
-
DATE_TIME
|
|
655
|
-
DESCRIPTION
|
|
656
|
-
EMAIL
|
|
657
|
-
NAME
|
|
658
|
-
NUMBER
|
|
659
|
-
QUICK_CONNECT
|
|
660
|
-
SCHEDULED_TIME
|
|
661
|
-
SINGLE_SELECT
|
|
662
|
-
TEXT
|
|
663
|
-
TEXT_AREA
|
|
664
|
-
URL
|
|
665
|
-
}
|
|
689
|
+
export declare const TaskTemplateFieldType: {
|
|
690
|
+
readonly BOOLEAN: "BOOLEAN";
|
|
691
|
+
readonly DATE_TIME: "DATE_TIME";
|
|
692
|
+
readonly DESCRIPTION: "DESCRIPTION";
|
|
693
|
+
readonly EMAIL: "EMAIL";
|
|
694
|
+
readonly NAME: "NAME";
|
|
695
|
+
readonly NUMBER: "NUMBER";
|
|
696
|
+
readonly QUICK_CONNECT: "QUICK_CONNECT";
|
|
697
|
+
readonly SCHEDULED_TIME: "SCHEDULED_TIME";
|
|
698
|
+
readonly SINGLE_SELECT: "SINGLE_SELECT";
|
|
699
|
+
readonly TEXT: "TEXT";
|
|
700
|
+
readonly TEXT_AREA: "TEXT_AREA";
|
|
701
|
+
readonly URL: "URL";
|
|
702
|
+
};
|
|
703
|
+
export type TaskTemplateFieldType =
|
|
704
|
+
(typeof TaskTemplateFieldType)[keyof typeof TaskTemplateFieldType];
|
|
666
705
|
export interface TaskTemplateField {
|
|
667
706
|
Id: TaskTemplateFieldIdentifier | undefined;
|
|
668
707
|
Description?: string;
|
|
669
708
|
Type?: TaskTemplateFieldType | string;
|
|
670
709
|
SingleSelectOptions?: string[];
|
|
671
710
|
}
|
|
672
|
-
export declare
|
|
673
|
-
ACTIVE
|
|
674
|
-
INACTIVE
|
|
675
|
-
}
|
|
711
|
+
export declare const TaskTemplateStatus: {
|
|
712
|
+
readonly ACTIVE: "ACTIVE";
|
|
713
|
+
readonly INACTIVE: "INACTIVE";
|
|
714
|
+
};
|
|
715
|
+
export type TaskTemplateStatus =
|
|
716
|
+
(typeof TaskTemplateStatus)[keyof typeof TaskTemplateStatus];
|
|
676
717
|
export interface CreateTaskTemplateRequest {
|
|
677
718
|
InstanceId: string | undefined;
|
|
678
719
|
Name: string | undefined;
|
|
@@ -688,14 +729,16 @@ export interface CreateTaskTemplateResponse {
|
|
|
688
729
|
Id: string | undefined;
|
|
689
730
|
Arn: string | undefined;
|
|
690
731
|
}
|
|
691
|
-
export declare
|
|
692
|
-
INVALID_FORMAT
|
|
693
|
-
NOT_SUPPORTED
|
|
694
|
-
REFERENCED_RESOURCE_NOT_FOUND
|
|
695
|
-
REQUIRED_PROPERTY_MISSING
|
|
696
|
-
RESOURCE_NAME_ALREADY_EXISTS
|
|
697
|
-
UNIQUE_CONSTRAINT_VIOLATED
|
|
698
|
-
}
|
|
732
|
+
export declare const PropertyValidationExceptionReason: {
|
|
733
|
+
readonly INVALID_FORMAT: "INVALID_FORMAT";
|
|
734
|
+
readonly NOT_SUPPORTED: "NOT_SUPPORTED";
|
|
735
|
+
readonly REFERENCED_RESOURCE_NOT_FOUND: "REFERENCED_RESOURCE_NOT_FOUND";
|
|
736
|
+
readonly REQUIRED_PROPERTY_MISSING: "REQUIRED_PROPERTY_MISSING";
|
|
737
|
+
readonly RESOURCE_NAME_ALREADY_EXISTS: "RESOURCE_NAME_ALREADY_EXISTS";
|
|
738
|
+
readonly UNIQUE_CONSTRAINT_VIOLATED: "UNIQUE_CONSTRAINT_VIOLATED";
|
|
739
|
+
};
|
|
740
|
+
export type PropertyValidationExceptionReason =
|
|
741
|
+
(typeof PropertyValidationExceptionReason)[keyof typeof PropertyValidationExceptionReason];
|
|
699
742
|
export interface PropertyValidationExceptionProperty {
|
|
700
743
|
PropertyPath: string | undefined;
|
|
701
744
|
Reason: PropertyValidationExceptionReason | string | undefined;
|
|
@@ -729,10 +772,11 @@ export declare class ResourceNotReadyException extends __BaseException {
|
|
|
729
772
|
opts: __ExceptionOptionType<ResourceNotReadyException, __BaseException>
|
|
730
773
|
);
|
|
731
774
|
}
|
|
732
|
-
export declare
|
|
733
|
-
CONNECT_CAMPAIGNS
|
|
734
|
-
RULES_EVALUATION
|
|
735
|
-
}
|
|
775
|
+
export declare const UseCaseType: {
|
|
776
|
+
readonly CONNECT_CAMPAIGNS: "CONNECT_CAMPAIGNS";
|
|
777
|
+
readonly RULES_EVALUATION: "RULES_EVALUATION";
|
|
778
|
+
};
|
|
779
|
+
export type UseCaseType = (typeof UseCaseType)[keyof typeof UseCaseType];
|
|
736
780
|
export interface CreateUseCaseRequest {
|
|
737
781
|
InstanceId: string | undefined;
|
|
738
782
|
IntegrationAssociationId: string | undefined;
|
|
@@ -750,10 +794,11 @@ export interface UserIdentityInfo {
|
|
|
750
794
|
SecondaryEmail?: string;
|
|
751
795
|
Mobile?: string;
|
|
752
796
|
}
|
|
753
|
-
export declare
|
|
754
|
-
DESK_PHONE
|
|
755
|
-
SOFT_PHONE
|
|
756
|
-
}
|
|
797
|
+
export declare const PhoneType: {
|
|
798
|
+
readonly DESK_PHONE: "DESK_PHONE";
|
|
799
|
+
readonly SOFT_PHONE: "SOFT_PHONE";
|
|
800
|
+
};
|
|
801
|
+
export type PhoneType = (typeof PhoneType)[keyof typeof PhoneType];
|
|
757
802
|
export interface UserPhoneConfig {
|
|
758
803
|
PhoneType: PhoneType | string | undefined;
|
|
759
804
|
AutoAccept?: boolean;
|
|
@@ -794,12 +839,14 @@ export interface CreateVocabularyRequest {
|
|
|
794
839
|
Content: string | undefined;
|
|
795
840
|
Tags?: Record<string, string>;
|
|
796
841
|
}
|
|
797
|
-
export declare
|
|
798
|
-
ACTIVE
|
|
799
|
-
CREATION_FAILED
|
|
800
|
-
CREATION_IN_PROGRESS
|
|
801
|
-
DELETE_IN_PROGRESS
|
|
802
|
-
}
|
|
842
|
+
export declare const VocabularyState: {
|
|
843
|
+
readonly ACTIVE: "ACTIVE";
|
|
844
|
+
readonly CREATION_FAILED: "CREATION_FAILED";
|
|
845
|
+
readonly CREATION_IN_PROGRESS: "CREATION_IN_PROGRESS";
|
|
846
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
847
|
+
};
|
|
848
|
+
export type VocabularyState =
|
|
849
|
+
(typeof VocabularyState)[keyof typeof VocabularyState];
|
|
803
850
|
export interface CreateVocabularyResponse {
|
|
804
851
|
VocabularyArn: string | undefined;
|
|
805
852
|
VocabularyId: string | undefined;
|
|
@@ -838,15 +885,16 @@ export interface DeleteSecurityProfileRequest {
|
|
|
838
885
|
InstanceId: string | undefined;
|
|
839
886
|
SecurityProfileId: string | undefined;
|
|
840
887
|
}
|
|
841
|
-
export declare
|
|
842
|
-
CONTACT
|
|
843
|
-
CONTACT_FLOW
|
|
844
|
-
HIERARCHY_GROUP
|
|
845
|
-
HIERARCHY_LEVEL
|
|
846
|
-
INSTANCE
|
|
847
|
-
PARTICIPANT
|
|
848
|
-
USER
|
|
849
|
-
}
|
|
888
|
+
export declare const ResourceType: {
|
|
889
|
+
readonly CONTACT: "CONTACT";
|
|
890
|
+
readonly CONTACT_FLOW: "CONTACT_FLOW";
|
|
891
|
+
readonly HIERARCHY_GROUP: "HIERARCHY_GROUP";
|
|
892
|
+
readonly HIERARCHY_LEVEL: "HIERARCHY_LEVEL";
|
|
893
|
+
readonly INSTANCE: "INSTANCE";
|
|
894
|
+
readonly PARTICIPANT: "PARTICIPANT";
|
|
895
|
+
readonly USER: "USER";
|
|
896
|
+
};
|
|
897
|
+
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
850
898
|
export declare class ResourceInUseException extends __BaseException {
|
|
851
899
|
readonly name: "ResourceInUseException";
|
|
852
900
|
readonly $fault: "client";
|
|
@@ -942,10 +990,12 @@ export interface DescribeContactFlowRequest {
|
|
|
942
990
|
InstanceId: string | undefined;
|
|
943
991
|
ContactFlowId: string | undefined;
|
|
944
992
|
}
|
|
945
|
-
export declare
|
|
946
|
-
ACTIVE
|
|
947
|
-
ARCHIVED
|
|
948
|
-
}
|
|
993
|
+
export declare const ContactFlowState: {
|
|
994
|
+
readonly ACTIVE: "ACTIVE";
|
|
995
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
996
|
+
};
|
|
997
|
+
export type ContactFlowState =
|
|
998
|
+
(typeof ContactFlowState)[keyof typeof ContactFlowState];
|
|
949
999
|
export interface ContactFlow {
|
|
950
1000
|
Arn?: string;
|
|
951
1001
|
Id?: string;
|
|
@@ -963,14 +1013,18 @@ export interface DescribeContactFlowModuleRequest {
|
|
|
963
1013
|
InstanceId: string | undefined;
|
|
964
1014
|
ContactFlowModuleId: string | undefined;
|
|
965
1015
|
}
|
|
966
|
-
export declare
|
|
967
|
-
ACTIVE
|
|
968
|
-
ARCHIVED
|
|
969
|
-
}
|
|
970
|
-
export
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
1016
|
+
export declare const ContactFlowModuleState: {
|
|
1017
|
+
readonly ACTIVE: "ACTIVE";
|
|
1018
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
1019
|
+
};
|
|
1020
|
+
export type ContactFlowModuleState =
|
|
1021
|
+
(typeof ContactFlowModuleState)[keyof typeof ContactFlowModuleState];
|
|
1022
|
+
export declare const ContactFlowModuleStatus: {
|
|
1023
|
+
readonly PUBLISHED: "PUBLISHED";
|
|
1024
|
+
readonly SAVED: "SAVED";
|
|
1025
|
+
};
|
|
1026
|
+
export type ContactFlowModuleStatus =
|
|
1027
|
+
(typeof ContactFlowModuleStatus)[keyof typeof ContactFlowModuleStatus];
|
|
974
1028
|
export interface ContactFlowModule {
|
|
975
1029
|
Arn?: string;
|
|
976
1030
|
Id?: string;
|
|
@@ -1003,11 +1057,13 @@ export interface DescribeHoursOfOperationResponse {
|
|
|
1003
1057
|
export interface DescribeInstanceRequest {
|
|
1004
1058
|
InstanceId: string | undefined;
|
|
1005
1059
|
}
|
|
1006
|
-
export declare
|
|
1007
|
-
ACTIVE
|
|
1008
|
-
CREATION_FAILED
|
|
1009
|
-
CREATION_IN_PROGRESS
|
|
1010
|
-
}
|
|
1060
|
+
export declare const InstanceStatus: {
|
|
1061
|
+
readonly ACTIVE: "ACTIVE";
|
|
1062
|
+
readonly CREATION_FAILED: "CREATION_FAILED";
|
|
1063
|
+
readonly CREATION_IN_PROGRESS: "CREATION_IN_PROGRESS";
|
|
1064
|
+
};
|
|
1065
|
+
export type InstanceStatus =
|
|
1066
|
+
(typeof InstanceStatus)[keyof typeof InstanceStatus];
|
|
1011
1067
|
export interface InstanceStatusReason {
|
|
1012
1068
|
Message?: string;
|
|
1013
1069
|
}
|
|
@@ -1026,18 +1082,20 @@ export interface Instance {
|
|
|
1026
1082
|
export interface DescribeInstanceResponse {
|
|
1027
1083
|
Instance?: Instance;
|
|
1028
1084
|
}
|
|
1029
|
-
export declare
|
|
1030
|
-
AUTO_RESOLVE_BEST_VOICES
|
|
1031
|
-
CONTACTFLOW_LOGS
|
|
1032
|
-
CONTACT_LENS
|
|
1033
|
-
EARLY_MEDIA
|
|
1034
|
-
ENHANCED_CONTACT_MONITORING
|
|
1035
|
-
HIGH_VOLUME_OUTBOUND
|
|
1036
|
-
INBOUND_CALLS
|
|
1037
|
-
MULTI_PARTY_CONFERENCE
|
|
1038
|
-
OUTBOUND_CALLS
|
|
1039
|
-
USE_CUSTOM_TTS_VOICES
|
|
1040
|
-
}
|
|
1085
|
+
export declare const InstanceAttributeType: {
|
|
1086
|
+
readonly AUTO_RESOLVE_BEST_VOICES: "AUTO_RESOLVE_BEST_VOICES";
|
|
1087
|
+
readonly CONTACTFLOW_LOGS: "CONTACTFLOW_LOGS";
|
|
1088
|
+
readonly CONTACT_LENS: "CONTACT_LENS";
|
|
1089
|
+
readonly EARLY_MEDIA: "EARLY_MEDIA";
|
|
1090
|
+
readonly ENHANCED_CONTACT_MONITORING: "ENHANCED_CONTACT_MONITORING";
|
|
1091
|
+
readonly HIGH_VOLUME_OUTBOUND: "HIGH_VOLUME_OUTBOUND";
|
|
1092
|
+
readonly INBOUND_CALLS: "INBOUND_CALLS";
|
|
1093
|
+
readonly MULTI_PARTY_CONFERENCE: "MULTI_PARTY_CONFERENCE";
|
|
1094
|
+
readonly OUTBOUND_CALLS: "OUTBOUND_CALLS";
|
|
1095
|
+
readonly USE_CUSTOM_TTS_VOICES: "USE_CUSTOM_TTS_VOICES";
|
|
1096
|
+
};
|
|
1097
|
+
export type InstanceAttributeType =
|
|
1098
|
+
(typeof InstanceAttributeType)[keyof typeof InstanceAttributeType];
|
|
1041
1099
|
export interface DescribeInstanceAttributeRequest {
|
|
1042
1100
|
InstanceId: string | undefined;
|
|
1043
1101
|
AttributeType: InstanceAttributeType | string | undefined;
|
|
@@ -1060,258 +1118,264 @@ export interface DescribeInstanceStorageConfigResponse {
|
|
|
1060
1118
|
export interface DescribePhoneNumberRequest {
|
|
1061
1119
|
PhoneNumberId: string | undefined;
|
|
1062
1120
|
}
|
|
1063
|
-
export declare
|
|
1064
|
-
AD
|
|
1065
|
-
AE
|
|
1066
|
-
AF
|
|
1067
|
-
AG
|
|
1068
|
-
AI
|
|
1069
|
-
AL
|
|
1070
|
-
AM
|
|
1071
|
-
AN
|
|
1072
|
-
AO
|
|
1073
|
-
AQ
|
|
1074
|
-
AR
|
|
1075
|
-
AS
|
|
1076
|
-
AT
|
|
1077
|
-
AU
|
|
1078
|
-
AW
|
|
1079
|
-
AZ
|
|
1080
|
-
BA
|
|
1081
|
-
BB
|
|
1082
|
-
BD
|
|
1083
|
-
BE
|
|
1084
|
-
BF
|
|
1085
|
-
BG
|
|
1086
|
-
BH
|
|
1087
|
-
BI
|
|
1088
|
-
BJ
|
|
1089
|
-
BL
|
|
1090
|
-
BM
|
|
1091
|
-
BN
|
|
1092
|
-
BO
|
|
1093
|
-
BR
|
|
1094
|
-
BS
|
|
1095
|
-
BT
|
|
1096
|
-
BW
|
|
1097
|
-
BY
|
|
1098
|
-
BZ
|
|
1099
|
-
CA
|
|
1100
|
-
CC
|
|
1101
|
-
CD
|
|
1102
|
-
CF
|
|
1103
|
-
CG
|
|
1104
|
-
CH
|
|
1105
|
-
CI
|
|
1106
|
-
CK
|
|
1107
|
-
CL
|
|
1108
|
-
CM
|
|
1109
|
-
CN
|
|
1110
|
-
CO
|
|
1111
|
-
CR
|
|
1112
|
-
CU
|
|
1113
|
-
CV
|
|
1114
|
-
CW
|
|
1115
|
-
CX
|
|
1116
|
-
CY
|
|
1117
|
-
CZ
|
|
1118
|
-
DE
|
|
1119
|
-
DJ
|
|
1120
|
-
DK
|
|
1121
|
-
DM
|
|
1122
|
-
DO
|
|
1123
|
-
DZ
|
|
1124
|
-
EC
|
|
1125
|
-
EE
|
|
1126
|
-
EG
|
|
1127
|
-
EH
|
|
1128
|
-
ER
|
|
1129
|
-
ES
|
|
1130
|
-
ET
|
|
1131
|
-
FI
|
|
1132
|
-
FJ
|
|
1133
|
-
FK
|
|
1134
|
-
FM
|
|
1135
|
-
FO
|
|
1136
|
-
FR
|
|
1137
|
-
GA
|
|
1138
|
-
GB
|
|
1139
|
-
GD
|
|
1140
|
-
GE
|
|
1141
|
-
GG
|
|
1142
|
-
GH
|
|
1143
|
-
GI
|
|
1144
|
-
GL
|
|
1145
|
-
GM
|
|
1146
|
-
GN
|
|
1147
|
-
GQ
|
|
1148
|
-
GR
|
|
1149
|
-
GT
|
|
1150
|
-
GU
|
|
1151
|
-
GW
|
|
1152
|
-
GY
|
|
1153
|
-
HK
|
|
1154
|
-
HN
|
|
1155
|
-
HR
|
|
1156
|
-
HT
|
|
1157
|
-
HU
|
|
1158
|
-
ID
|
|
1159
|
-
IE
|
|
1160
|
-
IL
|
|
1161
|
-
IM
|
|
1162
|
-
IN
|
|
1163
|
-
IO
|
|
1164
|
-
IQ
|
|
1165
|
-
IR
|
|
1166
|
-
IS
|
|
1167
|
-
IT
|
|
1168
|
-
JE
|
|
1169
|
-
JM
|
|
1170
|
-
JO
|
|
1171
|
-
JP
|
|
1172
|
-
KE
|
|
1173
|
-
KG
|
|
1174
|
-
KH
|
|
1175
|
-
KI
|
|
1176
|
-
KM
|
|
1177
|
-
KN
|
|
1178
|
-
KP
|
|
1179
|
-
KR
|
|
1180
|
-
KW
|
|
1181
|
-
KY
|
|
1182
|
-
KZ
|
|
1183
|
-
LA
|
|
1184
|
-
LB
|
|
1185
|
-
LC
|
|
1186
|
-
LI
|
|
1187
|
-
LK
|
|
1188
|
-
LR
|
|
1189
|
-
LS
|
|
1190
|
-
LT
|
|
1191
|
-
LU
|
|
1192
|
-
LV
|
|
1193
|
-
LY
|
|
1194
|
-
MA
|
|
1195
|
-
MC
|
|
1196
|
-
MD
|
|
1197
|
-
ME
|
|
1198
|
-
MF
|
|
1199
|
-
MG
|
|
1200
|
-
MH
|
|
1201
|
-
MK
|
|
1202
|
-
ML
|
|
1203
|
-
MM
|
|
1204
|
-
MN
|
|
1205
|
-
MO
|
|
1206
|
-
MP
|
|
1207
|
-
MR
|
|
1208
|
-
MS
|
|
1209
|
-
MT
|
|
1210
|
-
MU
|
|
1211
|
-
MV
|
|
1212
|
-
MW
|
|
1213
|
-
MX
|
|
1214
|
-
MY
|
|
1215
|
-
MZ
|
|
1216
|
-
NA
|
|
1217
|
-
NC
|
|
1218
|
-
NE
|
|
1219
|
-
NG
|
|
1220
|
-
NI
|
|
1221
|
-
NL
|
|
1222
|
-
NO
|
|
1223
|
-
NP
|
|
1224
|
-
NR
|
|
1225
|
-
NU
|
|
1226
|
-
NZ
|
|
1227
|
-
OM
|
|
1228
|
-
PA
|
|
1229
|
-
PE
|
|
1230
|
-
PF
|
|
1231
|
-
PG
|
|
1232
|
-
PH
|
|
1233
|
-
PK
|
|
1234
|
-
PL
|
|
1235
|
-
PM
|
|
1236
|
-
PN
|
|
1237
|
-
PR
|
|
1238
|
-
PT
|
|
1239
|
-
PW
|
|
1240
|
-
PY
|
|
1241
|
-
QA
|
|
1242
|
-
RE
|
|
1243
|
-
RO
|
|
1244
|
-
RS
|
|
1245
|
-
RU
|
|
1246
|
-
RW
|
|
1247
|
-
SA
|
|
1248
|
-
SB
|
|
1249
|
-
SC
|
|
1250
|
-
SD
|
|
1251
|
-
SE
|
|
1252
|
-
SG
|
|
1253
|
-
SH
|
|
1254
|
-
SI
|
|
1255
|
-
SJ
|
|
1256
|
-
SK
|
|
1257
|
-
SL
|
|
1258
|
-
SM
|
|
1259
|
-
SN
|
|
1260
|
-
SO
|
|
1261
|
-
SR
|
|
1262
|
-
ST
|
|
1263
|
-
SV
|
|
1264
|
-
SX
|
|
1265
|
-
SY
|
|
1266
|
-
SZ
|
|
1267
|
-
TC
|
|
1268
|
-
TD
|
|
1269
|
-
TG
|
|
1270
|
-
TH
|
|
1271
|
-
TJ
|
|
1272
|
-
TK
|
|
1273
|
-
TL
|
|
1274
|
-
TM
|
|
1275
|
-
TN
|
|
1276
|
-
TO
|
|
1277
|
-
TR
|
|
1278
|
-
TT
|
|
1279
|
-
TV
|
|
1280
|
-
TW
|
|
1281
|
-
TZ
|
|
1282
|
-
UA
|
|
1283
|
-
UG
|
|
1284
|
-
US
|
|
1285
|
-
UY
|
|
1286
|
-
UZ
|
|
1287
|
-
VA
|
|
1288
|
-
VC
|
|
1289
|
-
VE
|
|
1290
|
-
VG
|
|
1291
|
-
VI
|
|
1292
|
-
VN
|
|
1293
|
-
VU
|
|
1294
|
-
WF
|
|
1295
|
-
WS
|
|
1296
|
-
YE
|
|
1297
|
-
YT
|
|
1298
|
-
ZA
|
|
1299
|
-
ZM
|
|
1300
|
-
ZW
|
|
1301
|
-
}
|
|
1302
|
-
export
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1121
|
+
export declare const PhoneNumberCountryCode: {
|
|
1122
|
+
readonly AD: "AD";
|
|
1123
|
+
readonly AE: "AE";
|
|
1124
|
+
readonly AF: "AF";
|
|
1125
|
+
readonly AG: "AG";
|
|
1126
|
+
readonly AI: "AI";
|
|
1127
|
+
readonly AL: "AL";
|
|
1128
|
+
readonly AM: "AM";
|
|
1129
|
+
readonly AN: "AN";
|
|
1130
|
+
readonly AO: "AO";
|
|
1131
|
+
readonly AQ: "AQ";
|
|
1132
|
+
readonly AR: "AR";
|
|
1133
|
+
readonly AS: "AS";
|
|
1134
|
+
readonly AT: "AT";
|
|
1135
|
+
readonly AU: "AU";
|
|
1136
|
+
readonly AW: "AW";
|
|
1137
|
+
readonly AZ: "AZ";
|
|
1138
|
+
readonly BA: "BA";
|
|
1139
|
+
readonly BB: "BB";
|
|
1140
|
+
readonly BD: "BD";
|
|
1141
|
+
readonly BE: "BE";
|
|
1142
|
+
readonly BF: "BF";
|
|
1143
|
+
readonly BG: "BG";
|
|
1144
|
+
readonly BH: "BH";
|
|
1145
|
+
readonly BI: "BI";
|
|
1146
|
+
readonly BJ: "BJ";
|
|
1147
|
+
readonly BL: "BL";
|
|
1148
|
+
readonly BM: "BM";
|
|
1149
|
+
readonly BN: "BN";
|
|
1150
|
+
readonly BO: "BO";
|
|
1151
|
+
readonly BR: "BR";
|
|
1152
|
+
readonly BS: "BS";
|
|
1153
|
+
readonly BT: "BT";
|
|
1154
|
+
readonly BW: "BW";
|
|
1155
|
+
readonly BY: "BY";
|
|
1156
|
+
readonly BZ: "BZ";
|
|
1157
|
+
readonly CA: "CA";
|
|
1158
|
+
readonly CC: "CC";
|
|
1159
|
+
readonly CD: "CD";
|
|
1160
|
+
readonly CF: "CF";
|
|
1161
|
+
readonly CG: "CG";
|
|
1162
|
+
readonly CH: "CH";
|
|
1163
|
+
readonly CI: "CI";
|
|
1164
|
+
readonly CK: "CK";
|
|
1165
|
+
readonly CL: "CL";
|
|
1166
|
+
readonly CM: "CM";
|
|
1167
|
+
readonly CN: "CN";
|
|
1168
|
+
readonly CO: "CO";
|
|
1169
|
+
readonly CR: "CR";
|
|
1170
|
+
readonly CU: "CU";
|
|
1171
|
+
readonly CV: "CV";
|
|
1172
|
+
readonly CW: "CW";
|
|
1173
|
+
readonly CX: "CX";
|
|
1174
|
+
readonly CY: "CY";
|
|
1175
|
+
readonly CZ: "CZ";
|
|
1176
|
+
readonly DE: "DE";
|
|
1177
|
+
readonly DJ: "DJ";
|
|
1178
|
+
readonly DK: "DK";
|
|
1179
|
+
readonly DM: "DM";
|
|
1180
|
+
readonly DO: "DO";
|
|
1181
|
+
readonly DZ: "DZ";
|
|
1182
|
+
readonly EC: "EC";
|
|
1183
|
+
readonly EE: "EE";
|
|
1184
|
+
readonly EG: "EG";
|
|
1185
|
+
readonly EH: "EH";
|
|
1186
|
+
readonly ER: "ER";
|
|
1187
|
+
readonly ES: "ES";
|
|
1188
|
+
readonly ET: "ET";
|
|
1189
|
+
readonly FI: "FI";
|
|
1190
|
+
readonly FJ: "FJ";
|
|
1191
|
+
readonly FK: "FK";
|
|
1192
|
+
readonly FM: "FM";
|
|
1193
|
+
readonly FO: "FO";
|
|
1194
|
+
readonly FR: "FR";
|
|
1195
|
+
readonly GA: "GA";
|
|
1196
|
+
readonly GB: "GB";
|
|
1197
|
+
readonly GD: "GD";
|
|
1198
|
+
readonly GE: "GE";
|
|
1199
|
+
readonly GG: "GG";
|
|
1200
|
+
readonly GH: "GH";
|
|
1201
|
+
readonly GI: "GI";
|
|
1202
|
+
readonly GL: "GL";
|
|
1203
|
+
readonly GM: "GM";
|
|
1204
|
+
readonly GN: "GN";
|
|
1205
|
+
readonly GQ: "GQ";
|
|
1206
|
+
readonly GR: "GR";
|
|
1207
|
+
readonly GT: "GT";
|
|
1208
|
+
readonly GU: "GU";
|
|
1209
|
+
readonly GW: "GW";
|
|
1210
|
+
readonly GY: "GY";
|
|
1211
|
+
readonly HK: "HK";
|
|
1212
|
+
readonly HN: "HN";
|
|
1213
|
+
readonly HR: "HR";
|
|
1214
|
+
readonly HT: "HT";
|
|
1215
|
+
readonly HU: "HU";
|
|
1216
|
+
readonly ID: "ID";
|
|
1217
|
+
readonly IE: "IE";
|
|
1218
|
+
readonly IL: "IL";
|
|
1219
|
+
readonly IM: "IM";
|
|
1220
|
+
readonly IN: "IN";
|
|
1221
|
+
readonly IO: "IO";
|
|
1222
|
+
readonly IQ: "IQ";
|
|
1223
|
+
readonly IR: "IR";
|
|
1224
|
+
readonly IS: "IS";
|
|
1225
|
+
readonly IT: "IT";
|
|
1226
|
+
readonly JE: "JE";
|
|
1227
|
+
readonly JM: "JM";
|
|
1228
|
+
readonly JO: "JO";
|
|
1229
|
+
readonly JP: "JP";
|
|
1230
|
+
readonly KE: "KE";
|
|
1231
|
+
readonly KG: "KG";
|
|
1232
|
+
readonly KH: "KH";
|
|
1233
|
+
readonly KI: "KI";
|
|
1234
|
+
readonly KM: "KM";
|
|
1235
|
+
readonly KN: "KN";
|
|
1236
|
+
readonly KP: "KP";
|
|
1237
|
+
readonly KR: "KR";
|
|
1238
|
+
readonly KW: "KW";
|
|
1239
|
+
readonly KY: "KY";
|
|
1240
|
+
readonly KZ: "KZ";
|
|
1241
|
+
readonly LA: "LA";
|
|
1242
|
+
readonly LB: "LB";
|
|
1243
|
+
readonly LC: "LC";
|
|
1244
|
+
readonly LI: "LI";
|
|
1245
|
+
readonly LK: "LK";
|
|
1246
|
+
readonly LR: "LR";
|
|
1247
|
+
readonly LS: "LS";
|
|
1248
|
+
readonly LT: "LT";
|
|
1249
|
+
readonly LU: "LU";
|
|
1250
|
+
readonly LV: "LV";
|
|
1251
|
+
readonly LY: "LY";
|
|
1252
|
+
readonly MA: "MA";
|
|
1253
|
+
readonly MC: "MC";
|
|
1254
|
+
readonly MD: "MD";
|
|
1255
|
+
readonly ME: "ME";
|
|
1256
|
+
readonly MF: "MF";
|
|
1257
|
+
readonly MG: "MG";
|
|
1258
|
+
readonly MH: "MH";
|
|
1259
|
+
readonly MK: "MK";
|
|
1260
|
+
readonly ML: "ML";
|
|
1261
|
+
readonly MM: "MM";
|
|
1262
|
+
readonly MN: "MN";
|
|
1263
|
+
readonly MO: "MO";
|
|
1264
|
+
readonly MP: "MP";
|
|
1265
|
+
readonly MR: "MR";
|
|
1266
|
+
readonly MS: "MS";
|
|
1267
|
+
readonly MT: "MT";
|
|
1268
|
+
readonly MU: "MU";
|
|
1269
|
+
readonly MV: "MV";
|
|
1270
|
+
readonly MW: "MW";
|
|
1271
|
+
readonly MX: "MX";
|
|
1272
|
+
readonly MY: "MY";
|
|
1273
|
+
readonly MZ: "MZ";
|
|
1274
|
+
readonly NA: "NA";
|
|
1275
|
+
readonly NC: "NC";
|
|
1276
|
+
readonly NE: "NE";
|
|
1277
|
+
readonly NG: "NG";
|
|
1278
|
+
readonly NI: "NI";
|
|
1279
|
+
readonly NL: "NL";
|
|
1280
|
+
readonly NO: "NO";
|
|
1281
|
+
readonly NP: "NP";
|
|
1282
|
+
readonly NR: "NR";
|
|
1283
|
+
readonly NU: "NU";
|
|
1284
|
+
readonly NZ: "NZ";
|
|
1285
|
+
readonly OM: "OM";
|
|
1286
|
+
readonly PA: "PA";
|
|
1287
|
+
readonly PE: "PE";
|
|
1288
|
+
readonly PF: "PF";
|
|
1289
|
+
readonly PG: "PG";
|
|
1290
|
+
readonly PH: "PH";
|
|
1291
|
+
readonly PK: "PK";
|
|
1292
|
+
readonly PL: "PL";
|
|
1293
|
+
readonly PM: "PM";
|
|
1294
|
+
readonly PN: "PN";
|
|
1295
|
+
readonly PR: "PR";
|
|
1296
|
+
readonly PT: "PT";
|
|
1297
|
+
readonly PW: "PW";
|
|
1298
|
+
readonly PY: "PY";
|
|
1299
|
+
readonly QA: "QA";
|
|
1300
|
+
readonly RE: "RE";
|
|
1301
|
+
readonly RO: "RO";
|
|
1302
|
+
readonly RS: "RS";
|
|
1303
|
+
readonly RU: "RU";
|
|
1304
|
+
readonly RW: "RW";
|
|
1305
|
+
readonly SA: "SA";
|
|
1306
|
+
readonly SB: "SB";
|
|
1307
|
+
readonly SC: "SC";
|
|
1308
|
+
readonly SD: "SD";
|
|
1309
|
+
readonly SE: "SE";
|
|
1310
|
+
readonly SG: "SG";
|
|
1311
|
+
readonly SH: "SH";
|
|
1312
|
+
readonly SI: "SI";
|
|
1313
|
+
readonly SJ: "SJ";
|
|
1314
|
+
readonly SK: "SK";
|
|
1315
|
+
readonly SL: "SL";
|
|
1316
|
+
readonly SM: "SM";
|
|
1317
|
+
readonly SN: "SN";
|
|
1318
|
+
readonly SO: "SO";
|
|
1319
|
+
readonly SR: "SR";
|
|
1320
|
+
readonly ST: "ST";
|
|
1321
|
+
readonly SV: "SV";
|
|
1322
|
+
readonly SX: "SX";
|
|
1323
|
+
readonly SY: "SY";
|
|
1324
|
+
readonly SZ: "SZ";
|
|
1325
|
+
readonly TC: "TC";
|
|
1326
|
+
readonly TD: "TD";
|
|
1327
|
+
readonly TG: "TG";
|
|
1328
|
+
readonly TH: "TH";
|
|
1329
|
+
readonly TJ: "TJ";
|
|
1330
|
+
readonly TK: "TK";
|
|
1331
|
+
readonly TL: "TL";
|
|
1332
|
+
readonly TM: "TM";
|
|
1333
|
+
readonly TN: "TN";
|
|
1334
|
+
readonly TO: "TO";
|
|
1335
|
+
readonly TR: "TR";
|
|
1336
|
+
readonly TT: "TT";
|
|
1337
|
+
readonly TV: "TV";
|
|
1338
|
+
readonly TW: "TW";
|
|
1339
|
+
readonly TZ: "TZ";
|
|
1340
|
+
readonly UA: "UA";
|
|
1341
|
+
readonly UG: "UG";
|
|
1342
|
+
readonly US: "US";
|
|
1343
|
+
readonly UY: "UY";
|
|
1344
|
+
readonly UZ: "UZ";
|
|
1345
|
+
readonly VA: "VA";
|
|
1346
|
+
readonly VC: "VC";
|
|
1347
|
+
readonly VE: "VE";
|
|
1348
|
+
readonly VG: "VG";
|
|
1349
|
+
readonly VI: "VI";
|
|
1350
|
+
readonly VN: "VN";
|
|
1351
|
+
readonly VU: "VU";
|
|
1352
|
+
readonly WF: "WF";
|
|
1353
|
+
readonly WS: "WS";
|
|
1354
|
+
readonly YE: "YE";
|
|
1355
|
+
readonly YT: "YT";
|
|
1356
|
+
readonly ZA: "ZA";
|
|
1357
|
+
readonly ZM: "ZM";
|
|
1358
|
+
readonly ZW: "ZW";
|
|
1359
|
+
};
|
|
1360
|
+
export type PhoneNumberCountryCode =
|
|
1361
|
+
(typeof PhoneNumberCountryCode)[keyof typeof PhoneNumberCountryCode];
|
|
1362
|
+
export declare const PhoneNumberWorkflowStatus: {
|
|
1363
|
+
readonly Claimed: "CLAIMED";
|
|
1364
|
+
readonly Failed: "FAILED";
|
|
1365
|
+
readonly InProgress: "IN_PROGRESS";
|
|
1366
|
+
};
|
|
1367
|
+
export type PhoneNumberWorkflowStatus =
|
|
1368
|
+
(typeof PhoneNumberWorkflowStatus)[keyof typeof PhoneNumberWorkflowStatus];
|
|
1307
1369
|
export interface PhoneNumberStatus {
|
|
1308
1370
|
Status?: PhoneNumberWorkflowStatus | string;
|
|
1309
1371
|
Message?: string;
|
|
1310
1372
|
}
|
|
1311
|
-
export declare
|
|
1312
|
-
DID
|
|
1313
|
-
TOLL_FREE
|
|
1314
|
-
}
|
|
1373
|
+
export declare const PhoneNumberType: {
|
|
1374
|
+
readonly DID: "DID";
|
|
1375
|
+
readonly TOLL_FREE: "TOLL_FREE";
|
|
1376
|
+
};
|
|
1377
|
+
export type PhoneNumberType =
|
|
1378
|
+
(typeof PhoneNumberType)[keyof typeof PhoneNumberType];
|
|
1315
1379
|
export interface ClaimedPhoneNumberSummary {
|
|
1316
1380
|
PhoneNumberId?: string;
|
|
1317
1381
|
PhoneNumberArn?: string;
|
|
@@ -1330,10 +1394,11 @@ export interface DescribeQueueRequest {
|
|
|
1330
1394
|
InstanceId: string | undefined;
|
|
1331
1395
|
QueueId: string | undefined;
|
|
1332
1396
|
}
|
|
1333
|
-
export declare
|
|
1334
|
-
DISABLED
|
|
1335
|
-
ENABLED
|
|
1336
|
-
}
|
|
1397
|
+
export declare const QueueStatus: {
|
|
1398
|
+
readonly DISABLED: "DISABLED";
|
|
1399
|
+
readonly ENABLED: "ENABLED";
|
|
1400
|
+
};
|
|
1401
|
+
export type QueueStatus = (typeof QueueStatus)[keyof typeof QueueStatus];
|
|
1337
1402
|
export interface Queue {
|
|
1338
1403
|
Name?: string;
|
|
1339
1404
|
QueueArn?: string;
|
|
@@ -1422,14 +1487,16 @@ export interface DescribeSecurityProfileResponse {
|
|
|
1422
1487
|
export interface DescribeTrafficDistributionGroupRequest {
|
|
1423
1488
|
TrafficDistributionGroupId: string | undefined;
|
|
1424
1489
|
}
|
|
1425
|
-
export declare
|
|
1426
|
-
ACTIVE
|
|
1427
|
-
CREATION_FAILED
|
|
1428
|
-
CREATION_IN_PROGRESS
|
|
1429
|
-
DELETION_FAILED
|
|
1430
|
-
PENDING_DELETION
|
|
1431
|
-
UPDATE_IN_PROGRESS
|
|
1432
|
-
}
|
|
1490
|
+
export declare const TrafficDistributionGroupStatus: {
|
|
1491
|
+
readonly ACTIVE: "ACTIVE";
|
|
1492
|
+
readonly CREATION_FAILED: "CREATION_FAILED";
|
|
1493
|
+
readonly CREATION_IN_PROGRESS: "CREATION_IN_PROGRESS";
|
|
1494
|
+
readonly DELETION_FAILED: "DELETION_FAILED";
|
|
1495
|
+
readonly PENDING_DELETION: "PENDING_DELETION";
|
|
1496
|
+
readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
|
|
1497
|
+
};
|
|
1498
|
+
export type TrafficDistributionGroupStatus =
|
|
1499
|
+
(typeof TrafficDistributionGroupStatus)[keyof typeof TrafficDistributionGroupStatus];
|
|
1433
1500
|
export interface TrafficDistributionGroup {
|
|
1434
1501
|
Id?: string;
|
|
1435
1502
|
Arn?: string;
|
|
@@ -1578,26 +1645,29 @@ export interface GetContactAttributesRequest {
|
|
|
1578
1645
|
export interface GetContactAttributesResponse {
|
|
1579
1646
|
Attributes?: Record<string, string>;
|
|
1580
1647
|
}
|
|
1581
|
-
export declare
|
|
1582
|
-
AGENTS_AFTER_CONTACT_WORK
|
|
1583
|
-
AGENTS_AVAILABLE
|
|
1584
|
-
AGENTS_ERROR
|
|
1585
|
-
AGENTS_NON_PRODUCTIVE
|
|
1586
|
-
AGENTS_ONLINE
|
|
1587
|
-
AGENTS_ON_CALL
|
|
1588
|
-
AGENTS_ON_CONTACT
|
|
1589
|
-
AGENTS_STAFFED
|
|
1590
|
-
CONTACTS_IN_QUEUE
|
|
1591
|
-
CONTACTS_SCHEDULED
|
|
1592
|
-
OLDEST_CONTACT_AGE
|
|
1593
|
-
SLOTS_ACTIVE
|
|
1594
|
-
SLOTS_AVAILABLE
|
|
1595
|
-
}
|
|
1596
|
-
export
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
|
|
1648
|
+
export declare const CurrentMetricName: {
|
|
1649
|
+
readonly AGENTS_AFTER_CONTACT_WORK: "AGENTS_AFTER_CONTACT_WORK";
|
|
1650
|
+
readonly AGENTS_AVAILABLE: "AGENTS_AVAILABLE";
|
|
1651
|
+
readonly AGENTS_ERROR: "AGENTS_ERROR";
|
|
1652
|
+
readonly AGENTS_NON_PRODUCTIVE: "AGENTS_NON_PRODUCTIVE";
|
|
1653
|
+
readonly AGENTS_ONLINE: "AGENTS_ONLINE";
|
|
1654
|
+
readonly AGENTS_ON_CALL: "AGENTS_ON_CALL";
|
|
1655
|
+
readonly AGENTS_ON_CONTACT: "AGENTS_ON_CONTACT";
|
|
1656
|
+
readonly AGENTS_STAFFED: "AGENTS_STAFFED";
|
|
1657
|
+
readonly CONTACTS_IN_QUEUE: "CONTACTS_IN_QUEUE";
|
|
1658
|
+
readonly CONTACTS_SCHEDULED: "CONTACTS_SCHEDULED";
|
|
1659
|
+
readonly OLDEST_CONTACT_AGE: "OLDEST_CONTACT_AGE";
|
|
1660
|
+
readonly SLOTS_ACTIVE: "SLOTS_ACTIVE";
|
|
1661
|
+
readonly SLOTS_AVAILABLE: "SLOTS_AVAILABLE";
|
|
1662
|
+
};
|
|
1663
|
+
export type CurrentMetricName =
|
|
1664
|
+
(typeof CurrentMetricName)[keyof typeof CurrentMetricName];
|
|
1665
|
+
export declare const Unit: {
|
|
1666
|
+
readonly COUNT: "COUNT";
|
|
1667
|
+
readonly PERCENT: "PERCENT";
|
|
1668
|
+
readonly SECONDS: "SECONDS";
|
|
1669
|
+
};
|
|
1670
|
+
export type Unit = (typeof Unit)[keyof typeof Unit];
|
|
1601
1671
|
export interface CurrentMetric {
|
|
1602
1672
|
Name?: CurrentMetricName | string;
|
|
1603
1673
|
Unit?: Unit | string;
|
|
@@ -1607,15 +1677,17 @@ export interface Filters {
|
|
|
1607
1677
|
Channels?: (Channel | string)[];
|
|
1608
1678
|
RoutingProfiles?: string[];
|
|
1609
1679
|
}
|
|
1610
|
-
export declare
|
|
1611
|
-
CHANNEL
|
|
1612
|
-
QUEUE
|
|
1613
|
-
ROUTING_PROFILE
|
|
1614
|
-
}
|
|
1615
|
-
export
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1680
|
+
export declare const Grouping: {
|
|
1681
|
+
readonly CHANNEL: "CHANNEL";
|
|
1682
|
+
readonly QUEUE: "QUEUE";
|
|
1683
|
+
readonly ROUTING_PROFILE: "ROUTING_PROFILE";
|
|
1684
|
+
};
|
|
1685
|
+
export type Grouping = (typeof Grouping)[keyof typeof Grouping];
|
|
1686
|
+
export declare const SortOrder: {
|
|
1687
|
+
readonly ASCENDING: "ASCENDING";
|
|
1688
|
+
readonly DESCENDING: "DESCENDING";
|
|
1689
|
+
};
|
|
1690
|
+
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
1619
1691
|
export interface CurrentMetricSortCriteria {
|
|
1620
1692
|
SortByMetric?: CurrentMetricName | string;
|
|
1621
1693
|
SortOrder?: SortOrder | string;
|
|
@@ -1722,41 +1794,45 @@ export declare class UserNotFoundException extends __BaseException {
|
|
|
1722
1794
|
opts: __ExceptionOptionType<UserNotFoundException, __BaseException>
|
|
1723
1795
|
);
|
|
1724
1796
|
}
|
|
1725
|
-
export declare
|
|
1726
|
-
ABANDON_TIME
|
|
1727
|
-
AFTER_CONTACT_WORK_TIME
|
|
1728
|
-
API_CONTACTS_HANDLED
|
|
1729
|
-
CALLBACK_CONTACTS_HANDLED
|
|
1730
|
-
CONTACTS_ABANDONED
|
|
1731
|
-
CONTACTS_AGENT_HUNG_UP_FIRST
|
|
1732
|
-
CONTACTS_CONSULTED
|
|
1733
|
-
CONTACTS_HANDLED
|
|
1734
|
-
CONTACTS_HANDLED_INCOMING
|
|
1735
|
-
CONTACTS_HANDLED_OUTBOUND
|
|
1736
|
-
CONTACTS_HOLD_ABANDONS
|
|
1737
|
-
CONTACTS_MISSED
|
|
1738
|
-
CONTACTS_QUEUED
|
|
1739
|
-
CONTACTS_TRANSFERRED_IN
|
|
1740
|
-
CONTACTS_TRANSFERRED_IN_FROM_QUEUE
|
|
1741
|
-
CONTACTS_TRANSFERRED_OUT
|
|
1742
|
-
CONTACTS_TRANSFERRED_OUT_FROM_QUEUE
|
|
1743
|
-
HANDLE_TIME
|
|
1744
|
-
HOLD_TIME
|
|
1745
|
-
INTERACTION_AND_HOLD_TIME
|
|
1746
|
-
INTERACTION_TIME
|
|
1747
|
-
OCCUPANCY
|
|
1748
|
-
QUEUED_TIME
|
|
1749
|
-
QUEUE_ANSWER_TIME
|
|
1750
|
-
SERVICE_LEVEL
|
|
1751
|
-
}
|
|
1752
|
-
export
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1797
|
+
export declare const HistoricalMetricName: {
|
|
1798
|
+
readonly ABANDON_TIME: "ABANDON_TIME";
|
|
1799
|
+
readonly AFTER_CONTACT_WORK_TIME: "AFTER_CONTACT_WORK_TIME";
|
|
1800
|
+
readonly API_CONTACTS_HANDLED: "API_CONTACTS_HANDLED";
|
|
1801
|
+
readonly CALLBACK_CONTACTS_HANDLED: "CALLBACK_CONTACTS_HANDLED";
|
|
1802
|
+
readonly CONTACTS_ABANDONED: "CONTACTS_ABANDONED";
|
|
1803
|
+
readonly CONTACTS_AGENT_HUNG_UP_FIRST: "CONTACTS_AGENT_HUNG_UP_FIRST";
|
|
1804
|
+
readonly CONTACTS_CONSULTED: "CONTACTS_CONSULTED";
|
|
1805
|
+
readonly CONTACTS_HANDLED: "CONTACTS_HANDLED";
|
|
1806
|
+
readonly CONTACTS_HANDLED_INCOMING: "CONTACTS_HANDLED_INCOMING";
|
|
1807
|
+
readonly CONTACTS_HANDLED_OUTBOUND: "CONTACTS_HANDLED_OUTBOUND";
|
|
1808
|
+
readonly CONTACTS_HOLD_ABANDONS: "CONTACTS_HOLD_ABANDONS";
|
|
1809
|
+
readonly CONTACTS_MISSED: "CONTACTS_MISSED";
|
|
1810
|
+
readonly CONTACTS_QUEUED: "CONTACTS_QUEUED";
|
|
1811
|
+
readonly CONTACTS_TRANSFERRED_IN: "CONTACTS_TRANSFERRED_IN";
|
|
1812
|
+
readonly CONTACTS_TRANSFERRED_IN_FROM_QUEUE: "CONTACTS_TRANSFERRED_IN_FROM_QUEUE";
|
|
1813
|
+
readonly CONTACTS_TRANSFERRED_OUT: "CONTACTS_TRANSFERRED_OUT";
|
|
1814
|
+
readonly CONTACTS_TRANSFERRED_OUT_FROM_QUEUE: "CONTACTS_TRANSFERRED_OUT_FROM_QUEUE";
|
|
1815
|
+
readonly HANDLE_TIME: "HANDLE_TIME";
|
|
1816
|
+
readonly HOLD_TIME: "HOLD_TIME";
|
|
1817
|
+
readonly INTERACTION_AND_HOLD_TIME: "INTERACTION_AND_HOLD_TIME";
|
|
1818
|
+
readonly INTERACTION_TIME: "INTERACTION_TIME";
|
|
1819
|
+
readonly OCCUPANCY: "OCCUPANCY";
|
|
1820
|
+
readonly QUEUED_TIME: "QUEUED_TIME";
|
|
1821
|
+
readonly QUEUE_ANSWER_TIME: "QUEUE_ANSWER_TIME";
|
|
1822
|
+
readonly SERVICE_LEVEL: "SERVICE_LEVEL";
|
|
1823
|
+
};
|
|
1824
|
+
export type HistoricalMetricName =
|
|
1825
|
+
(typeof HistoricalMetricName)[keyof typeof HistoricalMetricName];
|
|
1826
|
+
export declare const Statistic: {
|
|
1827
|
+
readonly AVG: "AVG";
|
|
1828
|
+
readonly MAX: "MAX";
|
|
1829
|
+
readonly SUM: "SUM";
|
|
1830
|
+
};
|
|
1831
|
+
export type Statistic = (typeof Statistic)[keyof typeof Statistic];
|
|
1832
|
+
export declare const Comparison: {
|
|
1833
|
+
readonly LT: "LT";
|
|
1834
|
+
};
|
|
1835
|
+
export type Comparison = (typeof Comparison)[keyof typeof Comparison];
|
|
1760
1836
|
export interface Threshold {
|
|
1761
1837
|
Comparison?: Comparison | string;
|
|
1762
1838
|
ThresholdValue?: number;
|
|
@@ -1882,10 +1958,11 @@ export interface ListApprovedOriginsResponse {
|
|
|
1882
1958
|
Origins?: string[];
|
|
1883
1959
|
NextToken?: string;
|
|
1884
1960
|
}
|
|
1885
|
-
export declare
|
|
1886
|
-
V1
|
|
1887
|
-
V2
|
|
1888
|
-
}
|
|
1961
|
+
export declare const LexVersion: {
|
|
1962
|
+
readonly V1: "V1";
|
|
1963
|
+
readonly V2: "V2";
|
|
1964
|
+
};
|
|
1965
|
+
export type LexVersion = (typeof LexVersion)[keyof typeof LexVersion];
|
|
1889
1966
|
export interface ListBotsRequest {
|
|
1890
1967
|
InstanceId: string | undefined;
|
|
1891
1968
|
NextToken?: string;
|