@aws-sdk/client-connect 3.104.0 → 3.105.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.
Files changed (54) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/dist-cjs/Connect.js +15 -0
  3. package/dist-cjs/ConnectClient.js +2 -0
  4. package/dist-cjs/commands/GetCurrentUserDataCommand.js +36 -0
  5. package/dist-cjs/commands/ListQueuesCommand.js +3 -3
  6. package/dist-cjs/commands/ListQuickConnectsCommand.js +3 -3
  7. package/dist-cjs/commands/ListRoutingProfileQueuesCommand.js +3 -3
  8. package/dist-cjs/commands/ListRoutingProfilesCommand.js +3 -3
  9. package/dist-cjs/commands/index.js +1 -0
  10. package/dist-cjs/models/models_0.js +105 -98
  11. package/dist-cjs/models/models_1.js +74 -3
  12. package/dist-cjs/pagination/GetCurrentUserDataPaginator.js +36 -0
  13. package/dist-cjs/pagination/index.js +1 -0
  14. package/dist-cjs/protocols/Aws_restJson1.js +244 -5
  15. package/dist-es/Connect.js +15 -0
  16. package/dist-es/ConnectClient.js +2 -0
  17. package/dist-es/commands/GetCurrentUserDataCommand.js +39 -0
  18. package/dist-es/commands/ListQueuesCommand.js +1 -1
  19. package/dist-es/commands/ListQuickConnectsCommand.js +1 -1
  20. package/dist-es/commands/ListRoutingProfileQueuesCommand.js +1 -1
  21. package/dist-es/commands/ListRoutingProfilesCommand.js +1 -1
  22. package/dist-es/commands/index.js +1 -0
  23. package/dist-es/models/models_0.js +75 -68
  24. package/dist-es/models/models_1.js +49 -0
  25. package/dist-es/pagination/GetCurrentUserDataPaginator.js +75 -0
  26. package/dist-es/pagination/index.js +1 -0
  27. package/dist-es/protocols/Aws_restJson1.js +256 -0
  28. package/dist-types/Connect.d.ts +7 -0
  29. package/dist-types/ConnectClient.d.ts +3 -2
  30. package/dist-types/commands/GetCurrentUserDataCommand.d.ts +35 -0
  31. package/dist-types/commands/ListQueuesCommand.d.ts +1 -1
  32. package/dist-types/commands/ListQuickConnectsCommand.d.ts +1 -1
  33. package/dist-types/commands/ListRoutingProfileQueuesCommand.d.ts +1 -1
  34. package/dist-types/commands/ListRoutingProfilesCommand.d.ts +1 -1
  35. package/dist-types/commands/index.d.ts +1 -0
  36. package/dist-types/models/models_0.d.ts +344 -370
  37. package/dist-types/models/models_1.d.ts +266 -30
  38. package/dist-types/pagination/GetCurrentUserDataPaginator.d.ts +4 -0
  39. package/dist-types/pagination/index.d.ts +1 -0
  40. package/dist-types/protocols/Aws_restJson1.d.ts +3 -0
  41. package/dist-types/ts3.4/Connect.d.ts +5 -0
  42. package/dist-types/ts3.4/ConnectClient.d.ts +3 -2
  43. package/dist-types/ts3.4/commands/GetCurrentUserDataCommand.d.ts +17 -0
  44. package/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +1 -1
  45. package/dist-types/ts3.4/commands/ListQuickConnectsCommand.d.ts +1 -1
  46. package/dist-types/ts3.4/commands/ListRoutingProfileQueuesCommand.d.ts +1 -1
  47. package/dist-types/ts3.4/commands/ListRoutingProfilesCommand.d.ts +1 -1
  48. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  49. package/dist-types/ts3.4/models/models_0.d.ts +212 -253
  50. package/dist-types/ts3.4/models/models_1.d.ts +155 -28
  51. package/dist-types/ts3.4/pagination/GetCurrentUserDataPaginator.d.ts +4 -0
  52. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  53. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +3 -0
  54. package/package.json +4 -3
@@ -8,6 +8,62 @@ export declare class AccessDeniedException extends __BaseException {
8
8
 
9
9
  constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
10
10
  }
