@aws-sdk/client-connect 3.380.0 → 3.385.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 (35) hide show
  1. package/README.md +8 -0
  2. package/dist-cjs/Connect.js +2 -0
  3. package/dist-cjs/commands/UpdateRoutingProfileAgentAvailabilityTimerCommand.js +46 -0
  4. package/dist-cjs/commands/index.js +1 -0
  5. package/dist-cjs/endpoint/ruleset.js +1 -1
  6. package/dist-cjs/models/models_0.js +6 -6
  7. package/dist-cjs/models/models_1.js +5 -1
  8. package/dist-cjs/protocols/Aws_restJson1.js +72 -5
  9. package/dist-es/Connect.js +2 -0
  10. package/dist-es/commands/UpdateRoutingProfileAgentAvailabilityTimerCommand.js +42 -0
  11. package/dist-es/commands/index.js +1 -0
  12. package/dist-es/endpoint/ruleset.js +1 -1
  13. package/dist-es/models/models_0.js +4 -4
  14. package/dist-es/models/models_1.js +4 -0
  15. package/dist-es/protocols/Aws_restJson1.js +65 -0
  16. package/dist-types/Connect.d.ts +7 -0
  17. package/dist-types/ConnectClient.d.ts +3 -2
  18. package/dist-types/commands/CreateRoutingProfileCommand.d.ts +1 -0
  19. package/dist-types/commands/DescribeRoutingProfileCommand.d.ts +1 -0
  20. package/dist-types/commands/SearchRoutingProfilesCommand.d.ts +1 -0
  21. package/dist-types/commands/UpdateRoutingProfileAgentAvailabilityTimerCommand.d.ts +92 -0
  22. package/dist-types/commands/index.d.ts +1 -0
  23. package/dist-types/models/models_0.d.ts +738 -12
  24. package/dist-types/models/models_1.d.ts +940 -57
  25. package/dist-types/models/models_2.d.ts +134 -1
  26. package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
  27. package/dist-types/ts3.4/Connect.d.ts +23 -0
  28. package/dist-types/ts3.4/ConnectClient.d.ts +6 -0
  29. package/dist-types/ts3.4/commands/UpdateRoutingProfileAgentAvailabilityTimerCommand.d.ts +38 -0
  30. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  31. package/dist-types/ts3.4/models/models_0.d.ts +8 -5
  32. package/dist-types/ts3.4/models/models_1.d.ts +11 -15
  33. package/dist-types/ts3.4/models/models_2.d.ts +14 -2
  34. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
  35. package/package.json +5 -5
@@ -1,19 +1,88 @@
1
1
  import { Evaluation, EvaluationFormScoringStrategy } from "./models_0";