11
+ export declare enum ContactState {
12
+ CONNECTED = "CONNECTED",
13
+ CONNECTED_ONHOLD = "CONNECTED_ONHOLD",
14
+ CONNECTING = "CONNECTING",
15
+ ENDED = "ENDED",
16
+ ERROR = "ERROR",
17
+ INCOMING = "INCOMING",
18
+ MISSED = "MISSED",
19
+ PENDING = "PENDING",
20
+ REJECTED = "REJECTED"
21
+ }
22
+ export declare enum Channel {
23
+ CHAT = "CHAT",
24
+ TASK = "TASK",
25
+ VOICE = "VOICE"
26
+ }
27
+ export declare enum ContactInitiationMethod {
28
+ API = "API",
29
+ CALLBACK = "CALLBACK",
30
+ INBOUND = "INBOUND",
31
+ OUTBOUND = "OUTBOUND",
32
+ QUEUE_TRANSFER = "QUEUE_TRANSFER",
33
+ TRANSFER = "TRANSFER"
34
+ }
35
+
36
+ export interface QueueReference {
37
+
38
+ Id?: string;
39
+
40
+ Arn?: string;
41
+ }
42
+ export declare namespace QueueReference {
43
+
44
+ const filterSensitiveLog: (obj: QueueReference) => any;
45
+ }
46
+
47
+ export interface AgentContactReference {
48
+
49
+ ContactId?: string;
50
+
51
+ Channel?: Channel | string;
52
+
53
+ InitiationMethod?: ContactInitiationMethod | string;
54
+
55
+ AgentContactState?: ContactState | string;
56
+
57
+ StateStartTimestamp?: Date;
58
+
59
+ ConnectedToAgentTimestamp?: Date;
60
+
61
+ Queue?: QueueReference;
62
+ }
63
+ export declare namespace AgentContactReference {
64
+
65
+ const filterSensitiveLog: (obj: AgentContactReference) => any;
66
+ }
11
67
 
12
68
  export interface AgentInfo {
13
69
 
@@ -45,15 +101,24 @@ export interface AgentStatus {
45
101
 
46
102
  State?: AgentStatusState | string;
47
103
 
48
- Tags?: {
49
- [key: string]: string;
50
- };
104
+ Tags?: Record<string, string>;
51
105
  }
52
106
  export declare namespace AgentStatus {
53
107
 
54
108
  const filterSensitiveLog: (obj: AgentStatus) => any;
55
109
  }
56
110
 
111
+ export interface AgentStatusReference {
112
+
113
+ StatusStartTimestamp?: Date;
114
+
115
+ StatusArn?: string;
116
+ }
117
+ export declare namespace AgentStatusReference {
118
+
119
+ const filterSensitiveLog: (obj: AgentStatusReference) => any;
120
+ }
121
+
57
122
  export interface AgentStatusSummary {
58
123
 
59
124
  Id?: string;
@@ -376,11 +441,6 @@ export declare namespace AssociateQueueQuickConnectsRequest {
376
441
 
377
442
  const filterSensitiveLog: (obj: AssociateQueueQuickConnectsRequest) => any;
378
443
  }
379
- export declare enum Channel {
380
- CHAT = "CHAT",
381
- TASK = "TASK",
382
- VOICE = "VOICE"
383
- }
384
444
 
385
445
  export interface RoutingProfileQueueReference {
386
446
 
@@ -443,9 +503,7 @@ export interface ClaimPhoneNumberRequest {
443
503
 
444
504
  PhoneNumberDescription?: string;
445
505
 
446
- Tags?: {
447
- [key: string]: string;
448
- };
506
+ Tags?: Record<string, string>;
449
507
 
450
508
  ClientToken?: string;
451
509
  }
@@ -483,9 +541,7 @@ export interface CreateAgentStatusRequest {
483
541
 
484
542
  DisplayOrder?: number;
485
543
 
486
- Tags?: {
487
- [key: string]: string;
488
- };
544
+ Tags?: Record<string, string>;
489
545
  }
490
546
  export declare namespace CreateAgentStatusRequest {
491
547
 
@@ -532,9 +588,7 @@ export interface CreateContactFlowRequest {
532
588
 
533
589
  Content: string | undefined;
534
590
 
535
- Tags?: {
536
- [key: string]: string;
537
- };
591
+ Tags?: Record<string, string>;
538
592
  }
539
593
  export declare namespace CreateContactFlowRequest {
540
594
 
@@ -578,9 +632,7 @@ export interface CreateContactFlowModuleRequest {
578
632
 
579
633
  Content: string | undefined;
580
634
 
581
- Tags?: {
582
- [key: string]: string;
583
- };
635
+ Tags?: Record<string, string>;
584
636
 
585
637
  ClientToken?: string;
586
638
  }
@@ -651,9 +703,7 @@ export interface CreateHoursOfOperationRequest {
651
703
 
652
704
  Config: HoursOfOperationConfig[] | undefined;
653
705
 
654
- Tags?: {
655
- [key: string]: string;
656
- };
706
+ Tags?: Record<string, string>;
657
707
  }
658
708
  export declare namespace CreateHoursOfOperationRequest {
659
709
 
@@ -727,9 +777,7 @@ export interface CreateIntegrationAssociationRequest {
727
777
 
728
778
  SourceType?: SourceType | string;
729
779
 
730
- Tags?: {
731
- [key: string]: string;
732
- };
780
+ Tags?: Record<string, string>;
733
781
  }
734
782
  export declare namespace CreateIntegrationAssociationRequest {
735
783
 
@@ -774,9 +822,7 @@ export interface CreateQueueRequest {
774
822
 
775
823
  QuickConnectIds?: string[];
776
824
 
777
- Tags?: {
778
- [key: string]: string;
779
- };
825
+ Tags?: Record<string, string>;
780
826
  }
781
827
  export declare namespace CreateQueueRequest {
782
828
 
@@ -853,9 +899,7 @@ export interface CreateQuickConnectRequest {
853
899
 
854
900
  QuickConnectConfig: QuickConnectConfig | undefined;
855
901
 
856
- Tags?: {
857
- [key: string]: string;
858
- };
902
+ Tags?: Record<string, string>;
859
903
  }
860
904
  export declare namespace CreateQuickConnectRequest {
861
905
 
@@ -896,9 +940,7 @@ export interface CreateRoutingProfileRequest {
896
940
 
897
941
  MediaConcurrencies: MediaConcurrency[] | undefined;
898
942
 
899
- Tags?: {
900
- [key: string]: string;
901
- };
943
+ Tags?: Record<string, string>;
902
944
  }
903
945
  export declare namespace CreateRoutingProfileRequest {
904
946
 
@@ -924,9 +966,7 @@ export interface CreateSecurityProfileRequest {
924
966
 
925
967
  InstanceId: string | undefined;
926
968
 
927
- Tags?: {
928
- [key: string]: string;
929
- };
969
+ Tags?: Record<string, string>;
930
970
  }
931
971
  export declare namespace CreateSecurityProfileRequest {
932
972
 
@@ -1120,9 +1160,7 @@ export interface CreateUseCaseRequest {
1120
1160
 
1121
1161
  UseCaseType: UseCaseType | string | undefined;
1122
1162
 
1123
- Tags?: {
1124
- [key: string]: string;
1125
- };
1163
+ Tags?: Record<string, string>;
1126
1164
  }
1127
1165
  export declare namespace CreateUseCaseRequest {
1128
1166
 
@@ -1190,9 +1228,7 @@ export interface CreateUserRequest {
1190
1228
 
1191
1229
  InstanceId: string | undefined;
1192
1230
 
1193
- Tags?: {
1194
- [key: string]: string;
1195
- };
1231
+ Tags?: Record<string, string>;
1196
1232
  }
1197
1233
  export declare namespace CreateUserRequest {
1198
1234
 
@@ -1216,9 +1252,7 @@ export interface CreateUserHierarchyGroupRequest {
1216
1252
 
1217
1253
  InstanceId: string | undefined;
1218
1254
 
1219
- Tags?: {
1220
- [key: string]: string;
1221
- };
1255
+ Tags?: Record<string, string>;
1222
1256
  }
1223
1257
  export declare namespace CreateUserHierarchyGroupRequest {
1224
1258
 
@@ -1246,9 +1280,7 @@ export interface CreateVocabularyRequest {
1246
1280
 
1247
1281
  Content: string | undefined;
1248
1282
 
1249
- Tags?: {
1250
- [key: string]: string;
1251
- };
1283
+ Tags?: Record<string, string>;
1252
1284
  }
1253
1285
  export declare namespace CreateVocabularyRequest {
1254
1286
 
@@ -1465,14 +1497,6 @@ export declare namespace DescribeContactRequest {
1465
1497
 
1466
1498
  const filterSensitiveLog: (obj: DescribeContactRequest) => any;
1467
1499
  }
1468
- export declare enum ContactInitiationMethod {
1469
- API = "API",
1470
- CALLBACK = "CALLBACK",
1471
- INBOUND = "INBOUND",
1472
- OUTBOUND = "OUTBOUND",
1473
- QUEUE_TRANSFER = "QUEUE_TRANSFER",
1474
- TRANSFER = "TRANSFER"
1475
- }
1476
1500
 
1477
1501
  export interface QueueInfo {
1478
1502
 
@@ -1566,9 +1590,7 @@ export interface ContactFlow {
1566
1590
 
1567
1591
  Content?: string;
1568
1592
 
1569
- Tags?: {
1570
- [key: string]: string;
1571
- };
1593
+ Tags?: Record<string, string>;
1572
1594
  }
1573
1595
  export declare namespace ContactFlow {
1574
1596
 
@@ -1617,9 +1639,7 @@ export interface ContactFlowModule {
1617
1639
 
1618
1640
  Status?: ContactFlowModuleStatus | string;
1619
1641
 
1620
- Tags?: {
1621
- [key: string]: string;
1622
- };
1642
+ Tags?: Record<string, string>;
1623
1643
  }
1624
1644
  export declare namespace ContactFlowModule {
1625
1645
 
@@ -1658,9 +1678,7 @@ export interface HoursOfOperation {
1658
1678
 
1659
1679
  Config?: HoursOfOperationConfig[];
1660
1680
 
1661
- Tags?: {
1662
- [key: string]: string;
1663
- };
1681
+ Tags?: Record<string, string>;
1664
1682
  }
1665
1683
  export declare namespace HoursOfOperation {
1666
1684
 
@@ -2074,9 +2092,7 @@ export interface ClaimedPhoneNumberSummary {
2074
2092
 
2075
2093
  TargetArn?: string;
2076
2094
 
2077
- Tags?: {
2078
- [key: string]: string;
2079
- };
2095
+ Tags?: Record<string, string>;
2080
2096
 
2081
2097
  PhoneNumberStatus?: PhoneNumberStatus;
2082
2098
  }
@@ -2125,9 +2141,7 @@ export interface Queue {
2125
2141
 
2126
2142
  Status?: QueueStatus | string;
2127
2143
 
2128
- Tags?: {
2129
- [key: string]: string;
2130
- };
2144
+ Tags?: Record<string, string>;
2131
2145
  }
2132
2146
  export declare namespace Queue {
2133
2147
 
@@ -2164,9 +2178,7 @@ export interface QuickConnect {
2164
2178
 
2165
2179
  QuickConnectConfig?: QuickConnectConfig;
2166
2180
 
2167
- Tags?: {
2168
- [key: string]: string;
2169
- };
2181
+ Tags?: Record<string, string>;
2170
2182
  }
2171
2183
  export declare namespace QuickConnect {
2172
2184
 
@@ -2207,9 +2219,7 @@ export interface RoutingProfile {
2207
2219
 
2208
2220
  DefaultOutboundQueueId?: string;
2209
2221
 
2210
- Tags?: {
2211
- [key: string]: string;
2212
- };
2222
+ Tags?: Record<string, string>;
2213
2223
  }
2214
2224
  export declare namespace RoutingProfile {
2215
2225
 
@@ -2246,9 +2256,7 @@ export interface SecurityProfile {
2246
2256
 
2247
2257
  Description?: string;
2248
2258
 
2249
- Tags?: {
2250
- [key: string]: string;
2251
- };
2259
+ Tags?: Record<string, string>;
2252
2260
  }
2253
2261
  export declare namespace SecurityProfile {
2254
2262
 
@@ -2293,9 +2301,7 @@ export interface User {
2293
2301
 
2294
2302
  HierarchyGroupId?: string;
2295
2303
 
2296
- Tags?: {
2297
- [key: string]: string;
2298
- };
2304
+ Tags?: Record<string, string>;
2299
2305
  }
2300
2306
  export declare namespace User {
2301
2307
 
@@ -2362,9 +2368,7 @@ export interface HierarchyGroup {
2362
2368
 
2363
2369
  HierarchyPath?: HierarchyPath;
2364
2370
 
2365
- Tags?: {
2366
- [key: string]: string;
2367
- };
2371
+ Tags?: Record<string, string>;
2368
2372
  }
2369
2373
  export declare namespace HierarchyGroup {
2370
2374
 
@@ -2453,9 +2457,7 @@ export interface Vocabulary {
2453
2457
 
2454
2458
  Content?: string;
2455
2459
 
2456
- Tags?: {
2457
- [key: string]: string;
2458
- };
2460
+ Tags?: Record<string, string>;
2459
2461
  }
2460
2462
  export declare namespace Vocabulary {
2461
2463
 
@@ -2581,9 +2583,7 @@ export declare namespace GetContactAttributesRequest {
2581
2583
  }
2582
2584
  export interface GetContactAttributesResponse {
2583
2585
 
2584
- Attributes?: {
2585
- [key: string]: string;
2586
- };
2586
+ Attributes?: Record<string, string>;
2587
2587
  }
2588
2588
  export declare namespace GetContactAttributesResponse {
2589
2589
 
@@ -2665,17 +2665,6 @@ export declare namespace CurrentMetricData {
2665
2665
  const filterSensitiveLog: (obj: CurrentMetricData) => any;
2666
2666
  }
2667
2667
 
2668
- export interface QueueReference {
2669
-
2670
- Id?: string;
2671
-
2672
- Arn?: string;
2673
- }
2674
- export declare namespace QueueReference {
2675
-
2676
- const filterSensitiveLog: (obj: QueueReference) => any;
2677
- }
2678
-
2679
2668
  export interface Dimensions {
2680
2669
 
2681
2670
  Queue?: QueueReference;
@@ -2709,6 +2698,123 @@ export declare namespace GetCurrentMetricDataResponse {
2709
2698
 
2710
2699
  const filterSensitiveLog: (obj: GetCurrentMetricDataResponse) => any;
2711
2700
  }
2701
+
2702
+ export interface ContactFilter {
2703
+
2704
+ ContactStates?: (ContactState | string)[];
2705
+ }
2706
+ export declare namespace ContactFilter {
2707
+
2708
+ const filterSensitiveLog: (obj: ContactFilter) => any;
2709
+ }
2710
+
2711
+ export interface UserDataFilters {
2712
+
2713
+ Queues?: string[];
2714
+
2715
+ ContactFilter?: ContactFilter;
2716
+ }
2717
+ export declare namespace UserDataFilters {
2718
+
2719
+ const filterSensitiveLog: (obj: UserDataFilters) => any;
2720
+ }
2721
+ export interface GetCurrentUserDataRequest {
2722
+
2723
+ InstanceId: string | undefined;
2724
+
2725
+ Filters: UserDataFilters | undefined;
2726
+
2727
+ NextToken?: string;
2728
+
2729
+ MaxResults?: number;
2730
+ }
2731
+ export declare namespace GetCurrentUserDataRequest {
2732
+
2733
+ const filterSensitiveLog: (obj: GetCurrentUserDataRequest) => any;
2734
+ }
2735
+
2736
+ export interface HierarchyGroupSummaryReference {
2737
+
2738
+ Id?: string;
2739
+
2740
+ Arn?: string;
2741
+ }
2742
+ export declare namespace HierarchyGroupSummaryReference {
2743
+
2744
+ const filterSensitiveLog: (obj: HierarchyGroupSummaryReference) => any;
2745
+ }
2746
+
2747
+ export interface HierarchyPathReference {
2748
+
2749
+ LevelOne?: HierarchyGroupSummaryReference;
2750
+
2751
+ LevelTwo?: HierarchyGroupSummaryReference;
2752
+
2753
+ LevelThree?: HierarchyGroupSummaryReference;
2754
+
2755
+ LevelFour?: HierarchyGroupSummaryReference;
2756
+
2757
+ LevelFive?: HierarchyGroupSummaryReference;
2758
+ }
2759
+ export declare namespace HierarchyPathReference {
2760
+
2761
+ const filterSensitiveLog: (obj: HierarchyPathReference) => any;
2762
+ }
2763
+
2764
+ export interface RoutingProfileReference {
2765
+
2766
+ Id?: string;
2767
+
2768
+ Arn?: string;
2769
+ }
2770
+ export declare namespace RoutingProfileReference {
2771
+
2772
+ const filterSensitiveLog: (obj: RoutingProfileReference) => any;
2773
+ }
2774
+
2775
+ export interface UserReference {
2776
+
2777
+ Id?: string;
2778
+
2779
+ Arn?: string;
2780
+ }
2781
+ export declare namespace UserReference {
2782
+
2783
+ const filterSensitiveLog: (obj: UserReference) => any;
2784
+ }
2785
+
2786
+ export interface UserData {
2787
+
2788
+ User?: UserReference;
2789
+
2790
+ RoutingProfile?: RoutingProfileReference;
2791
+
2792
+ HierarchyPath?: HierarchyPathReference;
2793
+
2794
+ Status?: AgentStatusReference;
2795
+
2796
+ AvailableSlotsByChannel?: Record<string, number>;
2797
+
2798
+ MaxSlotsByChannel?: Record<string, number>;
2799
+
2800
+ ActiveSlotsByChannel?: Record<string, number>;
2801
+
2802
+ Contacts?: AgentContactReference[];
2803
+ }
2804
+ export declare namespace UserData {
2805
+
2806
+ const filterSensitiveLog: (obj: UserData) => any;
2807
+ }
2808
+ export interface GetCurrentUserDataResponse {
2809
+
2810
+ NextToken?: string;
2811
+
2812
+ UserDataList?: UserData[];
2813
+ }
2814
+ export declare namespace GetCurrentUserDataResponse {
2815
+
2816
+ const filterSensitiveLog: (obj: GetCurrentUserDataResponse) => any;
2817
+ }
2712
2818
  export interface GetFederationTokenRequest {
2713
2819
 
2714
2820
  InstanceId: string | undefined;
@@ -2901,9 +3007,7 @@ export interface GetTaskTemplateResponse {
2901
3007
 
2902
3008
  CreatedTime?: Date;
2903
3009
 
2904
- Tags?: {
2905
- [key: string]: string;
2906
- };
3010
+ Tags?: Record<string, string>;
2907
3011
  }
2908
3012
  export declare namespace GetTaskTemplateResponse {
2909
3013
 
@@ -3686,148 +3790,3 @@ export declare namespace ListQueueQuickConnectsResponse {
3686
3790
 
3687
3791
  const filterSensitiveLog: (obj: ListQueueQuickConnectsResponse) => any;
3688
3792
  }
3689
- export declare enum QueueType {
3690
- AGENT = "AGENT",
3691
- STANDARD = "STANDARD"
3692
- }
3693
- export interface ListQueuesRequest {
3694
-
3695
- InstanceId: string | undefined;
3696
-
3697
- QueueTypes?: (QueueType | string)[];
3698
-
3699
- NextToken?: string;
3700
-
3701
- MaxResults?: number;
3702
- }
3703
- export declare namespace ListQueuesRequest {
3704
-
3705
- const filterSensitiveLog: (obj: ListQueuesRequest) => any;
3706
- }
3707
-
3708
- export interface QueueSummary {
3709
-
3710
- Id?: string;
3711
-
3712
- Arn?: string;
3713
-
3714
- Name?: string;
3715
-
3716
- QueueType?: QueueType | string;
3717
- }
3718
- export declare namespace QueueSummary {
3719
-
3720
- const filterSensitiveLog: (obj: QueueSummary) => any;
3721
- }
3722
- export interface ListQueuesResponse {
3723
-
3724
- QueueSummaryList?: QueueSummary[];
3725
-
3726
- NextToken?: string;
3727
- }
3728
- export declare namespace ListQueuesResponse {
3729
-
3730
- const filterSensitiveLog: (obj: ListQueuesResponse) => any;
3731
- }
3732
- export interface ListQuickConnectsRequest {
3733
-
3734
- InstanceId: string | undefined;
3735
-
3736
- NextToken?: string;
3737
-
3738
- MaxResults?: number;
3739
-
3740
- QuickConnectTypes?: (QuickConnectType | string)[];
3741
- }
3742
- export declare namespace ListQuickConnectsRequest {
3743
-
3744
- const filterSensitiveLog: (obj: ListQuickConnectsRequest) => any;
3745
- }
3746
- export interface ListQuickConnectsResponse {
3747
-
3748
- QuickConnectSummaryList?: QuickConnectSummary[];
3749
-
3750
- NextToken?: string;
3751
- }
3752
- export declare namespace ListQuickConnectsResponse {
3753
-
3754
- const filterSensitiveLog: (obj: ListQuickConnectsResponse) => any;
3755
- }
3756
- export interface ListRoutingProfileQueuesRequest {
3757
-
3758
- InstanceId: string | undefined;
3759
-
3760
- RoutingProfileId: string | undefined;
3761
-
3762
- NextToken?: string;
3763
-
3764
- MaxResults?: number;
3765
- }
3766
- export declare namespace ListRoutingProfileQueuesRequest {
3767
-
3768
- const filterSensitiveLog: (obj: ListRoutingProfileQueuesRequest) => any;
3769
- }
3770
-
3771
- export interface RoutingProfileQueueConfigSummary {
3772
-
3773
- QueueId: string | undefined;
3774
-
3775
- QueueArn: string | undefined;
3776
-
3777
- QueueName: string | undefined;
3778
-
3779
- Priority: number | undefined;
3780
-
3781
- Delay: number | undefined;
3782
-
3783
- Channel: Channel | string | undefined;
3784
- }
3785
- export declare namespace RoutingProfileQueueConfigSummary {
3786
-
3787
- const filterSensitiveLog: (obj: RoutingProfileQueueConfigSummary) => any;
3788
- }
3789
- export interface ListRoutingProfileQueuesResponse {
3790
-
3791
- NextToken?: string;
3792
-
3793
- RoutingProfileQueueConfigSummaryList?: RoutingProfileQueueConfigSummary[];
3794
- }
3795
- export declare namespace ListRoutingProfileQueuesResponse {
3796
-
3797
- const filterSensitiveLog: (obj: ListRoutingProfileQueuesResponse) => any;
3798
- }
3799
- export interface ListRoutingProfilesRequest {
3800
-
3801
- InstanceId: string | undefined;
3802
-
3803
- NextToken?: string;
3804
-
3805
- MaxResults?: number;
3806
- }
3807
- export declare namespace ListRoutingProfilesRequest {
3808
-
3809
- const filterSensitiveLog: (obj: ListRoutingProfilesRequest) => any;
3810
- }
3811
-
3812
- export interface RoutingProfileSummary {
3813
-
3814
- Id?: string;
3815
-
3816
- Arn?: string;
3817
-
3818
- Name?: string;
3819
- }
3820
- export declare namespace RoutingProfileSummary {
3821
-
3822
- const filterSensitiveLog: (obj: RoutingProfileSummary) => any;
3823
- }
3824
- export interface ListRoutingProfilesResponse {
3825
-
3826
- RoutingProfileSummaryList?: RoutingProfileSummary[];
3827
-
3828
- NextToken?: string;
3829
- }
3830
- export declare namespace ListRoutingProfilesResponse {
3831
-
3832
- const filterSensitiveLog: (obj: ListRoutingProfilesResponse) => any;
3833
- }