2
- import { EvaluationForm, EvaluationFormContent, EvaluationFormItem, HierarchyGroupCondition, HoursOfOperationSearchCriteria, HoursOfOperationSearchFilter, PromptSearchFilter, QueueSearchFilter, QuickConnectSearchFilter, RoutingProfileSearchFilter, SearchableQueueType, SecurityProfilesSearchFilter, StringCondition, UserSearchFilter } from "./models_1";
2
+ import { EvaluationForm, EvaluationFormItem, HierarchyGroupCondition, HoursOfOperationSearchFilter, PromptSearchFilter, QueueSearchFilter, QuickConnectSearchFilter, RoutingProfileSearchFilter, SearchableQueueType, SecurityProfilesSearchFilter, StringCondition, UserSearchFilter } from "./models_1";
3
+ /**
4
+ * @public
5
+ * <p>Information about an evaluation form used in a contact evaluation.</p>
6
+ */
7
+ export interface EvaluationFormContent {
8
+ /**
9
+ * @public
10
+ * <p>A version of the evaluation form.</p>
11
+ */
12
+ EvaluationFormVersion: number | undefined;
13
+ /**
14
+ * @public
15
+ * <p>The unique identifier for the evaluation form.</p>
16
+ */
17
+ EvaluationFormId: string | undefined;
18
+ /**
19
+ * @public
20
+ * <p>The Amazon Resource Name (ARN) for the evaluation form resource.</p>
21
+ */
22
+ EvaluationFormArn: string | undefined;
23
+ /**
24
+ * @public
25
+ * <p>A title of the evaluation form.</p>
26
+ */
27
+ Title: string | undefined;
28
+ /**
29
+ * @public
30
+ * <p>The description of the evaluation form.</p>
31
+ */
32
+ Description?: string;
33
+ /**
34
+ * @public
35
+ * <p>Items that are part of the evaluation form. The total number of sections and questions must not exceed 100 each. Questions must be contained in a section.</p>
36
+ */
37
+ Items: EvaluationFormItem[] | undefined;
38
+ /**
39
+ * @public
40
+ * <p>A scoring strategy of the evaluation form.</p>
41
+ */
42
+ ScoringStrategy?: EvaluationFormScoringStrategy;
43
+ }
44
+ /**
45
+ * @public
46
+ * <p>The search criteria to be used to return hours of operations.</p>
47
+ */
48
+ export interface HoursOfOperationSearchCriteria {
49
+ /**
50
+ * @public
51
+ * <p>A list of conditions which would be applied together with an OR condition.</p>
52
+ */
53
+ OrConditions?: HoursOfOperationSearchCriteria[];
54
+ /**
55
+ * @public
56
+ * <p>A list of conditions which would be applied together with an AND condition.</p>
57
+ */
58
+ AndConditions?: HoursOfOperationSearchCriteria[];
59
+ /**
60
+ * @public
61
+ * <p>A leaf node condition which can be used to specify a string condition.</p>
62
+ * <note>
63
+ * <p>The currently supported values for <code>FieldName</code> are <code>name</code>,
64
+ * <code>description</code>, <code>timezone</code>, and <code>resourceID</code>.</p>
65
+ * </note>
66
+ */
67
+ StringCondition?: StringCondition;
68
+ }
3
69
  /**
4
70
  * @public
5
71
  * <p>The search criteria to be used to return prompts.</p>
6
72
  */
7
73
  export interface PromptSearchCriteria {
8
74
  /**
75
+ * @public
9
76
  * <p>A list of conditions which would be applied together with an OR condition.</p>
10
77
  */
11
78
  OrConditions?: PromptSearchCriteria[];
12
79
  /**
80
+ * @public
13
81
  * <p>A list of conditions which would be applied together with an AND condition.</p>
14
82
  */
15
83
  AndConditions?: PromptSearchCriteria[];
16
84
  /**
85
+ * @public
17
86
  * <p>A leaf node condition which can be used to specify a string condition.</p>
18
87
  * <note>
19
88
  * <p>The currently supported values for <code>FieldName</code> are <code>name</code>,
@@ -33,14 +102,17 @@ export interface PromptSearchCriteria {
33
102
  */
34
103
  export interface QueueSearchCriteria {
35
104
  /**
105
+ * @public
36
106
  * <p>A list of conditions which would be applied together with an OR condition.</p>
37
107
  */
38
108
  OrConditions?: QueueSearchCriteria[];
39
109
  /**
110
+ * @public
40
111
  * <p>A list of conditions which would be applied together with an AND condition.</p>
41
112
  */
42
113
  AndConditions?: QueueSearchCriteria[];
43
114
  /**
115
+ * @public
44
116
  * <p>A leaf node condition which can be used to specify a string condition.</p>
45
117
  * <note>
46
118
  * <p>The currently supported values for <code>FieldName</code> are <code>name</code>,
@@ -49,6 +121,7 @@ export interface QueueSearchCriteria {
49
121
  */
50
122
  StringCondition?: StringCondition;
51
123
  /**
124
+ * @public
52
125
  * <p>The type of queue.</p>
53
126
  */
54
127
  QueueTypeCondition?: SearchableQueueType | string;
@@ -59,14 +132,17 @@ export interface QueueSearchCriteria {
59
132
  */
60
133
  export interface QuickConnectSearchCriteria {
61
134
  /**
135
+ * @public
62
136
  * <p>A list of conditions which would be applied together with an OR condition.</p>
63
137
  */
64
138
  OrConditions?: QuickConnectSearchCriteria[];
65
139
  /**
140
+ * @public
66
141
  * <p>A list of conditions which would be applied together with an AND condition.</p>
67
142
  */
68
143
  AndConditions?: QuickConnectSearchCriteria[];
69
144
  /**
145
+ * @public
70
146
  * <p>A leaf node condition which can be used to specify a string condition.</p>
71
147
  * <note>
72
148
  * <p>The currently supported values for <code>FieldName</code> are <code>name</code>,
@@ -86,14 +162,17 @@ export interface QuickConnectSearchCriteria {
86
162
  */
87
163
  export interface RoutingProfileSearchCriteria {
88
164
  /**
165
+ * @public
89
166
  * <p>A list of conditions which would be applied together with an OR condition.</p>
90
167
  */
91
168
  OrConditions?: RoutingProfileSearchCriteria[];
92
169
  /**
170
+ * @public
93
171
  * <p>A list of conditions which would be applied together with an AND condition.</p>
94
172
  */
95
173
  AndConditions?: RoutingProfileSearchCriteria[];
96
174
  /**
175
+ * @public
97
176
  * <p>A leaf node condition which can be used to specify a string condition.</p>
98
177
  * <note>
99
178
  * <p>The currently supported values for <code>FieldName</code> are <code>name</code>,
@@ -113,14 +192,17 @@ export interface RoutingProfileSearchCriteria {
113
192
  */
114
193
  export interface SecurityProfileSearchCriteria {
115
194
  /**
195
+ * @public
116
196
  * <p>A list of conditions which would be applied together with an OR condition.</p>
117
197
  */
118
198
  OrConditions?: SecurityProfileSearchCriteria[];
119
199
  /**
200
+ * @public
120
201
  * <p>A list of conditions which would be applied together with an AND condition.</p>
121
202
  */
122
203
  AndConditions?: SecurityProfileSearchCriteria[];
123
204
  /**
205
+ * @public
124
206
  * <p>A leaf node condition which can be used to specify a string condition. </p>
125
207
  */
126
208
  StringCondition?: StringCondition;
@@ -130,38 +212,47 @@ export interface SecurityProfileSearchCriteria {
130
212
  */
131
213
  export interface UpdateEvaluationFormRequest {
132
214
  /**
215
+ * @public
133
216
  * <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
134
217
  */
135
218
  InstanceId: string | undefined;
136
219
  /**
220
+ * @public
137
221
  * <p>The unique identifier for the evaluation form.</p>
138
222
  */
139
223
  EvaluationFormId: string | undefined;
140
224
  /**
225
+ * @public
141
226
  * <p>A version of the evaluation form to update.</p>
142
227
  */
143
228
  EvaluationFormVersion: number | undefined;
144
229
  /**
230
+ * @public
145
231
  * <p>A flag indicating whether the operation must create a new version.</p>
146
232
  */
147
233
  CreateNewVersion?: boolean;
148
234
  /**
235
+ * @public
149
236
  * <p>A title of the evaluation form.</p>
150
237
  */
151
238
  Title: string | undefined;
152
239
  /**
240
+ * @public
153
241
  * <p>The description of the evaluation form.</p>
154
242
  */
155
243
  Description?: string;
156
244
  /**
245
+ * @public
157
246
  * <p>Items that are part of the evaluation form. The total number of sections and questions must not exceed 100 each. Questions must be contained in a section.</p>
158
247
  */
159
248
  Items: EvaluationFormItem[] | undefined;
160
249
  /**
250
+ * @public
161
251
  * <p>A scoring strategy of the evaluation form.</p>
162
252
  */
163
253
  ScoringStrategy?: EvaluationFormScoringStrategy;
164
254
  /**
255
+ * @public
165
256
  * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
166
257
  * request. If not provided, the Amazon Web Services
167
258
  * SDK populates this field. For more information about idempotency, see
@@ -180,16 +271,19 @@ export interface UpdateEvaluationFormRequest {
180
271
  */
181
272
  export interface UserSearchCriteria {
182
273
  /**
274
+ * @public
183
275
  * <p>A list of conditions which would be applied together with an <code>OR</code>
184
276
  * condition.</p>
185
277
  */
186
278
  OrConditions?: UserSearchCriteria[];
187
279
  /**
280
+ * @public
188
281
  * <p>A list of conditions which would be applied together with an <code>AND</code> condition.
189
282
  * </p>
190
283
  */
191
284
  AndConditions?: UserSearchCriteria[];
192
285
  /**
286
+ * @public
193
287
  * <p>A leaf node condition which can be used to specify a string condition.</p>
194
288
  * <note>
195
289
  * <p>The currently supported values for <code>FieldName</code> are <code>name</code>,
@@ -198,6 +292,7 @@ export interface UserSearchCriteria {
198
292
  */
199
293
  StringCondition?: StringCondition;
200
294
  /**
295
+ * @public
201
296
  * <p>A leaf node condition which can be used to specify a hierarchy group condition.</p>
202
297
  */
203
298
  HierarchyGroupCondition?: HierarchyGroupCondition;
@@ -207,10 +302,12 @@ export interface UserSearchCriteria {
207
302
  */
208
303
  export interface DescribeContactEvaluationResponse {
209
304
  /**
305
+ * @public
210
306
  * <p>Information about the evaluation form completed for a specific contact.</p>
211
307
  */
212
308
  Evaluation: Evaluation | undefined;
213
309
  /**
310
+ * @public
214
311
  * <p>Information about the evaluation form.</p>
215
312
  */
216
313
  EvaluationForm: EvaluationFormContent | undefined;
@@ -220,6 +317,7 @@ export interface DescribeContactEvaluationResponse {
220
317
  */
221
318
  export interface DescribeEvaluationFormResponse {
222
319
  /**
320
+ * @public
223
321
  * <p>Information about the evaluation form.</p>
224
322
  */
225
323
  EvaluationForm: EvaluationForm | undefined;
@@ -229,23 +327,28 @@ export interface DescribeEvaluationFormResponse {
229
327
  */
230
328
  export interface SearchHoursOfOperationsRequest {
231
329
  /**
330
+ * @public
232
331
  * <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
233
332
  */
234
333
  InstanceId: string | undefined;
235
334
  /**
335
+ * @public
236
336
  * <p>The token for the next set of results. Use the value returned in the previous
237
337
  * response in the next request to retrieve the next set of results.</p>
238
338
  */
239
339
  NextToken?: string;
240
340
  /**
341
+ * @public
241
342
  * <p>The maximum number of results to return per page.</p>
242
343
  */
243
344
  MaxResults?: number;
244
345
  /**
346
+ * @public
245
347
  * <p>Filters to be applied to search results.</p>
246
348
  */
247
349
  SearchFilter?: HoursOfOperationSearchFilter;
248
350
  /**
351
+ * @public
249
352
  * <p>The search criteria to be used to return hours of operations.</p>
250
353
  */
251
354
  SearchCriteria?: HoursOfOperationSearchCriteria;
@@ -255,23 +358,28 @@ export interface SearchHoursOfOperationsRequest {
255
358
  */
256
359
  export interface SearchPromptsRequest {
257
360
  /**
361
+ * @public
258
362
  * <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
259
363
  */
260
364
  InstanceId: string | undefined;
261
365
  /**
366
+ * @public
262
367
  * <p>The token for the next set of results. Use the value returned in the previous
263
368
  * response in the next request to retrieve the next set of results.</p>
264
369
  */
265
370
  NextToken?: string;
266
371
  /**
372
+ * @public
267
373
  * <p>The maximum number of results to return per page.</p>
268
374
  */
269
375
  MaxResults?: number;
270
376
  /**
377
+ * @public
271
378
  * <p>Filters to be applied to search results.</p>
272
379
  */
273
380
  SearchFilter?: PromptSearchFilter;
274
381
  /**
382
+ * @public
275
383
  * <p>The search criteria to be used to return prompts.</p>
276
384
  */
277
385
  SearchCriteria?: PromptSearchCriteria;
@@ -281,23 +389,28 @@ export interface SearchPromptsRequest {
281
389
  */
282
390
  export interface SearchQueuesRequest {
283
391
  /**
392
+ * @public
284
393
  * <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
285
394
  */
286
395
  InstanceId: string | undefined;
287
396
  /**
397
+ * @public
288
398
  * <p>The token for the next set of results. Use the value returned in the previous
289
399
  * response in the next request to retrieve the next set of results.</p>
290
400
  */
291
401
  NextToken?: string;
292
402
  /**
403
+ * @public
293
404
  * <p>The maximum number of results to return per page.</p>
294
405
  */
295
406
  MaxResults?: number;
296
407
  /**
408
+ * @public
297
409
  * <p>Filters to be applied to search results.</p>
298
410
  */
299
411
  SearchFilter?: QueueSearchFilter;
300
412
  /**
413
+ * @public
301
414
  * <p>The search criteria to be used to return queues.</p>
302
415
  * <note>
303
416
  * <p>The <code>name</code> and <code>description</code> fields support "contains" queries with
@@ -312,23 +425,28 @@ export interface SearchQueuesRequest {
312
425
  */
313
426
  export interface SearchQuickConnectsRequest {
314
427
  /**
428
+ * @public
315
429
  * <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
316
430
  */
317
431
  InstanceId: string | undefined;
318
432
  /**
433
+ * @public
319
434
  * <p>The token for the next set of results. Use the value returned in the previous
320
435
  * response in the next request to retrieve the next set of results.</p>
321
436
  */
322
437
  NextToken?: string;
323
438
  /**
439
+ * @public
324
440
  * <p>The maximum number of results to return per page.</p>
325
441
  */
326
442
  MaxResults?: number;
327
443
  /**
444
+ * @public
328
445
  * <p>Filters to be applied to search results.</p>
329
446
  */
330
447
  SearchFilter?: QuickConnectSearchFilter;
331
448
  /**
449
+ * @public
332
450
  * <p>The search criteria to be used to return quick connects.</p>
333
451
  */
334
452
  SearchCriteria?: QuickConnectSearchCriteria;
@@ -338,23 +456,28 @@ export interface SearchQuickConnectsRequest {
338
456
  */
339
457
  export interface SearchRoutingProfilesRequest {
340
458
  /**
459
+ * @public
341
460
  * <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
342
461
  */
343
462
  InstanceId: string | undefined;
344
463
  /**
464
+ * @public
345
465
  * <p>The token for the next set of results. Use the value returned in the previous
346
466
  * response in the next request to retrieve the next set of results.</p>
347
467
  */
348
468
  NextToken?: string;
349
469
  /**
470
+ * @public
350
471
  * <p>The maximum number of results to return per page.</p>
351
472
  */
352
473
  MaxResults?: number;
353
474
  /**
475
+ * @public
354
476
  * <p>Filters to be applied to search results.</p>
355
477
  */
356
478
  SearchFilter?: RoutingProfileSearchFilter;
357
479
  /**
480
+ * @public
358
481
  * <p>The search criteria to be used to return routing profiles.</p>
359
482
  * <note>
360
483
  * <p>The <code>name</code> and <code>description</code> fields support "contains" queries with
@@ -369,19 +492,23 @@ export interface SearchRoutingProfilesRequest {
369
492
  */
370
493
  export interface SearchSecurityProfilesRequest {
371
494
  /**
495
+ * @public
372
496
  * <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
373
497
  */
374
498
  InstanceId: string | undefined;
375
499
  /**
500
+ * @public
376
501
  * <p>The token for the next set of results. Use the value returned in the previous
377
502
  * response in the next request to retrieve the next set of results.</p>
378
503
  */
379
504
  NextToken?: string;
380
505
  /**
506
+ * @public
381
507
  * <p>The maximum number of results to return per page.</p>
382
508
  */
383
509
  MaxResults?: number;
384
510
  /**
511
+ * @public
385
512
  * <p>The search criteria to be used to return security profiles. </p>
386
513
  * <note>
387
514
  * <p>The <code>name</code> field support "contains" queries with a minimum of 2 characters and
@@ -395,6 +522,7 @@ export interface SearchSecurityProfilesRequest {
395
522
  */
396
523
  SearchCriteria?: SecurityProfileSearchCriteria;
397
524
  /**
525
+ * @public
398
526
  * <p>Filters to be applied to search results.</p>
399
527
  */
400
528
  SearchFilter?: SecurityProfilesSearchFilter;
@@ -404,23 +532,28 @@ export interface SearchSecurityProfilesRequest {
404
532
  */
405
533
  export interface SearchUsersRequest {
406
534
  /**
535
+ * @public
407
536
  * <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
408
537
  */
409
538
  InstanceId?: string;
410
539
  /**
540
+ * @public
411
541
  * <p>The token for the next set of results. Use the value returned in the previous
412
542
  * response in the next request to retrieve the next set of results.</p>
413
543
  */
414
544
  NextToken?: string;
415
545
  /**
546
+ * @public
416
547
  * <p>The maximum number of results to return per page.</p>
417
548
  */
418
549
  MaxResults?: number;
419
550
  /**
551
+ * @public
420
552
  * <p>Filters to be applied to search results.</p>
421
553
  */
422
554
  SearchFilter?: UserSearchFilter;
423
555
  /**
556
+ * @public
424
557
  * <p>The search criteria to be used to return users.</p>
425
558
  * <note>
426
559
  * <p>The <code>name</code> and <code>description</code> fields support "contains" queries with
@@ -181,6 +181,7 @@ import { UpdateQueueOutboundCallerConfigCommandInput, UpdateQueueOutboundCallerC
181
181
  import { UpdateQueueStatusCommandInput, UpdateQueueStatusCommandOutput } from "../commands/UpdateQueueStatusCommand";
182
182
  import { UpdateQuickConnectConfigCommandInput, UpdateQuickConnectConfigCommandOutput } from "../commands/UpdateQuickConnectConfigCommand";
183
183
  import { UpdateQuickConnectNameCommandInput, UpdateQuickConnectNameCommandOutput } from "../commands/UpdateQuickConnectNameCommand";
184
+ import { UpdateRoutingProfileAgentAvailabilityTimerCommandInput, UpdateRoutingProfileAgentAvailabilityTimerCommandOutput } from "../commands/UpdateRoutingProfileAgentAvailabilityTimerCommand";
184
185
  import { UpdateRoutingProfileConcurrencyCommandInput, UpdateRoutingProfileConcurrencyCommandOutput } from "../commands/UpdateRoutingProfileConcurrencyCommand";
185
186
  import { UpdateRoutingProfileDefaultOutboundQueueCommandInput, UpdateRoutingProfileDefaultOutboundQueueCommandOutput } from "../commands/UpdateRoutingProfileDefaultOutboundQueueCommand";
186
187
  import { UpdateRoutingProfileNameCommandInput, UpdateRoutingProfileNameCommandOutput } from "../commands/UpdateRoutingProfileNameCommand";
@@ -920,6 +921,10 @@ export declare const se_UpdateQuickConnectConfigCommand: (input: UpdateQuickConn
920
921
  * serializeAws_restJson1UpdateQuickConnectNameCommand
921
922
  */
922
923
  export declare const se_UpdateQuickConnectNameCommand: (input: UpdateQuickConnectNameCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
924
+ /**
925
+ * serializeAws_restJson1UpdateRoutingProfileAgentAvailabilityTimerCommand
926
+ */
927
+ export declare const se_UpdateRoutingProfileAgentAvailabilityTimerCommand: (input: UpdateRoutingProfileAgentAvailabilityTimerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
923
928
  /**
924
929
  * serializeAws_restJson1UpdateRoutingProfileConcurrencyCommand
925
930
  */
@@ -1704,6 +1709,10 @@ export declare const de_UpdateQuickConnectConfigCommand: (output: __HttpResponse
1704
1709
  * deserializeAws_restJson1UpdateQuickConnectNameCommand
1705
1710
  */
1706
1711
  export declare const de_UpdateQuickConnectNameCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateQuickConnectNameCommandOutput>;
1712
+ /**
1713
+ * deserializeAws_restJson1UpdateRoutingProfileAgentAvailabilityTimerCommand
1714
+ */
1715
+ export declare const de_UpdateRoutingProfileAgentAvailabilityTimerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateRoutingProfileAgentAvailabilityTimerCommandOutput>;
1707
1716
  /**
1708
1717
  * deserializeAws_restJson1UpdateRoutingProfileConcurrencyCommand
1709
1718
  */
@@ -723,6 +723,10 @@ import {
723
723
  UpdateQuickConnectNameCommandInput,
724
724
  UpdateQuickConnectNameCommandOutput,
725
725
  } from "./commands/UpdateQuickConnectNameCommand";
726
+ import {
727
+ UpdateRoutingProfileAgentAvailabilityTimerCommandInput,
728
+ UpdateRoutingProfileAgentAvailabilityTimerCommandOutput,
729
+ } from "./commands/UpdateRoutingProfileAgentAvailabilityTimerCommand";
726
730
  import {
727
731
  UpdateRoutingProfileConcurrencyCommandInput,
728
732
  UpdateRoutingProfileConcurrencyCommandOutput,
@@ -3150,6 +3154,25 @@ export interface Connect {
3150
3154
  options: __HttpHandlerOptions,
3151
3155
  cb: (err: any, data?: UpdateQuickConnectNameCommandOutput) => void
3152
3156
  ): void;
3157
+ updateRoutingProfileAgentAvailabilityTimer(
3158
+ args: UpdateRoutingProfileAgentAvailabilityTimerCommandInput,
3159
+ options?: __HttpHandlerOptions
3160
+ ): Promise<UpdateRoutingProfileAgentAvailabilityTimerCommandOutput>;
3161
+ updateRoutingProfileAgentAvailabilityTimer(
3162
+ args: UpdateRoutingProfileAgentAvailabilityTimerCommandInput,
3163
+ cb: (
3164
+ err: any,
3165
+ data?: UpdateRoutingProfileAgentAvailabilityTimerCommandOutput
3166
+ ) => void
3167
+ ): void;
3168
+ updateRoutingProfileAgentAvailabilityTimer(
3169
+ args: UpdateRoutingProfileAgentAvailabilityTimerCommandInput,
3170
+ options: __HttpHandlerOptions,
3171
+ cb: (
3172
+ err: any,
3173
+ data?: UpdateRoutingProfileAgentAvailabilityTimerCommandOutput
3174
+ ) => void
3175
+ ): void;
3153
3176
  updateRoutingProfileConcurrency(
3154
3177
  args: UpdateRoutingProfileConcurrencyCommandInput,
3155
3178
  options?: __HttpHandlerOptions
@@ -768,6 +768,10 @@ import {
768
768
  UpdateQuickConnectNameCommandInput,
769
769
  UpdateQuickConnectNameCommandOutput,
770
770
  } from "./commands/UpdateQuickConnectNameCommand";
771
+ import {
772
+ UpdateRoutingProfileAgentAvailabilityTimerCommandInput,
773
+ UpdateRoutingProfileAgentAvailabilityTimerCommandOutput,
774
+ } from "./commands/UpdateRoutingProfileAgentAvailabilityTimerCommand";
771
775
  import {
772
776
  UpdateRoutingProfileConcurrencyCommandInput,
773
777
  UpdateRoutingProfileConcurrencyCommandOutput,
@@ -1016,6 +1020,7 @@ export type ServiceInputTypes =
1016
1020
  | UpdateQueueStatusCommandInput
1017
1021
  | UpdateQuickConnectConfigCommandInput
1018
1022
  | UpdateQuickConnectNameCommandInput
1023
+ | UpdateRoutingProfileAgentAvailabilityTimerCommandInput
1019
1024
  | UpdateRoutingProfileConcurrencyCommandInput
1020
1025
  | UpdateRoutingProfileDefaultOutboundQueueCommandInput
1021
1026
  | UpdateRoutingProfileNameCommandInput
@@ -1213,6 +1218,7 @@ export type ServiceOutputTypes =
1213
1218
  | UpdateQueueStatusCommandOutput
1214
1219
  | UpdateQuickConnectConfigCommandOutput
1215
1220
  | UpdateQuickConnectNameCommandOutput
1221
+ | UpdateRoutingProfileAgentAvailabilityTimerCommandOutput
1216
1222
  | UpdateRoutingProfileConcurrencyCommandOutput
1217
1223
  | UpdateRoutingProfileDefaultOutboundQueueCommandOutput
1218
1224
  | UpdateRoutingProfileNameCommandOutput
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ ConnectClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../ConnectClient";
14
+ import { UpdateRoutingProfileAgentAvailabilityTimerRequest } from "../models/models_1";
15
+ export { __MetadataBearer, $Command };
16
+ export interface UpdateRoutingProfileAgentAvailabilityTimerCommandInput
17
+ extends UpdateRoutingProfileAgentAvailabilityTimerRequest {}
18
+ export interface UpdateRoutingProfileAgentAvailabilityTimerCommandOutput
19
+ extends __MetadataBearer {}
20
+ export declare class UpdateRoutingProfileAgentAvailabilityTimerCommand extends $Command<
21
+ UpdateRoutingProfileAgentAvailabilityTimerCommandInput,
22
+ UpdateRoutingProfileAgentAvailabilityTimerCommandOutput,
23
+ ConnectClientResolvedConfig
24
+ > {
25
+ readonly input: UpdateRoutingProfileAgentAvailabilityTimerCommandInput;
26
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
+ constructor(input: UpdateRoutingProfileAgentAvailabilityTimerCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: ConnectClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<
33
+ UpdateRoutingProfileAgentAvailabilityTimerCommandInput,
34
+ UpdateRoutingProfileAgentAvailabilityTimerCommandOutput
35
+ >;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -179,6 +179,7 @@ export * from "./UpdateQueueOutboundCallerConfigCommand";
179
179
  export * from "./UpdateQueueStatusCommand";
180
180
  export * from "./UpdateQuickConnectConfigCommand";
181
181
  export * from "./UpdateQuickConnectNameCommand";
182
+ export * from "./UpdateRoutingProfileAgentAvailabilityTimerCommand";
182
183
  export * from "./UpdateRoutingProfileConcurrencyCommand";
183
184
  export * from "./UpdateRoutingProfileDefaultOutboundQueueCommand";
184
185
  export * from "./UpdateRoutingProfileNameCommand";
@@ -68,6 +68,12 @@ export declare class ThrottlingException extends __BaseException {
68
68
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
69
69
  );
70
70
  }
71
+ export declare const AgentAvailabilityTimer: {
72
+ readonly TIME_SINCE_LAST_ACTIVITY: "TIME_SINCE_LAST_ACTIVITY";
73
+ readonly TIME_SINCE_LAST_INBOUND: "TIME_SINCE_LAST_INBOUND";
74
+ };
75
+ export type AgentAvailabilityTimer =
76
+ (typeof AgentAvailabilityTimer)[keyof typeof AgentAvailabilityTimer];
71
77
  export declare const ContactState: {
72
78
  readonly CONNECTED: "CONNECTED";
73
79
  readonly CONNECTED_ONHOLD: "CONNECTED_ONHOLD";
@@ -788,6 +794,7 @@ export interface CreateRoutingProfileRequest {
788
794
  QueueConfigs?: RoutingProfileQueueConfig[];
789
795
  MediaConcurrencies: MediaConcurrency[] | undefined;
790
796
  Tags?: Record<string, string>;
797
+ AgentAvailabilityTimer?: AgentAvailabilityTimer | string;
791
798
  }
792
799
  export interface CreateRoutingProfileResponse {
793
800
  RoutingProfileArn?: string;
@@ -1811,6 +1818,7 @@ export interface RoutingProfile {
1811
1818
  Tags?: Record<string, string>;
1812
1819
  NumberOfAssociatedQueues?: number;
1813
1820
  NumberOfAssociatedUsers?: number;
1821
+ AgentAvailabilityTimer?: AgentAvailabilityTimer | string;
1814
1822
  }
1815
1823
  export interface DescribeRoutingProfileResponse {
1816
1824
  RoutingProfile?: RoutingProfile;
@@ -2051,11 +2059,6 @@ export declare const Grouping: {
2051
2059
  readonly ROUTING_PROFILE: "ROUTING_PROFILE";
2052
2060
  };
2053
2061
  export type Grouping = (typeof Grouping)[keyof typeof Grouping];
2054
- export declare const SortOrder: {
2055
- readonly ASCENDING: "ASCENDING";
2056
- readonly DESCENDING: "DESCENDING";
2057
- };
2058
- export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
2059
2062
  export declare const CreateInstanceRequestFilterSensitiveLog: (
2060
2063
  obj: CreateInstanceRequest
2061
2064
  ) => any;