@aws-sdk/client-connect 3.686.0 → 3.691.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.
@@ -10,7 +10,7 @@ export interface ListTagsForResourceResponse {
10
10
  * <p>Information about the tags.</p>
11
11
  * @public
12
12
  */
13
- tags?: Record<string, string>;
13
+ tags?: Record<string, string> | undefined;
14
14
  }
15
15
  /**
16
16
  * @public
@@ -30,7 +30,7 @@ export interface ListTaskTemplatesRequest {
30
30
  * </important>
31
31
  * @public
32
32
  */
33
- NextToken?: string;
33
+ NextToken?: string | undefined;
34
34
  /**
35
35
  * <p>The maximum number of results to return per page.</p>
36
36
  * <important>
@@ -38,19 +38,19 @@ export interface ListTaskTemplatesRequest {
38
38
  * </important>
39
39
  * @public
40
40
  */
41
- MaxResults?: number;
41
+ MaxResults?: number | undefined;
42
42
  /**
43
43
  * <p>Marks a template as <code>ACTIVE</code> or <code>INACTIVE</code> for a task to refer to it.
44
44
  * Tasks can only be created from <code>ACTIVE</code> templates.
45
45
  * If a template is marked as <code>INACTIVE</code>, then a task that refers to this template cannot be created.</p>
46
46
  * @public
47
47
  */
48
- Status?: TaskTemplateStatus;
48
+ Status?: TaskTemplateStatus | undefined;
49
49
  /**
50
50
  * <p>The name of the task template.</p>
51
51
  * @public
52
52
  */
53
- Name?: string;
53
+ Name?: string | undefined;
54
54
  }
55
55
  /**
56
56
  * <p>Contains summary information about the task template.</p>
@@ -61,39 +61,39 @@ export interface TaskTemplateMetadata {
61
61
  * <p>A unique identifier for the task template.</p>
62
62
  * @public
63
63
  */
64
- Id?: string;
64
+ Id?: string | undefined;
65
65
  /**
66
66
  * <p>The Amazon Resource Name (ARN) of the task template.</p>
67
67
  * @public
68
68
  */
69
- Arn?: string;
69
+ Arn?: string | undefined;
70
70
  /**
71
71
  * <p>The name of the task template.</p>
72
72
  * @public
73
73
  */
74
- Name?: string;
74
+ Name?: string | undefined;
75
75
  /**
76
76
  * <p>The description of the task template.</p>
77
77
  * @public
78
78
  */
79
- Description?: string;
79
+ Description?: string | undefined;
80
80
  /**
81
81
  * <p>Marks a template as <code>ACTIVE</code> or <code>INACTIVE</code> for a task to refer to it.
82
82
  * Tasks can only be created from <code>ACTIVE</code> templates.
83
83
  * If a template is marked as <code>INACTIVE</code>, then a task that refers to this template cannot be created.</p>
84
84
  * @public
85
85
  */
86
- Status?: TaskTemplateStatus;
86
+ Status?: TaskTemplateStatus | undefined;
87
87
  /**
88
88
  * <p>The timestamp when the task template was last modified.</p>
89
89
  * @public
90
90
  */
91
- LastModifiedTime?: Date;
91
+ LastModifiedTime?: Date | undefined;
92
92
  /**
93
93
  * <p>The timestamp when the task template was created.</p>
94
94
  * @public
95
95
  */
96
- CreatedTime?: Date;
96
+ CreatedTime?: Date | undefined;
97
97
  }
98
98
  /**
99
99
  * @public
@@ -103,7 +103,7 @@ export interface ListTaskTemplatesResponse {
103
103
  * <p>Provides details about a list of task templates belonging to an instance.</p>
104
104
  * @public
105
105
  */
106
- TaskTemplates?: TaskTemplateMetadata[];
106
+ TaskTemplates?: TaskTemplateMetadata[] | undefined;
107
107
  /**
108
108
  * <p>If there are additional results, this is the token for the next set of results.</p>
109
109
  * <important>
@@ -111,7 +111,7 @@ export interface ListTaskTemplatesResponse {
111
111
  * </important>
112
112
  * @public
113
113
  */
114
- NextToken?: string;
114
+ NextToken?: string | undefined;
115
115
  }
116
116
  /**
117
117
  * @public
@@ -121,18 +121,18 @@ export interface ListTrafficDistributionGroupsRequest {
121
121
  * <p>The maximum number of results to return per page.</p>
122
122
  * @public
123
123
  */
124
- MaxResults?: number;
124
+ MaxResults?: number | undefined;
125
125
  /**
126
126
  * <p>The token for the next set of results. Use the value returned in the previous
127
127
  * response in the next request to retrieve the next set of results.</p>
128
128
  * @public
129
129
  */
130
- NextToken?: string;
130
+ NextToken?: string | undefined;
131
131
  /**
132
132
  * <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>
133
133
  * @public
134
134
  */
135
- InstanceId?: string;
135
+ InstanceId?: string | undefined;
136
136
  }
137
137
  /**
138
138
  * <p>Information about traffic distribution groups.</p>
@@ -145,22 +145,22 @@ export interface TrafficDistributionGroupSummary {
145
145
  * The ARN must be provided if the call is from the replicated Region.</p>
146
146
  * @public
147
147
  */
148
- Id?: string;
148
+ Id?: string | undefined;
149
149
  /**
150
150
  * <p>The Amazon Resource Name (ARN) of the traffic distribution group.</p>
151
151
  * @public
152
152
  */
153
- Arn?: string;
153
+ Arn?: string | undefined;
154
154
  /**
155
155
  * <p>The name of the traffic distribution group.</p>
156
156
  * @public
157
157
  */
158
- Name?: string;
158
+ Name?: string | undefined;
159
159
  /**
160
160
  * <p>The Amazon Resource Name (ARN) of the traffic distribution group.</p>
161
161
  * @public
162
162
  */
163
- InstanceArn?: string;
163
+ InstanceArn?: string | undefined;
164
164
  /**
165
165
  * <p>The status of the traffic distribution group. </p>
166
166
  * <ul>
@@ -194,7 +194,7 @@ export interface TrafficDistributionGroupSummary {
194
194
  * </ul>
195
195
  * @public
196
196
  */
197
- Status?: TrafficDistributionGroupStatus;
197
+ Status?: TrafficDistributionGroupStatus | undefined;
198
198
  /**
199
199
  * <p>Whether this is the default traffic distribution group created during instance
200
200
  * replication. The default traffic distribution group cannot be deleted by the
@@ -202,7 +202,7 @@ export interface TrafficDistributionGroupSummary {
202
202
  * part of the process for deleting a replica.</p>
203
203
  * @public
204
204
  */
205
- IsDefault?: boolean;
205
+ IsDefault?: boolean | undefined;
206
206
  }
207
207
  /**
208
208
  * @public
@@ -212,12 +212,12 @@ export interface ListTrafficDistributionGroupsResponse {
212
212
  * <p>If there are additional results, this is the token for the next set of results.</p>
213
213
  * @public
214
214
  */
215
- NextToken?: string;
215
+ NextToken?: string | undefined;
216
216
  /**
217
217
  * <p>A list of traffic distribution groups.</p>
218
218
  * @public
219
219
  */
220
- TrafficDistributionGroupSummaryList?: TrafficDistributionGroupSummary[];
220
+ TrafficDistributionGroupSummaryList?: TrafficDistributionGroupSummary[] | undefined;
221
221
  }
222
222
  /**
223
223
  * @public
@@ -234,13 +234,13 @@ export interface ListTrafficDistributionGroupUsersRequest {
234
234
  * <p>The maximum number of results to return per page.</p>
235
235
  * @public
236
236
  */
237
- MaxResults?: number;
237
+ MaxResults?: number | undefined;
238
238
  /**
239
239
  * <p>The token for the next set of results. Use the value returned in the previous
240
240
  * response in the next request to retrieve the next set of results.</p>
241
241
  * @public
242
242
  */
243
- NextToken?: string;
243
+ NextToken?: string | undefined;
244
244
  }
245
245
  /**
246
246
  * <p>Summary information about a traffic distribution group user.</p>
@@ -251,7 +251,7 @@ export interface TrafficDistributionGroupUserSummary {
251
251
  * <p>The identifier for the user. This can be the ID or the ARN of the user.</p>
252
252
  * @public
253
253
  */
254
- UserId?: string;
254
+ UserId?: string | undefined;
255
255
  }
256
256
  /**
257
257
  * @public
@@ -261,12 +261,12 @@ export interface ListTrafficDistributionGroupUsersResponse {
261
261
  * <p>If there are additional results, this is the token for the next set of results.</p>
262
262
  * @public
263
263
  */
264
- NextToken?: string;
264
+ NextToken?: string | undefined;
265
265
  /**
266
266
  * <p>A list of traffic distribution group users.</p>
267
267
  * @public
268
268
  */
269
- TrafficDistributionGroupUserSummaryList?: TrafficDistributionGroupUserSummary[];
269
+ TrafficDistributionGroupUserSummaryList?: TrafficDistributionGroupUserSummary[] | undefined;
270
270
  }
271
271
  /**
272
272
  * <p>Provides summary information about the use cases for the specified integration
@@ -289,12 +289,12 @@ export interface ListUseCasesRequest {
289
289
  * response in the next request to retrieve the next set of results.</p>
290
290
  * @public
291
291
  */
292
- NextToken?: string;
292
+ NextToken?: string | undefined;
293
293
  /**
294
294
  * <p>The maximum number of results to return per page.</p>
295
295
  * @public
296
296
  */
297
- MaxResults?: number;
297
+ MaxResults?: number | undefined;
298
298
  }
299
299
  /**
300
300
  * <p>Contains the
@@ -307,18 +307,18 @@ export interface UseCase {
307
307
  * <p>The identifier for the use case.</p>
308
308
  * @public
309
309
  */
310
- UseCaseId?: string;
310
+ UseCaseId?: string | undefined;
311
311
  /**
312
312
  * <p>The Amazon Resource Name (ARN) for the use case.</p>
313
313
  * @public
314
314
  */
315
- UseCaseArn?: string;
315
+ UseCaseArn?: string | undefined;
316
316
  /**
317
317
  * <p>The type of use case to associate to the integration association. Each integration
318
318
  * association can have only one of each use case type.</p>
319
319
  * @public
320
320
  */
321
- UseCaseType?: UseCaseType;
321
+ UseCaseType?: UseCaseType | undefined;
322
322
  }
323
323
  /**
324
324
  * @public
@@ -328,12 +328,12 @@ export interface ListUseCasesResponse {
328
328
  * <p>The use cases.</p>
329
329
  * @public
330
330
  */
331
- UseCaseSummaryList?: UseCase[];
331
+ UseCaseSummaryList?: UseCase[] | undefined;
332
332
  /**
333
333
  * <p>If there are additional results, this is the token for the next set of results.</p>
334
334
  * @public
335
335
  */
336
- NextToken?: string;
336
+ NextToken?: string | undefined;
337
337
  }
338
338
  /**
339
339
  * @public
@@ -349,12 +349,12 @@ export interface ListUserHierarchyGroupsRequest {
349
349
  * response in the next request to retrieve the next set of results.</p>
350
350
  * @public
351
351
  */
352
- NextToken?: string;
352
+ NextToken?: string | undefined;
353
353
  /**
354
354
  * <p>The maximum number of results to return per page. The default MaxResult size is 100.</p>
355
355
  * @public
356
356
  */
357
- MaxResults?: number;
357
+ MaxResults?: number | undefined;
358
358
  }
359
359
  /**
360
360
  * @public
@@ -364,12 +364,12 @@ export interface ListUserHierarchyGroupsResponse {
364
364
  * <p>Information about the hierarchy groups.</p>
365
365
  * @public
366
366
  */
367
- UserHierarchyGroupSummaryList?: HierarchyGroupSummary[];
367
+ UserHierarchyGroupSummaryList?: HierarchyGroupSummary[] | undefined;
368
368
  /**
369
369
  * <p>If there are additional results, this is the token for the next set of results.</p>
370
370
  * @public
371
371
  */
372
- NextToken?: string;
372
+ NextToken?: string | undefined;
373
373
  }
374
374
  /**
375
375
  * @public
@@ -391,12 +391,12 @@ export interface ListUserProficienciesRequest {
391
391
  * the next request to retrieve the next set of results.</p>
392
392
  * @public
393
393
  */
394
- NextToken?: string;
394
+ NextToken?: string | undefined;
395
395
  /**
396
396
  * <p>The maximum number of results to return per page.</p>
397
397
  * @public
398
398
  */
399
- MaxResults?: number;
399
+ MaxResults?: number | undefined;
400
400
  }
401
401
  /**
402
402
  * @public
@@ -406,22 +406,22 @@ export interface ListUserProficienciesResponse {
406
406
  * <p>If there are additional results, this is the token for the next set of results.</p>
407
407
  * @public
408
408
  */
409
- NextToken?: string;
409
+ NextToken?: string | undefined;
410
410
  /**
411
411
  * <p>Information about the user proficiencies.</p>
412
412
  * @public
413
413
  */
414
- UserProficiencyList?: UserProficiency[];
414
+ UserProficiencyList?: UserProficiency[] | undefined;
415
415
  /**
416
416
  * <p>The last time that the user's proficiencies are were modified.</p>
417
417
  * @public
418
418
  */
419
- LastModifiedTime?: Date;
419
+ LastModifiedTime?: Date | undefined;
420
420
  /**
421
421
  * <p>The region in which a user's proficiencies were last modified.</p>
422
422
  * @public
423
423
  */
424
- LastModifiedRegion?: string;
424
+ LastModifiedRegion?: string | undefined;
425
425
  }
426
426
  /**
427
427
  * @public
@@ -437,12 +437,12 @@ export interface ListUsersRequest {
437
437
  * response in the next request to retrieve the next set of results.</p>
438
438
  * @public
439
439
  */
440
- NextToken?: string;
440
+ NextToken?: string | undefined;
441
441
  /**
442
442
  * <p>The maximum number of results to return per page. The default MaxResult size is 100.</p>
443
443
  * @public
444
444
  */
445
- MaxResults?: number;
445
+ MaxResults?: number | undefined;
446
446
  }
447
447
  /**
448
448
  * <p>Contains summary information about a user.</p>
@@ -453,27 +453,27 @@ export interface UserSummary {
453
453
  * <p>The identifier of the user account.</p>
454
454
  * @public
455
455
  */
456
- Id?: string;
456
+ Id?: string | undefined;
457
457
  /**
458
458
  * <p>The Amazon Resource Name (ARN) of the user account.</p>
459
459
  * @public
460
460
  */
461
- Arn?: string;
461
+ Arn?: string | undefined;
462
462
  /**
463
463
  * <p>The Amazon Connect user name of the user account.</p>
464
464
  * @public
465
465
  */
466
- Username?: string;
466
+ Username?: string | undefined;
467
467
  /**
468
468
  * <p>The timestamp when this resource was last modified.</p>
469
469
  * @public
470
470
  */
471
- LastModifiedTime?: Date;
471
+ LastModifiedTime?: Date | undefined;
472
472
  /**
473
473
  * <p>The Amazon Web Services Region where this resource was last modified.</p>
474
474
  * @public
475
475
  */
476
- LastModifiedRegion?: string;
476
+ LastModifiedRegion?: string | undefined;
477
477
  }
478
478
  /**
479
479
  * @public
@@ -483,12 +483,12 @@ export interface ListUsersResponse {
483
483
  * <p>Information about the users.</p>
484
484
  * @public
485
485
  */
486
- UserSummaryList?: UserSummary[];
486
+ UserSummaryList?: UserSummary[] | undefined;
487
487
  /**
488
488
  * <p>If there are additional results, this is the token for the next set of results.</p>
489
489
  * @public
490
490
  */
491
- NextToken?: string;
491
+ NextToken?: string | undefined;
492
492
  }
493
493
  /**
494
494
  * @public
@@ -504,18 +504,18 @@ export interface ListViewsRequest {
504
504
  * <p>The type of the view.</p>
505
505
  * @public
506
506
  */
507
- Type?: ViewType;
507
+ Type?: ViewType | undefined;
508
508
  /**
509
509
  * <p>The token for the next set of results. Use the value returned in the previous response in
510
510
  * the next request to retrieve the next set of results.</p>
511
511
  * @public
512
512
  */
513
- NextToken?: string;
513
+ NextToken?: string | undefined;
514
514
  /**
515
515
  * <p>The maximum number of results to return per page. The default MaxResult size is 100.</p>
516
516
  * @public
517
517
  */
518
- MaxResults?: number;
518
+ MaxResults?: number | undefined;
519
519
  }
520
520
  /**
521
521
  * <p>A summary of a view's metadata.</p>
@@ -526,33 +526,33 @@ export interface ViewSummary {
526
526
  * <p>The identifier of the view.</p>
527
527
  * @public
528
528
  */
529
- Id?: string;
529
+ Id?: string | undefined;
530
530
  /**
531
531
  * <p>The Amazon Resource Name (ARN) of the view.</p>
532
532
  * @public
533
533
  */
534
- Arn?: string;
534
+ Arn?: string | undefined;
535
535
  /**
536
536
  * <p>The name of the view.</p>
537
537
  * @public
538
538
  */
539
- Name?: string;
539
+ Name?: string | undefined;
540
540
  /**
541
541
  * <p>The type of the view.</p>
542
542
  * @public
543
543
  */
544
- Type?: ViewType;
544
+ Type?: ViewType | undefined;
545
545
  /**
546
546
  * <p>Indicates the view status as either <code>SAVED</code> or <code>PUBLISHED</code>. The
547
547
  * <code>PUBLISHED</code> status will initiate validation on the content.</p>
548
548
  * @public
549
549
  */
550
- Status?: ViewStatus;
550
+ Status?: ViewStatus | undefined;
551
551
  /**
552
552
  * <p>The description of the view.</p>
553
553
  * @public
554
554
  */
555
- Description?: string;
555
+ Description?: string | undefined;
556
556
  }
557
557
  /**
558
558
  * @public
@@ -562,13 +562,13 @@ export interface ListViewsResponse {
562
562
  * <p>A list of view summaries.</p>
563
563
  * @public
564
564
  */
565
- ViewsSummaryList?: ViewSummary[];
565
+ ViewsSummaryList?: ViewSummary[] | undefined;
566
566
  /**
567
567
  * <p>The token for the next set of results. Use the value returned in the previous response in
568
568
  * the next request to retrieve the next set of results.</p>
569
569
  * @public
570
570
  */
571
- NextToken?: string;
571
+ NextToken?: string | undefined;
572
572
  }
573
573
  /**
574
574
  * @public
@@ -591,12 +591,12 @@ export interface ListViewVersionsRequest {
591
591
  * the next request to retrieve the next set of results.</p>
592
592
  * @public
593
593
  */
594
- NextToken?: string;
594
+ NextToken?: string | undefined;
595
595
  /**
596
596
  * <p>The maximum number of results to return per page. The default MaxResult size is 100.</p>
597
597
  * @public
598
598
  */
599
- MaxResults?: number;
599
+ MaxResults?: number | undefined;
600
600
  }
601
601
  /**
602
602
  * <p>A summary of a view version's metadata.</p>
@@ -607,37 +607,37 @@ export interface ViewVersionSummary {
607
607
  * <p>The identifier of the view version.</p>
608
608
  * @public
609
609
  */
610
- Id?: string;
610
+ Id?: string | undefined;
611
611
  /**
612
612
  * <p>The Amazon Resource Name (ARN) of the view version.</p>
613
613
  * @public
614
614
  */
615
- Arn?: string;
615
+ Arn?: string | undefined;
616
616
  /**
617
617
  * <p>The description of the view version.</p>
618
618
  * @public
619
619
  */
620
- Description?: string;
620
+ Description?: string | undefined;
621
621
  /**
622
622
  * <p>The name of the view version.</p>
623
623
  * @public
624
624
  */
625
- Name?: string;
625
+ Name?: string | undefined;
626
626
  /**
627
627
  * <p>The type of the view version.</p>
628
628
  * @public
629
629
  */
630
- Type?: ViewType;
630
+ Type?: ViewType | undefined;
631
631
  /**
632
632
  * <p>The sequentially incremented version of the view version.</p>
633
633
  * @public
634
634
  */
635
- Version?: number;
635
+ Version?: number | undefined;
636
636
  /**
637
637
  * <p>The description of the view version.</p>
638
638
  * @public
639
639
  */
640
- VersionDescription?: string;
640
+ VersionDescription?: string | undefined;
641
641
  }
642
642
  /**
643
643
  * @public
@@ -647,13 +647,13 @@ export interface ListViewVersionsResponse {
647
647
  * <p>A list of view version summaries.</p>
648
648
  * @public
649
649
  */
650
- ViewVersionSummaryList?: ViewVersionSummary[];
650
+ ViewVersionSummaryList?: ViewVersionSummary[] | undefined;
651
651
  /**
652
652
  * <p>The token for the next set of results. Use the value returned in the previous response in
653
653
  * the next request to retrieve the next set of results.</p>
654
654
  * @public
655
655
  */
656
- NextToken?: string;
656
+ NextToken?: string | undefined;
657
657
  }
658
658
  /**
659
659
  * @public
@@ -681,7 +681,7 @@ export interface MonitorContactRequest {
681
681
  * barge is enabled.</p>
682
682
  * @public
683
683
  */
684
- AllowedMonitorCapabilities?: MonitorCapability[];
684
+ AllowedMonitorCapabilities?: MonitorCapability[] | undefined;
685
685
  /**
686
686
  * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
687
687
  * request. If not provided, the Amazon Web Services
@@ -689,7 +689,7 @@ export interface MonitorContactRequest {
689
689
  * <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
690
690
  * @public
691
691
  */
692
- ClientToken?: string;
692
+ ClientToken?: string | undefined;
693
693
  }
694
694
  /**
695
695
  * @public
@@ -699,12 +699,12 @@ export interface MonitorContactResponse {
699
699
  * <p>The identifier of the contact.</p>
700
700
  * @public
701
701
  */
702
- ContactId?: string;
702
+ ContactId?: string | undefined;
703
703
  /**
704
704
  * <p>The ARN of the contact.</p>
705
705
  * @public
706
706
  */
707
- ContactArn?: string;
707
+ ContactArn?: string | undefined;
708
708
  }
709
709
  /**
710
710
  * <p>Operation cannot be performed at this time as there is a conflict with another operation or
@@ -714,7 +714,7 @@ export interface MonitorContactResponse {
714
714
  export declare class ConflictException extends __BaseException {
715
715
  readonly name: "ConflictException";
716
716
  readonly $fault: "client";
717
- Message?: string;
717
+ Message?: string | undefined;
718
718
  /**
719
719
  * @internal
720
720
  */
@@ -739,7 +739,7 @@ export interface PauseContactRequest {
739
739
  * <p>The identifier of the flow.</p>
740
740
  * @public
741
741
  */
742
- ContactFlowId?: string;
742
+ ContactFlowId?: string | undefined;
743
743
  }
744
744
  /**
745
745
  * @public
@@ -787,7 +787,7 @@ export interface ReleasePhoneNumberRequest {
787
787
  * <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
788
788
  * @public
789
789
  */
790
- ClientToken?: string;
790
+ ClientToken?: string | undefined;
791
791
  }
792
792
  /**
793
793
  * @public
@@ -810,7 +810,7 @@ export interface ReplicateInstanceRequest {
810
810
  * <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
811
811
  * @public
812
812
  */
813
- ClientToken?: string;
813
+ ClientToken?: string | undefined;
814
814
  /**
815
815
  * <p>The alias for the replicated instance. The <code>ReplicaAlias</code> must be unique.</p>
816
816
  * @public
@@ -827,12 +827,12 @@ export interface ReplicateInstanceResponse {
827
827
  * replicated from.</p>
828
828
  * @public
829
829
  */
830
- Id?: string;
830
+ Id?: string | undefined;
831
831
  /**
832
832
  * <p>The Amazon Resource Name (ARN) of the replicated instance.</p>
833
833
  * @public
834
834
  */
835
- Arn?: string;
835
+ Arn?: string | undefined;
836
836
  }
837
837
  /**
838
838
  * @public
@@ -853,7 +853,7 @@ export interface ResumeContactRequest {
853
853
  * <p>The identifier of the flow.</p>
854
854
  * @public
855
855
  */
856
- ContactFlowId?: string;
856
+ ContactFlowId?: string | undefined;
857
857
  }
858
858
  /**
859
859
  * @public
@@ -894,17 +894,17 @@ export interface SearchAgentStatusesResponse {
894
894
  * <p>The search criteria to be used to return agent statuses.</p>
895
895
  * @public
896
896
  */
897
- AgentStatuses?: AgentStatus[];
897
+ AgentStatuses?: AgentStatus[] | undefined;
898
898
  /**
899
899
  * <p>If there are additional results, this is the token for the next set of results.</p>
900
900
  * @public
901
901
  */
902
- NextToken?: string;
902
+ NextToken?: string | undefined;
903
903
  /**
904
904
  * <p>The total number of agent statuses which matched your search query.</p>
905
905
  * @public
906
906
  */
907
- ApproximateTotalCount?: number;
907
+ ApproximateTotalCount?: number | undefined;
908
908
  }
909
909
  /**
910
910
  * @public
@@ -914,14 +914,14 @@ export interface SearchAvailablePhoneNumbersRequest {
914
914
  * <p>The Amazon Resource Name (ARN) for Amazon Connect instances or traffic distribution groups that phone number inbound traffic is routed through. You must enter <code>InstanceId</code> or <code>TargetArn</code>. </p>
915
915
  * @public
916
916
  */
917
- TargetArn?: string;
917
+ TargetArn?: string | undefined;
918
918
  /**
919
919
  * <p>The identifier of the Amazon Connect instance that phone numbers are claimed to. You
920
920
  * can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the
921
921
  * instance ID</a> in the Amazon Resource Name (ARN) of the instance. You must enter <code>InstanceId</code> or <code>TargetArn</code>. </p>
922
922
  * @public
923
923
  */
924
- InstanceId?: string;
924
+ InstanceId?: string | undefined;
925
925
  /**
926
926
  * <p>The ISO country code.</p>
927
927
  * @public
@@ -936,18 +936,18 @@ export interface SearchAvailablePhoneNumbersRequest {
936
936
  * <p>The prefix of the phone number. If provided, it must contain <code>+</code> as part of the country code.</p>
937
937
  * @public
938
938
  */
939
- PhoneNumberPrefix?: string;
939
+ PhoneNumberPrefix?: string | undefined;
940
940
  /**
941
941
  * <p>The maximum number of results to return per page.</p>
942
942
  * @public
943
943
  */
944
- MaxResults?: number;
944
+ MaxResults?: number | undefined;
945
945
  /**
946
946
  * <p>The token for the next set of results. Use the value returned in the previous
947
947
  * response in the next request to retrieve the next set of results.</p>
948
948
  * @public
949
949
  */
950
- NextToken?: string;
950
+ NextToken?: string | undefined;
951
951
  }
952
952
  /**
953
953
  * <p>Information about available phone numbers.</p>
@@ -958,17 +958,17 @@ export interface AvailableNumberSummary {
958
958
  * <p>The phone number. Phone numbers are formatted <code>[+] [country code] [subscriber number including area code]</code>.</p>
959
959
  * @public
960
960
  */
961
- PhoneNumber?: string;
961
+ PhoneNumber?: string | undefined;
962
962
  /**
963
963
  * <p>The ISO country code.</p>
964
964
  * @public
965
965
  */
966
- PhoneNumberCountryCode?: PhoneNumberCountryCode;
966
+ PhoneNumberCountryCode?: PhoneNumberCountryCode | undefined;
967
967
  /**
968
968
  * <p>The type of phone number.</p>
969
969
  * @public
970
970
  */
971
- PhoneNumberType?: PhoneNumberType;
971
+ PhoneNumberType?: PhoneNumberType | undefined;
972
972
  }
973
973
  /**
974
974
  * @public
@@ -978,12 +978,12 @@ export interface SearchAvailablePhoneNumbersResponse {
978
978
  * <p>If there are additional results, this is the token for the next set of results.</p>
979
979
  * @public
980
980
  */
981
- NextToken?: string;
981
+ NextToken?: string | undefined;
982
982
  /**
983
983
  * <p>A list of available phone numbers that you can claim to your Amazon Connect instance or traffic distribution group.</p>
984
984
  * @public
985
985
  */
986
- AvailableNumbersList?: AvailableNumberSummary[];
986
+ AvailableNumbersList?: AvailableNumberSummary[] | undefined;
987
987
  }
988
988
  /**
989
989
  * <p>An object that can be used to specify Tag conditions inside the <code>SearchFilter</code>.
@@ -1006,18 +1006,18 @@ export interface ControlPlaneTagFilter {
1006
1006
  * </p>
1007
1007
  * @public
1008
1008
  */
1009
- OrConditions?: TagCondition[][];
1009
+ OrConditions?: TagCondition[][] | undefined;
1010
1010
  /**
1011
1011
  * <p>A list of conditions which would be applied together with an <code>AND</code>
1012
1012
  * condition.</p>
1013
1013
  * @public
1014
1014
  */
1015
- AndConditions?: TagCondition[];
1015
+ AndConditions?: TagCondition[] | undefined;
1016
1016
  /**
1017
1017
  * <p>A leaf node condition which can be used to specify a tag condition. </p>
1018
1018
  * @public
1019
1019
  */
1020
- TagCondition?: TagCondition;
1020
+ TagCondition?: TagCondition | undefined;
1021
1021
  }
1022
1022
  /**
1023
1023
  * <p>The search criteria to be used to return flow modules.</p>
@@ -1039,7 +1039,7 @@ export interface ContactFlowModuleSearchFilter {
1039
1039
  * </ul>
1040
1040
  * @public
1041
1041
  */
1042
- TagFilter?: ControlPlaneTagFilter;
1042
+ TagFilter?: ControlPlaneTagFilter | undefined;
1043
1043
  }
1044
1044
  /**
1045
1045
  * @public
@@ -1049,17 +1049,17 @@ export interface SearchContactFlowModulesResponse {
1049
1049
  * <p>The search criteria to be used to return contact flow modules.</p>
1050
1050
  * @public
1051
1051
  */
1052
- ContactFlowModules?: ContactFlowModule[];
1052
+ ContactFlowModules?: ContactFlowModule[] | undefined;
1053
1053
  /**
1054
1054
  * <p>If there are additional results, this is the token for the next set of results.</p>
1055
1055
  * @public
1056
1056
  */
1057
- NextToken?: string;
1057
+ NextToken?: string | undefined;
1058
1058
  /**
1059
1059
  * <p>The total number of contact flows which matched your search query.</p>
1060
1060
  * @public
1061
1061
  */
1062
- ApproximateTotalCount?: number;
1062
+ ApproximateTotalCount?: number | undefined;
1063
1063
  }
1064
1064
  /**
1065
1065
  * <p>Filters to be applied to search results.</p>
@@ -1081,7 +1081,7 @@ export interface ContactFlowSearchFilter {
1081
1081
  * </ul>
1082
1082
  * @public
1083
1083
  */
1084
- TagFilter?: ControlPlaneTagFilter;
1084
+ TagFilter?: ControlPlaneTagFilter | undefined;
1085
1085
  }
1086
1086
  /**
1087
1087
  * @public
@@ -1091,17 +1091,17 @@ export interface SearchContactFlowsResponse {
1091
1091
  * <p>Information about the flows.</p>
1092
1092
  * @public
1093
1093
  */
1094
- ContactFlows?: ContactFlow[];
1094
+ ContactFlows?: ContactFlow[] | undefined;
1095
1095
  /**
1096
1096
  * <p>If there are additional results, this is the token for the next set of results.</p>
1097
1097
  * @public
1098
1098
  */
1099
- NextToken?: string;
1099
+ NextToken?: string | undefined;
1100
1100
  /**
1101
1101
  * <p>The total number of contact flows which matched your search query.</p>
1102
1102
  * @public
1103
1103
  */
1104
- ApproximateTotalCount?: number;
1104
+ ApproximateTotalCount?: number | undefined;
1105
1105
  }
1106
1106
  /**
1107
1107
  * @public
@@ -1154,7 +1154,7 @@ export interface Transcript {
1154
1154
  * <p>The match type combining search criteria using multiple transcript criteria.</p>
1155
1155
  * @public
1156
1156
  */
1157
- MatchType?: SearchContactsMatchType;
1157
+ MatchType?: SearchContactsMatchType | undefined;
1158
1158
  }
1159
1159
  /**
1160
1160
  * <p>A structure that defines search criteria for contacts using analysis outputs from Amazon
@@ -1166,7 +1166,7 @@ export interface ContactAnalysis {
1166
1166
  * <p>Search criteria based on transcript analyzed by Amazon Connect Contact Lens.</p>
1167
1167
  * @public
1168
1168
  */
1169
- Transcript?: Transcript;
1169
+ Transcript?: Transcript | undefined;
1170
1170
  }
1171
1171
  /**
1172
1172
  * <p>The search criteria based on user-defned contact attribute key and values to search
@@ -1202,7 +1202,7 @@ export interface SearchableContactAttributes {
1202
1202
  * attributes.</p>
1203
1203
  * @public
1204
1204
  */
1205
- MatchType?: SearchContactsMatchType;
1205
+ MatchType?: SearchContactsMatchType | undefined;
1206
1206
  }
1207
1207
  /**
1208
1208
  * <p>A structure of search criteria to be used to return contacts.</p>
@@ -1213,32 +1213,32 @@ export interface SearchCriteria {
1213
1213
  * <p>The identifiers of agents who handled the contacts.</p>
1214
1214
  * @public
1215
1215
  */
1216
- AgentIds?: string[];
1216
+ AgentIds?: string[] | undefined;
1217
1217
  /**
1218
1218
  * <p>The agent hierarchy groups of the agent at the time of handling the contact.</p>
1219
1219
  * @public
1220
1220
  */
1221
- AgentHierarchyGroups?: AgentHierarchyGroups;
1221
+ AgentHierarchyGroups?: AgentHierarchyGroups | undefined;
1222
1222
  /**
1223
1223
  * <p>The list of channels associated with contacts.</p>
1224
1224
  * @public
1225
1225
  */
1226
- Channels?: Channel[];
1226
+ Channels?: Channel[] | undefined;
1227
1227
  /**
1228
1228
  * <p>Search criteria based on analysis outputs from Amazon Connect Contact Lens.</p>
1229
1229
  * @public
1230
1230
  */
1231
- ContactAnalysis?: ContactAnalysis;
1231
+ ContactAnalysis?: ContactAnalysis | undefined;
1232
1232
  /**
1233
1233
  * <p>The list of initiation methods associated with contacts.</p>
1234
1234
  * @public
1235
1235
  */
1236
- InitiationMethods?: ContactInitiationMethod[];
1236
+ InitiationMethods?: ContactInitiationMethod[] | undefined;
1237
1237
  /**
1238
1238
  * <p>The list of queue IDs associated with contacts.</p>
1239
1239
  * @public
1240
1240
  */
1241
- QueueIds?: string[];
1241
+ QueueIds?: string[] | undefined;
1242
1242
  /**
1243
1243
  * <p>The search criteria based on user-defined contact attributes that have been configured for
1244
1244
  * contact search. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/search-custom-attributes.html">Search by custom contact
@@ -1250,7 +1250,7 @@ export interface SearchCriteria {
1250
1250
  * </important>
1251
1251
  * @public
1252
1252
  */
1253
- SearchableContactAttributes?: SearchableContactAttributes;
1253
+ SearchableContactAttributes?: SearchableContactAttributes | undefined;
1254
1254
  }
1255
1255
  /**
1256
1256
  * @public
@@ -1338,23 +1338,23 @@ export interface SearchContactsRequest {
1338
1338
  * <p>The search criteria to be used to return contacts.</p>
1339
1339
  * @public
1340
1340
  */
1341
- SearchCriteria?: SearchCriteria;
1341
+ SearchCriteria?: SearchCriteria | undefined;
1342
1342
  /**
1343
1343
  * <p>The maximum number of results to return per page.</p>
1344
1344
  * @public
1345
1345
  */
1346
- MaxResults?: number;
1346
+ MaxResults?: number | undefined;
1347
1347
  /**
1348
1348
  * <p>The token for the next set of results. Use the value returned in the previous response in
1349
1349
  * the next request to retrieve the next set of results.</p>
1350
1350
  * @public
1351
1351
  */
1352
- NextToken?: string;
1352
+ NextToken?: string | undefined;
1353
1353
  /**
1354
1354
  * <p>Specifies a field to sort by and a sort order.</p>
1355
1355
  * @public
1356
1356
  */
1357
- Sort?: Sort;
1357
+ Sort?: Sort | undefined;
1358
1358
  }
1359
1359
  /**
1360
1360
  * <p>Information about the agent who accepted the contact.</p>
@@ -1365,12 +1365,12 @@ export interface ContactSearchSummaryAgentInfo {
1365
1365
  * <p>The identifier of the agent who accepted the contact.</p>
1366
1366
  * @public
1367
1367
  */
1368
- Id?: string;
1368
+ Id?: string | undefined;
1369
1369
  /**
1370
1370
  * <p>The timestamp when the contact was connected to the agent.</p>
1371
1371
  * @public
1372
1372
  */
1373
- ConnectedToAgentTimestamp?: Date;
1373
+ ConnectedToAgentTimestamp?: Date | undefined;
1374
1374
  }
1375
1375
  /**
1376
1376
  * <p>If this contact was queued, this contains information about the queue.</p>
@@ -1381,12 +1381,12 @@ export interface ContactSearchSummaryQueueInfo {
1381
1381
  * <p>The unique identifier for the queue.</p>
1382
1382
  * @public
1383
1383
  */
1384
- Id?: string;
1384
+ Id?: string | undefined;
1385
1385
  /**
1386
1386
  * <p>The timestamp when the contact was added to the queue.</p>
1387
1387
  * @public
1388
1388
  */
1389
- EnqueueTimestamp?: Date;
1389
+ EnqueueTimestamp?: Date | undefined;
1390
1390
  }
1391
1391
  /**
1392
1392
  * <p>Information of returned contact.</p>
@@ -1397,42 +1397,42 @@ export interface ContactSearchSummary {
1397
1397
  * <p>The Amazon Resource Name (ARN) of the contact.</p>
1398
1398
  * @public
1399
1399
  */
1400
- Arn?: string;
1400
+ Arn?: string | undefined;
1401
1401
  /**
1402
1402
  * <p>The identifier of the contact summary.</p>
1403
1403
  * @public
1404
1404
  */
1405
- Id?: string;
1405
+ Id?: string | undefined;
1406
1406
  /**
1407
1407
  * <p>If this contact is related to other contacts, this is the ID of the initial contact.</p>
1408
1408
  * @public
1409
1409
  */
1410
- InitialContactId?: string;
1410
+ InitialContactId?: string | undefined;
1411
1411
  /**
1412
1412
  * <p>If this contact is not the first contact, this is the ID of the previous contact.</p>
1413
1413
  * @public
1414
1414
  */
1415
- PreviousContactId?: string;
1415
+ PreviousContactId?: string | undefined;
1416
1416
  /**
1417
1417
  * <p>Indicates how the contact was initiated.</p>
1418
1418
  * @public
1419
1419
  */
1420
- InitiationMethod?: ContactInitiationMethod;
1420
+ InitiationMethod?: ContactInitiationMethod | undefined;
1421
1421
  /**
1422
1422
  * <p>How the contact reached your contact center.</p>
1423
1423
  * @public
1424
1424
  */
1425
- Channel?: Channel;
1425
+ Channel?: Channel | undefined;
1426
1426
  /**
1427
1427
  * <p>If this contact was queued, this contains information about the queue.</p>
1428
1428
  * @public
1429
1429
  */
1430
- QueueInfo?: ContactSearchSummaryQueueInfo;
1430
+ QueueInfo?: ContactSearchSummaryQueueInfo | undefined;
1431
1431
  /**
1432
1432
  * <p>Information about the agent who accepted the contact.</p>
1433
1433
  * @public
1434
1434
  */
1435
- AgentInfo?: ContactSearchSummaryAgentInfo;
1435
+ AgentInfo?: ContactSearchSummaryAgentInfo | undefined;
1436
1436
  /**
1437
1437
  * <p>The date and time this contact was initiated, in UTC time. For <code>INBOUND</code>, this is
1438
1438
  * when the contact arrived. For <code>OUTBOUND</code>, this is when the agent began dialing. For
@@ -1443,17 +1443,17 @@ export interface ContactSearchSummary {
1443
1443
  * to a contact.</p>
1444
1444
  * @public
1445
1445
  */
1446
- InitiationTimestamp?: Date;
1446
+ InitiationTimestamp?: Date | undefined;
1447
1447
  /**
1448
1448
  * <p>The timestamp when the customer endpoint disconnected from Amazon Connect.</p>
1449
1449
  * @public
1450
1450
  */
1451
- DisconnectTimestamp?: Date;
1451
+ DisconnectTimestamp?: Date | undefined;
1452
1452
  /**
1453
1453
  * <p>The timestamp, in Unix epoch time format, at which to start running the inbound flow.</p>
1454
1454
  * @public
1455
1455
  */
1456
- ScheduledTimestamp?: Date;
1456
+ ScheduledTimestamp?: Date | undefined;
1457
1457
  }
1458
1458
  /**
1459
1459
  * @public
@@ -1468,12 +1468,12 @@ export interface SearchContactsResponse {
1468
1468
  * <p>If there are additional results, this is the token for the next set of results.</p>
1469
1469
  * @public
1470
1470
  */
1471
- NextToken?: string;
1471
+ NextToken?: string | undefined;
1472
1472
  /**
1473
1473
  * <p>The total number of contacts which matched your search query.</p>
1474
1474
  * @public
1475
1475
  */
1476
- TotalCount?: number;
1476
+ TotalCount?: number | undefined;
1477
1477
  }
1478
1478
  /**
1479
1479
  * <p>Filters to be applied to search results.</p>
@@ -1495,7 +1495,7 @@ export interface HoursOfOperationSearchFilter {
1495
1495
  * </ul>
1496
1496
  * @public
1497
1497
  */
1498
- TagFilter?: ControlPlaneTagFilter;
1498
+ TagFilter?: ControlPlaneTagFilter | undefined;
1499
1499
  }
1500
1500
  /**
1501
1501
  * @public
@@ -1505,17 +1505,17 @@ export interface SearchHoursOfOperationsResponse {
1505
1505
  * <p>Information about the hours of operations.</p>
1506
1506
  * @public
1507
1507
  */
1508
- HoursOfOperations?: HoursOfOperation[];
1508
+ HoursOfOperations?: HoursOfOperation[] | undefined;
1509
1509
  /**
1510
1510
  * <p>If there are additional results, this is the token for the next set of results.</p>
1511
1511
  * @public
1512
1512
  */
1513
- NextToken?: string;
1513
+ NextToken?: string | undefined;
1514
1514
  /**
1515
1515
  * <p>The total number of hours of operations which matched your search query.</p>
1516
1516
  * @public
1517
1517
  */
1518
- ApproximateTotalCount?: number;
1518
+ ApproximateTotalCount?: number | undefined;
1519
1519
  }
1520
1520
  /**
1521
1521
  * @public
@@ -1525,18 +1525,18 @@ export interface SearchPredefinedAttributesResponse {
1525
1525
  * <p>Predefined attributes matched by the search criteria.</p>
1526
1526
  * @public
1527
1527
  */
1528
- PredefinedAttributes?: PredefinedAttribute[];
1528
+ PredefinedAttributes?: PredefinedAttribute[] | undefined;
1529
1529
  /**
1530
1530
  * <p>The token for the next set of results. Use the value returned in the previous response in
1531
1531
  * the next request to retrieve the next set of results.</p>
1532
1532
  * @public
1533
1533
  */
1534
- NextToken?: string;
1534
+ NextToken?: string | undefined;
1535
1535
  /**
1536
1536
  * <p>The approximate number of predefined attributes which matched your search query.</p>
1537
1537
  * @public
1538
1538
  */
1539
- ApproximateTotalCount?: number;
1539
+ ApproximateTotalCount?: number | undefined;
1540
1540
  }
1541
1541
  /**
1542
1542
  * <p>Filters to be applied to search results.</p>
@@ -1558,7 +1558,7 @@ export interface PromptSearchFilter {
1558
1558
  * </ul>
1559
1559
  * @public
1560
1560
  */
1561
- TagFilter?: ControlPlaneTagFilter;
1561
+ TagFilter?: ControlPlaneTagFilter | undefined;
1562
1562
  }
1563
1563
  /**
1564
1564
  * @public
@@ -1568,17 +1568,17 @@ export interface SearchPromptsResponse {
1568
1568
  * <p>Information about the prompts.</p>
1569
1569
  * @public
1570
1570
  */
1571
- Prompts?: Prompt[];
1571
+ Prompts?: Prompt[] | undefined;
1572
1572
  /**
1573
1573
  * <p>If there are additional results, this is the token for the next set of results.</p>
1574
1574
  * @public
1575
1575
  */
1576
- NextToken?: string;
1576
+ NextToken?: string | undefined;
1577
1577
  /**
1578
1578
  * <p>The total number of quick connects which matched your search query.</p>
1579
1579
  * @public
1580
1580
  */
1581
- ApproximateTotalCount?: number;
1581
+ ApproximateTotalCount?: number | undefined;
1582
1582
  }
1583
1583
  /**
1584
1584
  * @public
@@ -1611,7 +1611,7 @@ export interface QueueSearchFilter {
1611
1611
  * </ul>
1612
1612
  * @public
1613
1613
  */
1614
- TagFilter?: ControlPlaneTagFilter;
1614
+ TagFilter?: ControlPlaneTagFilter | undefined;
1615
1615
  }
1616
1616
  /**
1617
1617
  * @public
@@ -1621,17 +1621,17 @@ export interface SearchQueuesResponse {
1621
1621
  * <p>Information about the queues.</p>
1622
1622
  * @public
1623
1623
  */
1624
- Queues?: Queue[];
1624
+ Queues?: Queue[] | undefined;
1625
1625
  /**
1626
1626
  * <p>If there are additional results, this is the token for the next set of results.</p>
1627
1627
  * @public
1628
1628
  */
1629
- NextToken?: string;
1629
+ NextToken?: string | undefined;
1630
1630
  /**
1631
1631
  * <p>The total number of queues which matched your search query.</p>
1632
1632
  * @public
1633
1633
  */
1634
- ApproximateTotalCount?: number;
1634
+ ApproximateTotalCount?: number | undefined;
1635
1635
  }
1636
1636
  /**
1637
1637
  * <p>Filters to be applied to search results.</p>
@@ -1653,7 +1653,7 @@ export interface QuickConnectSearchFilter {
1653
1653
  * </ul>
1654
1654
  * @public
1655
1655
  */
1656
- TagFilter?: ControlPlaneTagFilter;
1656
+ TagFilter?: ControlPlaneTagFilter | undefined;
1657
1657
  }
1658
1658
  /**
1659
1659
  * @public
@@ -1663,17 +1663,17 @@ export interface SearchQuickConnectsResponse {
1663
1663
  * <p>Information about the quick connects.</p>
1664
1664
  * @public
1665
1665
  */
1666
- QuickConnects?: QuickConnect[];
1666
+ QuickConnects?: QuickConnect[] | undefined;
1667
1667
  /**
1668
1668
  * <p>If there are additional results, this is the token for the next set of results.</p>
1669
1669
  * @public
1670
1670
  */
1671
- NextToken?: string;
1671
+ NextToken?: string | undefined;
1672
1672
  /**
1673
1673
  * <p>The total number of quick connects which matched your search query.</p>
1674
1674
  * @public
1675
1675
  */
1676
- ApproximateTotalCount?: number;
1676
+ ApproximateTotalCount?: number | undefined;
1677
1677
  }
1678
1678
  /**
1679
1679
  * <p>Maximum number (1000) of tags have been returned with current request. Consider changing
@@ -1683,7 +1683,7 @@ export interface SearchQuickConnectsResponse {
1683
1683
  export declare class MaximumResultReturnedException extends __BaseException {
1684
1684
  readonly name: "MaximumResultReturnedException";
1685
1685
  readonly $fault: "client";
1686
- Message?: string;
1686
+ Message?: string | undefined;
1687
1687
  /**
1688
1688
  * @internal
1689
1689
  */
@@ -1698,24 +1698,24 @@ export interface TagSearchCondition {
1698
1698
  * <p>The tag key used in the tag search condition.</p>
1699
1699
  * @public
1700
1700
  */
1701
- tagKey?: string;
1701
+ tagKey?: string | undefined;
1702
1702
  /**
1703
1703
  * <p>The tag value used in the tag search condition.</p>
1704
1704
  * @public
1705
1705
  */
1706
- tagValue?: string;
1706
+ tagValue?: string | undefined;
1707
1707
  /**
1708
1708
  * <p>The type of comparison to be made when evaluating the tag key in tag search
1709
1709
  * condition.</p>
1710
1710
  * @public
1711
1711
  */
1712
- tagKeyComparisonType?: StringComparisonType;
1712
+ tagKeyComparisonType?: StringComparisonType | undefined;
1713
1713
  /**
1714
1714
  * <p>The type of comparison to be made when evaluating the tag value in tag search
1715
1715
  * condition.</p>
1716
1716
  * @public
1717
1717
  */
1718
- tagValueComparisonType?: StringComparisonType;
1718
+ tagValueComparisonType?: StringComparisonType | undefined;
1719
1719
  }
1720
1720
  /**
1721
1721
  * <p>The search criteria to be used to search tags.</p>
@@ -1726,7 +1726,7 @@ export interface ResourceTagsSearchCriteria {
1726
1726
  * <p>The search criteria to be used to return tags.</p>
1727
1727
  * @public
1728
1728
  */
1729
- TagSearchCondition?: TagSearchCondition;
1729
+ TagSearchCondition?: TagSearchCondition | undefined;
1730
1730
  }
1731
1731
  /**
1732
1732
  * @public
@@ -1772,23 +1772,23 @@ export interface SearchResourceTagsRequest {
1772
1772
  * </ul>
1773
1773
  * @public
1774
1774
  */
1775
- ResourceTypes?: string[];
1775
+ ResourceTypes?: string[] | undefined;
1776
1776
  /**
1777
1777
  * <p>The token for the next set of results. Use the value returned in the previous response in
1778
1778
  * the next request to retrieve the next set of results.</p>
1779
1779
  * @public
1780
1780
  */
1781
- NextToken?: string;
1781
+ NextToken?: string | undefined;
1782
1782
  /**
1783
1783
  * <p>The maximum number of results to return per page.</p>
1784
1784
  * @public
1785
1785
  */
1786
- MaxResults?: number;
1786
+ MaxResults?: number | undefined;
1787
1787
  /**
1788
1788
  * <p>The search criteria to be used to return tags.</p>
1789
1789
  * @public
1790
1790
  */
1791
- SearchCriteria?: ResourceTagsSearchCriteria;
1791
+ SearchCriteria?: ResourceTagsSearchCriteria | undefined;
1792
1792
  }
1793
1793
  /**
1794
1794
  * <p>A tag set contains tag key and tag value.</p>
@@ -1799,12 +1799,12 @@ export interface TagSet {
1799
1799
  * <p>The tag key in the tagSet.</p>
1800
1800
  * @public
1801
1801
  */
1802
- key?: string;
1802
+ key?: string | undefined;
1803
1803
  /**
1804
1804
  * <p>The tag value in the tagSet.</p>
1805
1805
  * @public
1806
1806
  */
1807
- value?: string;
1807
+ value?: string | undefined;
1808
1808
  }
1809
1809
  /**
1810
1810
  * @public
@@ -1814,12 +1814,12 @@ export interface SearchResourceTagsResponse {
1814
1814
  * <p>A list of tags used in the Amazon Connect instance.</p>
1815
1815
  * @public
1816
1816
  */
1817
- Tags?: TagSet[];
1817
+ Tags?: TagSet[] | undefined;
1818
1818
  /**
1819
1819
  * <p>If there are additional results, this is the token for the next set of results.</p>
1820
1820
  * @public
1821
1821
  */
1822
- NextToken?: string;
1822
+ NextToken?: string | undefined;
1823
1823
  }
1824
1824
  /**
1825
1825
  * <p>Filters to be applied to search results.</p>
@@ -1841,7 +1841,7 @@ export interface RoutingProfileSearchFilter {
1841
1841
  * </ul>
1842
1842
  * @public
1843
1843
  */
1844
- TagFilter?: ControlPlaneTagFilter;
1844
+ TagFilter?: ControlPlaneTagFilter | undefined;
1845
1845
  }
1846
1846
  /**
1847
1847
  * @public
@@ -1851,17 +1851,17 @@ export interface SearchRoutingProfilesResponse {
1851
1851
  * <p>Information about the routing profiles.</p>
1852
1852
  * @public
1853
1853
  */
1854
- RoutingProfiles?: RoutingProfile[];
1854
+ RoutingProfiles?: RoutingProfile[] | undefined;
1855
1855
  /**
1856
1856
  * <p>If there are additional results, this is the token for the next set of results.</p>
1857
1857
  * @public
1858
1858
  */
1859
- NextToken?: string;
1859
+ NextToken?: string | undefined;
1860
1860
  /**
1861
1861
  * <p>The total number of routing profiles which matched your search query.</p>
1862
1862
  * @public
1863
1863
  */
1864
- ApproximateTotalCount?: number;
1864
+ ApproximateTotalCount?: number | undefined;
1865
1865
  }
1866
1866
  /**
1867
1867
  * <p>Filters to be applied to search results.</p>
@@ -1883,7 +1883,7 @@ export interface SecurityProfilesSearchFilter {
1883
1883
  * </ul>
1884
1884
  * @public
1885
1885
  */
1886
- TagFilter?: ControlPlaneTagFilter;
1886
+ TagFilter?: ControlPlaneTagFilter | undefined;
1887
1887
  }
1888
1888
  /**
1889
1889
  * <p>Information about the returned security profiles.</p>
@@ -1894,32 +1894,32 @@ export interface SecurityProfileSearchSummary {
1894
1894
  * <p>The identifier of the security profile.</p>
1895
1895
  * @public
1896
1896
  */
1897
- Id?: string;
1897
+ Id?: string | undefined;
1898
1898
  /**
1899
1899
  * <p>The organization resource identifier.</p>
1900
1900
  * @public
1901
1901
  */
1902
- OrganizationResourceId?: string;
1902
+ OrganizationResourceId?: string | undefined;
1903
1903
  /**
1904
1904
  * <p>The Amazon Resource Name (ARN) of the security profile.</p>
1905
1905
  * @public
1906
1906
  */
1907
- Arn?: string;
1907
+ Arn?: string | undefined;
1908
1908
  /**
1909
1909
  * <p>The name of the security profile.</p>
1910
1910
  * @public
1911
1911
  */
1912
- SecurityProfileName?: string;
1912
+ SecurityProfileName?: string | undefined;
1913
1913
  /**
1914
1914
  * <p>The description of the security profile.</p>
1915
1915
  * @public
1916
1916
  */
1917
- Description?: string;
1917
+ Description?: string | undefined;
1918
1918
  /**
1919
1919
  * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
1920
1920
  * @public
1921
1921
  */
1922
- Tags?: Record<string, string>;
1922
+ Tags?: Record<string, string> | undefined;
1923
1923
  }
1924
1924
  /**
1925
1925
  * @public
@@ -1929,17 +1929,17 @@ export interface SearchSecurityProfilesResponse {
1929
1929
  * <p>Information about the security profiles.</p>
1930
1930
  * @public
1931
1931
  */
1932
- SecurityProfiles?: SecurityProfileSearchSummary[];
1932
+ SecurityProfiles?: SecurityProfileSearchSummary[] | undefined;
1933
1933
  /**
1934
1934
  * <p>If there are additional results, this is the token for the next set of results.</p>
1935
1935
  * @public
1936
1936
  */
1937
- NextToken?: string;
1937
+ NextToken?: string | undefined;
1938
1938
  /**
1939
1939
  * <p>The total number of security profiles which matched your search query.</p>
1940
1940
  * @public
1941
1941
  */
1942
- ApproximateTotalCount?: number;
1942
+ ApproximateTotalCount?: number | undefined;
1943
1943
  }
1944
1944
  /**
1945
1945
  * <p>Filters to be applied to search results.</p>
@@ -1961,7 +1961,7 @@ export interface UserHierarchyGroupSearchFilter {
1961
1961
  * </ul>
1962
1962
  * @public
1963
1963
  */
1964
- AttributeFilter?: ControlPlaneAttributeFilter;
1964
+ AttributeFilter?: ControlPlaneAttributeFilter | undefined;
1965
1965
  }
1966
1966
  /**
1967
1967
  * @public
@@ -1971,17 +1971,17 @@ export interface SearchUserHierarchyGroupsResponse {
1971
1971
  * <p>Information about the userHierarchyGroups.</p>
1972
1972
  * @public
1973
1973
  */
1974
- UserHierarchyGroups?: HierarchyGroup[];
1974
+ UserHierarchyGroups?: HierarchyGroup[] | undefined;
1975
1975
  /**
1976
1976
  * <p>If there are additional results, this is the token for the next set of results.</p>
1977
1977
  * @public
1978
1978
  */
1979
- NextToken?: string;
1979
+ NextToken?: string | undefined;
1980
1980
  /**
1981
1981
  * <p>The total number of userHierarchyGroups which matched your search query.</p>
1982
1982
  * @public
1983
1983
  */
1984
- ApproximateTotalCount?: number;
1984
+ ApproximateTotalCount?: number | undefined;
1985
1985
  }
1986
1986
  /**
1987
1987
  * @public
@@ -2004,12 +2004,12 @@ export interface HierarchyGroupCondition {
2004
2004
  * <p>The value in the hierarchy group condition.</p>
2005
2005
  * @public
2006
2006
  */
2007
- Value?: string;
2007
+ Value?: string | undefined;
2008
2008
  /**
2009
2009
  * <p>The type of hierarchy group match.</p>
2010
2010
  * @public
2011
2011
  */
2012
- HierarchyGroupMatchType?: HierarchyGroupMatchType;
2012
+ HierarchyGroupMatchType?: HierarchyGroupMatchType | undefined;
2013
2013
  }
2014
2014
  /**
2015
2015
  * @public
@@ -2040,22 +2040,22 @@ export interface NumberCondition {
2040
2040
  * <p>The name of the field in the number condition.</p>
2041
2041
  * @public
2042
2042
  */
2043
- FieldName?: string;
2043
+ FieldName?: string | undefined;
2044
2044
  /**
2045
2045
  * <p>The minValue to be used while evaluating the number condition.</p>
2046
2046
  * @public
2047
2047
  */
2048
- MinValue?: number;
2048
+ MinValue?: number | undefined;
2049
2049
  /**
2050
2050
  * <p>The maxValue to be used while evaluating the number condition.</p>
2051
2051
  * @public
2052
2052
  */
2053
- MaxValue?: number;
2053
+ MaxValue?: number | undefined;
2054
2054
  /**
2055
2055
  * <p>The type of comparison to be made when evaluating the number condition.</p>
2056
2056
  * @public
2057
2057
  */
2058
- ComparisonType?: NumberComparisonType;
2058
+ ComparisonType?: NumberComparisonType | undefined;
2059
2059
  }
2060
2060
  /**
2061
2061
  * <p>A leaf node condition which can be used to specify a ProficiencyName, ProficiencyValue and
@@ -2071,12 +2071,12 @@ export interface Condition {
2071
2071
  * </note>
2072
2072
  * @public
2073
2073
  */
2074
- StringCondition?: StringCondition;
2074
+ StringCondition?: StringCondition | undefined;
2075
2075
  /**
2076
2076
  * <p>A leaf node condition which can be used to specify a numeric condition.</p>
2077
2077
  * @public
2078
2078
  */
2079
- NumberCondition?: NumberCondition;
2079
+ NumberCondition?: NumberCondition | undefined;
2080
2080
  }
2081
2081
  /**
2082
2082
  * @public
@@ -2099,12 +2099,12 @@ export interface ListCondition {
2099
2099
  * <p>The type of target list that will be used to filter the users.</p>
2100
2100
  * @public
2101
2101
  */
2102
- TargetListType?: TargetListType;
2102
+ TargetListType?: TargetListType | undefined;
2103
2103
  /**
2104
2104
  * <p>A list of Condition objects which would be applied together with an AND condition.</p>
2105
2105
  * @public
2106
2106
  */
2107
- Conditions?: Condition[];
2107
+ Conditions?: Condition[] | undefined;
2108
2108
  }
2109
2109
  /**
2110
2110
  * <p>A list of conditions which would be applied together with an <code>AND</code>
@@ -2116,12 +2116,12 @@ export interface AttributeAndCondition {
2116
2116
  * <p>A leaf node condition which can be used to specify a tag condition.</p>
2117
2117
  * @public
2118
2118
  */
2119
- TagConditions?: TagCondition[];
2119
+ TagConditions?: TagCondition[] | undefined;
2120
2120
  /**
2121
2121
  * <p>A leaf node condition which can be used to specify a hierarchy group condition.</p>
2122
2122
  * @public
2123
2123
  */
2124
- HierarchyGroupCondition?: HierarchyGroupCondition;
2124
+ HierarchyGroupCondition?: HierarchyGroupCondition | undefined;
2125
2125
  }
2126
2126
  /**
2127
2127
  * <p>An object that can be used to specify Tag conditions or Hierarchy Group conditions inside
@@ -2149,24 +2149,24 @@ export interface ControlPlaneUserAttributeFilter {
2149
2149
  * condition.</p>
2150
2150
  * @public
2151
2151
  */
2152
- OrConditions?: AttributeAndCondition[];
2152
+ OrConditions?: AttributeAndCondition[] | undefined;
2153
2153
  /**
2154
2154
  * <p>A list of conditions which would be applied together with an <code>AND</code>
2155
2155
  * condition.</p>
2156
2156
  * @public
2157
2157
  */
2158
- AndCondition?: AttributeAndCondition;
2158
+ AndCondition?: AttributeAndCondition | undefined;
2159
2159
  /**
2160
2160
  * <p>A leaf node condition which can be used to specify a tag condition, for example, <code>HAVE
2161
2161
  * BPO = 123</code>. </p>
2162
2162
  * @public
2163
2163
  */
2164
- TagCondition?: TagCondition;
2164
+ TagCondition?: TagCondition | undefined;
2165
2165
  /**
2166
2166
  * <p>A leaf node condition which can be used to specify a hierarchy group condition.</p>
2167
2167
  * @public
2168
2168
  */
2169
- HierarchyGroupCondition?: HierarchyGroupCondition;
2169
+ HierarchyGroupCondition?: HierarchyGroupCondition | undefined;
2170
2170
  }
2171
2171
  /**
2172
2172
  * <p>Filters to be applied to search results.</p>
@@ -2188,7 +2188,7 @@ export interface UserSearchFilter {
2188
2188
  * </ul>
2189
2189
  * @public
2190
2190
  */
2191
- TagFilter?: ControlPlaneTagFilter;
2191
+ TagFilter?: ControlPlaneTagFilter | undefined;
2192
2192
  /**
2193
2193
  * <p>An object that can be used to specify Tag conditions or Hierarchy Group conditions inside
2194
2194
  * the SearchFilter.</p>
@@ -2210,7 +2210,7 @@ export interface UserSearchFilter {
2210
2210
  * </note>
2211
2211
  * @public
2212
2212
  */
2213
- UserAttributeFilter?: ControlPlaneUserAttributeFilter;
2213
+ UserAttributeFilter?: ControlPlaneUserAttributeFilter | undefined;
2214
2214
  }
2215
2215
  /**
2216
2216
  * <p>The user's first name and last name.</p>
@@ -2221,12 +2221,12 @@ export interface UserIdentityInfoLite {
2221
2221
  * <p>The user's first name.</p>
2222
2222
  * @public
2223
2223
  */
2224
- FirstName?: string;
2224
+ FirstName?: string | undefined;
2225
2225
  /**
2226
2226
  * <p>The user's last name.</p>
2227
2227
  * @public
2228
2228
  */
2229
- LastName?: string;
2229
+ LastName?: string | undefined;
2230
2230
  }
2231
2231
  /**
2232
2232
  * <p>Information about the returned users.</p>
@@ -2237,52 +2237,52 @@ export interface UserSearchSummary {
2237
2237
  * <p>The Amazon Resource Name (ARN) of the user.</p>
2238
2238
  * @public
2239
2239
  */
2240
- Arn?: string;
2240
+ Arn?: string | undefined;
2241
2241
  /**
2242
2242
  * <p>The directory identifier of the user.</p>
2243
2243
  * @public
2244
2244
  */
2245
- DirectoryUserId?: string;
2245
+ DirectoryUserId?: string | undefined;
2246
2246
  /**
2247
2247
  * <p>The identifier of the user's hierarchy group.</p>
2248
2248
  * @public
2249
2249
  */
2250
- HierarchyGroupId?: string;
2250
+ HierarchyGroupId?: string | undefined;
2251
2251
  /**
2252
2252
  * <p>The identifier of the user's summary.</p>
2253
2253
  * @public
2254
2254
  */
2255
- Id?: string;
2255
+ Id?: string | undefined;
2256
2256
  /**
2257
2257
  * <p>The user's first name and last name.</p>
2258
2258
  * @public
2259
2259
  */
2260
- IdentityInfo?: UserIdentityInfoLite;
2260
+ IdentityInfo?: UserIdentityInfoLite | undefined;
2261
2261
  /**
2262
2262
  * <p>Contains information about the phone configuration settings for a user.</p>
2263
2263
  * @public
2264
2264
  */
2265
- PhoneConfig?: UserPhoneConfig;
2265
+ PhoneConfig?: UserPhoneConfig | undefined;
2266
2266
  /**
2267
2267
  * <p>The identifier of the user's routing profile.</p>
2268
2268
  * @public
2269
2269
  */
2270
- RoutingProfileId?: string;
2270
+ RoutingProfileId?: string | undefined;
2271
2271
  /**
2272
2272
  * <p>The identifiers of the user's security profiles.</p>
2273
2273
  * @public
2274
2274
  */
2275
- SecurityProfileIds?: string[];
2275
+ SecurityProfileIds?: string[] | undefined;
2276
2276
  /**
2277
2277
  * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
2278
2278
  * @public
2279
2279
  */
2280
- Tags?: Record<string, string>;
2280
+ Tags?: Record<string, string> | undefined;
2281
2281
  /**
2282
2282
  * <p>The name of the user.</p>
2283
2283
  * @public
2284
2284
  */
2285
- Username?: string;
2285
+ Username?: string | undefined;
2286
2286
  }
2287
2287
  /**
2288
2288
  * @public
@@ -2292,17 +2292,17 @@ export interface SearchUsersResponse {
2292
2292
  * <p>Information about the users.</p>
2293
2293
  * @public
2294
2294
  */
2295
- Users?: UserSearchSummary[];
2295
+ Users?: UserSearchSummary[] | undefined;
2296
2296
  /**
2297
2297
  * <p>If there are additional results, this is the token for the next set of results.</p>
2298
2298
  * @public
2299
2299
  */
2300
- NextToken?: string;
2300
+ NextToken?: string | undefined;
2301
2301
  /**
2302
2302
  * <p>The total number of users who matched your search query.</p>
2303
2303
  * @public
2304
2304
  */
2305
- ApproximateTotalCount?: number;
2305
+ ApproximateTotalCount?: number | undefined;
2306
2306
  }
2307
2307
  /**
2308
2308
  * @public
@@ -2317,30 +2317,30 @@ export interface SearchVocabulariesRequest {
2317
2317
  * <p>The maximum number of results to return per page.</p>
2318
2318
  * @public
2319
2319
  */
2320
- MaxResults?: number;
2320
+ MaxResults?: number | undefined;
2321
2321
  /**
2322
2322
  * <p>The token for the next set of results. Use the value returned in the previous
2323
2323
  * response in the next request to retrieve the next set of results.</p>
2324
2324
  * @public
2325
2325
  */
2326
- NextToken?: string;
2326
+ NextToken?: string | undefined;
2327
2327
  /**
2328
2328
  * <p>The current state of the custom vocabulary.</p>
2329
2329
  * @public
2330
2330
  */
2331
- State?: VocabularyState;
2331
+ State?: VocabularyState | undefined;
2332
2332
  /**
2333
2333
  * <p>The starting pattern of the name of the vocabulary.</p>
2334
2334
  * @public
2335
2335
  */
2336
- NameStartsWith?: string;
2336
+ NameStartsWith?: string | undefined;
2337
2337
  /**
2338
2338
  * <p>The language code of the vocabulary entries. For a list of languages and their corresponding language codes, see
2339
2339
  * <a href="https://docs.aws.amazon.com/transcribe/latest/dg/transcribe-whatis.html">What is Amazon Transcribe?</a>
2340
2340
  * </p>
2341
2341
  * @public
2342
2342
  */
2343
- LanguageCode?: VocabularyLanguageCode;
2343
+ LanguageCode?: VocabularyLanguageCode | undefined;
2344
2344
  }
2345
2345
  /**
2346
2346
  * <p>Contains summary information about the custom vocabulary.</p>
@@ -2383,7 +2383,7 @@ export interface VocabularySummary {
2383
2383
  * <p>The reason why the custom vocabulary was not created.</p>
2384
2384
  * @public
2385
2385
  */
2386
- FailureReason?: string;
2386
+ FailureReason?: string | undefined;
2387
2387
  }
2388
2388
  /**
2389
2389
  * @public
@@ -2393,12 +2393,12 @@ export interface SearchVocabulariesResponse {
2393
2393
  * <p>The list of the available custom vocabularies.</p>
2394
2394
  * @public
2395
2395
  */
2396
- VocabularySummaryList?: VocabularySummary[];
2396
+ VocabularySummaryList?: VocabularySummary[] | undefined;
2397
2397
  /**
2398
2398
  * <p>If there are additional results, this is the token for the next set of results.</p>
2399
2399
  * @public
2400
2400
  */
2401
- NextToken?: string;
2401
+ NextToken?: string | undefined;
2402
2402
  }
2403
2403
  /**
2404
2404
  * @public
@@ -2450,7 +2450,7 @@ export interface ChatEvent {
2450
2450
  * </ul>
2451
2451
  * @public
2452
2452
  */
2453
- ContentType?: string;
2453
+ ContentType?: string | undefined;
2454
2454
  /**
2455
2455
  * <p>Content of the message or event. This is required when <code>Type</code> is
2456
2456
  * <code>MESSAGE</code> and for certain <code>ContentTypes</code> when <code>Type</code> is
@@ -2467,7 +2467,7 @@ export interface ChatEvent {
2467
2467
  * </ul>
2468
2468
  * @public
2469
2469
  */
2470
- Content?: string;
2470
+ Content?: string | undefined;
2471
2471
  }
2472
2472
  /**
2473
2473
  * <p>The customer's details.</p>
@@ -2509,24 +2509,24 @@ export interface NewSessionDetails {
2509
2509
  * application/vnd.amazonaws.connect.message.interactive.response]</code>. </p>
2510
2510
  * @public
2511
2511
  */
2512
- SupportedMessagingContentTypes?: string[];
2512
+ SupportedMessagingContentTypes?: string[] | undefined;
2513
2513
  /**
2514
2514
  * <p>The customer's details.</p>
2515
2515
  * @public
2516
2516
  */
2517
- ParticipantDetails?: ParticipantDetails;
2517
+ ParticipantDetails?: ParticipantDetails | undefined;
2518
2518
  /**
2519
2519
  * <p> A custom key-value pair using an attribute map. The attributes are standard Amazon Connect attributes. They can be accessed in flows just like any other contact attributes. </p>
2520
2520
  * <p> There can be up to 32,768 UTF-8 bytes across all key-value pairs per contact. Attribute
2521
2521
  * keys can include only alphanumeric, dash, and underscore characters. </p>
2522
2522
  * @public
2523
2523
  */
2524
- Attributes?: Record<string, string>;
2524
+ Attributes?: Record<string, string> | undefined;
2525
2525
  /**
2526
2526
  * <p>The streaming configuration, such as the Amazon SNS streaming endpoint.</p>
2527
2527
  * @public
2528
2528
  */
2529
- StreamingConfiguration?: ChatStreamingConfiguration;
2529
+ StreamingConfiguration?: ChatStreamingConfiguration | undefined;
2530
2530
  }
2531
2531
  /**
2532
2532
  * @public
@@ -2552,7 +2552,7 @@ export interface SendChatIntegrationEventRequest {
2552
2552
  * </p>
2553
2553
  * @public
2554
2554
  */
2555
- Subtype?: string;
2555
+ Subtype?: string | undefined;
2556
2556
  /**
2557
2557
  * <p>Chat integration event payload</p>
2558
2558
  * @public
@@ -2563,7 +2563,7 @@ export interface SendChatIntegrationEventRequest {
2563
2563
  * with an existing chat, this is ignored.</p>
2564
2564
  * @public
2565
2565
  */
2566
- NewSessionDetails?: NewSessionDetails;
2566
+ NewSessionDetails?: NewSessionDetails | undefined;
2567
2567
  }
2568
2568
  /**
2569
2569
  * @public
@@ -2574,13 +2574,13 @@ export interface SendChatIntegrationEventResponse {
2574
2574
  * integration event is not valid without an already existing chat contact.</p>
2575
2575
  * @public
2576
2576
  */
2577
- InitialContactId?: string;
2577
+ InitialContactId?: string | undefined;
2578
2578
  /**
2579
2579
  * <p>Whether handling the integration event resulted in creating a new chat or acting on existing
2580
2580
  * chat.</p>
2581
2581
  * @public
2582
2582
  */
2583
- NewChatCreated?: boolean;
2583
+ NewChatCreated?: boolean | undefined;
2584
2584
  }
2585
2585
  /**
2586
2586
  * @public
@@ -2593,7 +2593,7 @@ export interface StartAttachedFileUploadRequest {
2593
2593
  * <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
2594
2594
  * @public
2595
2595
  */
2596
- ClientToken?: string;
2596
+ ClientToken?: string | undefined;
2597
2597
  /**
2598
2598
  * <p>The unique identifier of the Amazon Connect instance.</p>
2599
2599
  * @public
@@ -2614,7 +2614,7 @@ export interface StartAttachedFileUploadRequest {
2614
2614
  * 300.</p>
2615
2615
  * @public
2616
2616
  */
2617
- UrlExpiryInSeconds?: number;
2617
+ UrlExpiryInSeconds?: number | undefined;
2618
2618
  /**
2619
2619
  * <p>The use case for the file.</p>
2620
2620
  * @public
@@ -2633,13 +2633,13 @@ export interface StartAttachedFileUploadRequest {
2633
2633
  * <p>Represents the identity that created the file.</p>
2634
2634
  * @public
2635
2635
  */
2636
- CreatedBy?: CreatedByInfo;
2636
+ CreatedBy?: CreatedByInfo | undefined;
2637
2637
  /**
2638
2638
  * <p>The tags used to organize, track, or control access for this resource. For example, <code>\{
2639
2639
  * "Tags": \{"key1":"value1", "key2":"value2"\} \}</code>.</p>
2640
2640
  * @public
2641
2641
  */
2642
- Tags?: Record<string, string>;
2642
+ Tags?: Record<string, string> | undefined;
2643
2643
  }
2644
2644
  /**
2645
2645
  * <p>Fields required when uploading an attached file. </p>
@@ -2650,19 +2650,19 @@ export interface UploadUrlMetadata {
2650
2650
  * <p>A pre-signed S3 URL that should be used for uploading the attached file. </p>
2651
2651
  * @public
2652
2652
  */
2653
- Url?: string;
2653
+ Url?: string | undefined;
2654
2654
  /**
2655
2655
  * <p>The expiration time of the URL in ISO timestamp. It's specified in ISO 8601 format:
2656
2656
  * <code>yyyy-MM-ddThh:mm:ss.SSSZ</code>. For example,
2657
2657
  * <code>2019-11-08T02:41:28.172Z</code>.</p>
2658
2658
  * @public
2659
2659
  */
2660
- UrlExpiry?: string;
2660
+ UrlExpiry?: string | undefined;
2661
2661
  /**
2662
2662
  * <p>A map of headers that should be provided when uploading the attached file. </p>
2663
2663
  * @public
2664
2664
  */
2665
- HeadersToInclude?: Record<string, string>;
2665
+ HeadersToInclude?: Record<string, string> | undefined;
2666
2666
  }
2667
2667
  /**
2668
2668
  * Response from StartAttachedFileUpload API.
@@ -2673,34 +2673,34 @@ export interface StartAttachedFileUploadResponse {
2673
2673
  * <p>The unique identifier of the attached file resource (ARN).</p>
2674
2674
  * @public
2675
2675
  */
2676
- FileArn?: string;
2676
+ FileArn?: string | undefined;
2677
2677
  /**
2678
2678
  * <p>The unique identifier of the attached file resource.</p>
2679
2679
  * @public
2680
2680
  */
2681
- FileId?: string;
2681
+ FileId?: string | undefined;
2682
2682
  /**
2683
2683
  * <p>The time of Creation of the file resource as an ISO timestamp. It's specified in ISO 8601
2684
2684
  * format: <code>yyyy-MM-ddThh:mm:ss.SSSZ</code>. For example,
2685
2685
  * <code>2024-05-03T02:41:28.172Z</code>.</p>
2686
2686
  * @public
2687
2687
  */
2688
- CreationTime?: string;
2688
+ CreationTime?: string | undefined;
2689
2689
  /**
2690
2690
  * <p>The current status of the attached file.</p>
2691
2691
  * @public
2692
2692
  */
2693
- FileStatus?: FileStatusType;
2693
+ FileStatus?: FileStatusType | undefined;
2694
2694
  /**
2695
2695
  * <p>Represents the identity that created the file.</p>
2696
2696
  * @public
2697
2697
  */
2698
- CreatedBy?: CreatedByInfo;
2698
+ CreatedBy?: CreatedByInfo | undefined;
2699
2699
  /**
2700
2700
  * <p>Information to be used while uploading the attached file. </p>
2701
2701
  * @public
2702
2702
  */
2703
- UploadUrlMetadata?: UploadUrlMetadata;
2703
+ UploadUrlMetadata?: UploadUrlMetadata | undefined;
2704
2704
  }
2705
2705
  /**
2706
2706
  * <p>A chat message.</p>
@@ -2762,12 +2762,12 @@ export interface PersistentChat {
2762
2762
  * <p>The actual contactId used for rehydration is provided in the response of this API. </p>
2763
2763
  * @public
2764
2764
  */
2765
- RehydrationType?: RehydrationType;
2765
+ RehydrationType?: RehydrationType | undefined;
2766
2766
  /**
2767
2767
  * <p>The contactId from which a persistent chat session must be started.</p>
2768
2768
  * @public
2769
2769
  */
2770
- SourceContactId?: string;
2770
+ SourceContactId?: string | undefined;
2771
2771
  }
2772
2772
  /**
2773
2773
  * @public
@@ -2795,7 +2795,7 @@ export interface StartChatContactRequest {
2795
2795
  * can include only alphanumeric, dash, and underscore characters.</p>
2796
2796
  * @public
2797
2797
  */
2798
- Attributes?: Record<string, string>;
2798
+ Attributes?: Record<string, string> | undefined;
2799
2799
  /**
2800
2800
  * <p>Information identifying the participant.</p>
2801
2801
  * @public
@@ -2806,7 +2806,7 @@ export interface StartChatContactRequest {
2806
2806
  * flow, the initial message is not delivered to the Lex bot.</p>
2807
2807
  * @public
2808
2808
  */
2809
- InitialMessage?: ChatMessage;
2809
+ InitialMessage?: ChatMessage | undefined;
2810
2810
  /**
2811
2811
  * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
2812
2812
  * request. If not provided, the Amazon Web Services
@@ -2814,14 +2814,14 @@ export interface StartChatContactRequest {
2814
2814
  * <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
2815
2815
  * @public
2816
2816
  */
2817
- ClientToken?: string;
2817
+ ClientToken?: string | undefined;
2818
2818
  /**
2819
2819
  * <p>The total duration of the newly started chat session. If not specified, the chat session
2820
2820
  * duration defaults to 25 hour. The minimum configurable time is 60 minutes. The maximum
2821
2821
  * configurable time is 10,080 minutes (7 days).</p>
2822
2822
  * @public
2823
2823
  */
2824
- ChatDurationInMinutes?: number;
2824
+ ChatDurationInMinutes?: number | undefined;
2825
2825
  /**
2826
2826
  * <p>The supported chat message content types. Supported types are <code>text/plain</code>,
2827
2827
  * <code>text/markdown</code>, <code>application/json</code>,
@@ -2839,13 +2839,13 @@ export interface StartChatContactRequest {
2839
2839
  * </note>
2840
2840
  * @public
2841
2841
  */
2842
- SupportedMessagingContentTypes?: string[];
2842
+ SupportedMessagingContentTypes?: string[] | undefined;
2843
2843
  /**
2844
2844
  * <p>Enable persistent chats. For more information about enabling persistent chat, and for
2845
2845
  * example use cases and how to configure for them, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/chat-persistence.html">Enable persistent chat</a>.</p>
2846
2846
  * @public
2847
2847
  */
2848
- PersistentChat?: PersistentChat;
2848
+ PersistentChat?: PersistentChat | undefined;
2849
2849
  /**
2850
2850
  * <p>The unique identifier for an Amazon Connect contact. This identifier is related to the
2851
2851
  * chat starting.</p>
@@ -2854,7 +2854,7 @@ export interface StartChatContactRequest {
2854
2854
  * </note>
2855
2855
  * @public
2856
2856
  */
2857
- RelatedContactId?: string;
2857
+ RelatedContactId?: string | undefined;
2858
2858
  /**
2859
2859
  * <p>A set of system defined key-value pairs stored on individual contact segments using an
2860
2860
  * attribute map. The attributes are standard Amazon Connect attributes. They can be accessed in
@@ -2870,7 +2870,7 @@ export interface StartChatContactRequest {
2870
2870
  * </note>
2871
2871
  * @public
2872
2872
  */
2873
- SegmentAttributes?: Record<string, SegmentAttributeValue>;
2873
+ SegmentAttributes?: Record<string, SegmentAttributeValue> | undefined;
2874
2874
  }
2875
2875
  /**
2876
2876
  * @public
@@ -2880,25 +2880,25 @@ export interface StartChatContactResponse {
2880
2880
  * <p>The identifier of this contact within the Amazon Connect instance. </p>
2881
2881
  * @public
2882
2882
  */
2883
- ContactId?: string;
2883
+ ContactId?: string | undefined;
2884
2884
  /**
2885
2885
  * <p>The identifier for a chat participant. The participantId for a chat participant is the same
2886
2886
  * throughout the chat lifecycle.</p>
2887
2887
  * @public
2888
2888
  */
2889
- ParticipantId?: string;
2889
+ ParticipantId?: string | undefined;
2890
2890
  /**
2891
2891
  * <p>The token used by the chat participant to call <a href="https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_CreateParticipantConnection.html">CreateParticipantConnection</a>. The participant token is valid for the lifetime of a chat
2892
2892
  * participant.</p>
2893
2893
  * @public
2894
2894
  */
2895
- ParticipantToken?: string;
2895
+ ParticipantToken?: string | undefined;
2896
2896
  /**
2897
2897
  * <p>The contactId from which a persistent chat session is started. This field is populated only
2898
2898
  * for persistent chats.</p>
2899
2899
  * @public
2900
2900
  */
2901
- ContinuedFromContactId?: string;
2901
+ ContinuedFromContactId?: string | undefined;
2902
2902
  }
2903
2903
  /**
2904
2904
  * @public
@@ -2926,7 +2926,7 @@ export interface StartContactEvaluationRequest {
2926
2926
  * <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
2927
2927
  * @public
2928
2928
  */
2929
- ClientToken?: string;
2929
+ ClientToken?: string | undefined;
2930
2930
  }
2931
2931
  /**
2932
2932
  * @public
@@ -2965,7 +2965,7 @@ export interface VoiceRecordingConfiguration {
2965
2965
  * <p>Identifies which track is being recorded.</p>
2966
2966
  * @public
2967
2967
  */
2968
- VoiceRecordingTrack?: VoiceRecordingTrack;
2968
+ VoiceRecordingTrack?: VoiceRecordingTrack | undefined;
2969
2969
  }
2970
2970
  /**
2971
2971
  * @public
@@ -3025,7 +3025,7 @@ export interface StartContactStreamingRequest {
3025
3025
  * <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
3026
3026
  * @public
3027
3027
  */
3028
- ClientToken?: string;
3028
+ ClientToken?: string | undefined;
3029
3029
  }
3030
3030
  /**
3031
3031
  * @public
@@ -3077,7 +3077,7 @@ export interface StartOutboundChatContactRequest {
3077
3077
  * <p>A custom key-value pair using an attribute map. The attributes are standard Amazon Connect attributes, and can be accessed in flows just like any other contact attributes.</p>
3078
3078
  * @public
3079
3079
  */
3080
- Attributes?: Record<string, string>;
3080
+ Attributes?: Record<string, string> | undefined;
3081
3081
  /**
3082
3082
  * <p>The identifier of the flow for the call. To see the ContactFlowId in the Amazon Connect
3083
3083
  * console user interface, on the navigation menu go to <b>Routing, Contact
@@ -3099,23 +3099,23 @@ export interface StartOutboundChatContactRequest {
3099
3099
  * configurable time is 10,080 minutes (7 days).</p>
3100
3100
  * @public
3101
3101
  */
3102
- ChatDurationInMinutes?: number;
3102
+ ChatDurationInMinutes?: number | undefined;
3103
3103
  /**
3104
3104
  * <p>The customer's details.</p>
3105
3105
  * @public
3106
3106
  */
3107
- ParticipantDetails?: ParticipantDetails;
3107
+ ParticipantDetails?: ParticipantDetails | undefined;
3108
3108
  /**
3109
3109
  * <p>A chat message.</p>
3110
3110
  * @public
3111
3111
  */
3112
- InitialSystemMessage?: ChatMessage;
3112
+ InitialSystemMessage?: ChatMessage | undefined;
3113
3113
  /**
3114
3114
  * <p>The unique identifier for an Amazon Connect contact. This identifier is related to the
3115
3115
  * contact starting.</p>
3116
3116
  * @public
3117
3117
  */
3118
- RelatedContactId?: string;
3118
+ RelatedContactId?: string | undefined;
3119
3119
  /**
3120
3120
  * <p>The supported chat message content types. Supported types are:</p>
3121
3121
  * <ul>
@@ -3164,7 +3164,7 @@ export interface StartOutboundChatContactRequest {
3164
3164
  * </ul>
3165
3165
  * @public
3166
3166
  */
3167
- SupportedMessagingContentTypes?: string[];
3167
+ SupportedMessagingContentTypes?: string[] | undefined;
3168
3168
  /**
3169
3169
  * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
3170
3170
  * request. If not provided, the AWS SDK populates this field. For more information about
@@ -3173,7 +3173,7 @@ export interface StartOutboundChatContactRequest {
3173
3173
  * contact is already started, the contact ID is returned.</p>
3174
3174
  * @public
3175
3175
  */
3176
- ClientToken?: string;
3176
+ ClientToken?: string | undefined;
3177
3177
  }
3178
3178
  /**
3179
3179
  * @public
@@ -3183,7 +3183,7 @@ export interface StartOutboundChatContactResponse {
3183
3183
  * <p>The identifier of this contact within the Amazon Connect instance.</p>
3184
3184
  * @public
3185
3185
  */
3186
- ContactId?: string;
3186
+ ContactId?: string | undefined;
3187
3187
  }
3188
3188
  /**
3189
3189
  * <p>Outbound calls to the destination number are not allowed.</p>
@@ -3196,7 +3196,7 @@ export declare class DestinationNotAllowedException extends __BaseException {
3196
3196
  * <p>The message about the outbound calls.</p>
3197
3197
  * @public
3198
3198
  */
3199
- Message?: string;
3199
+ Message?: string | undefined;
3200
3200
  /**
3201
3201
  * @internal
3202
3202
  */
@@ -3213,7 +3213,7 @@ export declare class OutboundContactNotPermittedException extends __BaseExceptio
3213
3213
  * <p>The message about the contact.</p>
3214
3214
  * @public
3215
3215
  */
3216
- Message?: string;
3216
+ Message?: string | undefined;
3217
3217
  /**
3218
3218
  * @internal
3219
3219
  */
@@ -3230,12 +3230,12 @@ export interface AnswerMachineDetectionConfig {
3230
3230
  * </p>
3231
3231
  * @public
3232
3232
  */
3233
- EnableAnswerMachineDetection?: boolean;
3233
+ EnableAnswerMachineDetection?: boolean | undefined;
3234
3234
  /**
3235
3235
  * <p>Wait for the answering machine prompt.</p>
3236
3236
  * @public
3237
3237
  */
3238
- AwaitAnswerMachinePrompt?: boolean;
3238
+ AwaitAnswerMachinePrompt?: boolean | undefined;
3239
3239
  }
3240
3240
  /**
3241
3241
  * @public
@@ -3258,13 +3258,13 @@ export interface StartOutboundVoiceContactRequest {
3258
3258
  * (CCP).</p>
3259
3259
  * @public
3260
3260
  */
3261
- Name?: string;
3261
+ Name?: string | undefined;
3262
3262
  /**
3263
3263
  * <p>A description of the voice contact that is shown to an agent in the Contact Control Panel
3264
3264
  * (CCP).</p>
3265
3265
  * @public
3266
3266
  */
3267
- Description?: string;
3267
+ Description?: string | undefined;
3268
3268
  /**
3269
3269
  * <p>A formatted URL that is shown to an agent in the Contact Control Panel (CCP). Contacts can
3270
3270
  * have the following reference types at the time of creation: <code>URL</code> |
@@ -3272,7 +3272,7 @@ export interface StartOutboundVoiceContactRequest {
3272
3272
  * <code>ATTACHMENT</code> is not a supported reference type during voice contact creation.</p>
3273
3273
  * @public
3274
3274
  */
3275
- References?: Record<string, Reference>;
3275
+ References?: Record<string, Reference> | undefined;
3276
3276
  /**
3277
3277
  * <p>The <code>contactId</code> that is related to this contact. Linking voice, task, or chat by
3278
3278
  * using <code>RelatedContactID</code> copies over contact attributes from the related contact to
@@ -3281,7 +3281,7 @@ export interface StartOutboundVoiceContactRequest {
3281
3281
  * <code>RelatedContactId</code>. </p>
3282
3282
  * @public
3283
3283
  */
3284
- RelatedContactId?: string;
3284
+ RelatedContactId?: string | undefined;
3285
3285
  /**
3286
3286
  * <p>The phone number of the customer, in E.164 format.</p>
3287
3287
  * @public
@@ -3313,37 +3313,37 @@ export interface StartOutboundVoiceContactRequest {
3313
3313
  * </p>
3314
3314
  * @public
3315
3315
  */
3316
- ClientToken?: string;
3316
+ ClientToken?: string | undefined;
3317
3317
  /**
3318
3318
  * <p>The phone number associated with the Amazon Connect instance, in E.164 format. If you do
3319
3319
  * not specify a source phone number, you must specify a queue.</p>
3320
3320
  * @public
3321
3321
  */
3322
- SourcePhoneNumber?: string;
3322
+ SourcePhoneNumber?: string | undefined;
3323
3323
  /**
3324
3324
  * <p>The queue for the call. If you specify a queue, the phone displayed for caller ID is the
3325
3325
  * phone number specified in the queue. If you do not specify a queue, the queue defined in the flow
3326
3326
  * is used. If you do not specify a queue, you must specify a source phone number.</p>
3327
3327
  * @public
3328
3328
  */
3329
- QueueId?: string;
3329
+ QueueId?: string | undefined;
3330
3330
  /**
3331
3331
  * <p>A custom key-value pair using an attribute map. The attributes are standard Amazon Connect attributes, and can be accessed in flows just like any other contact attributes.</p>
3332
3332
  * <p>There can be up to 32,768 UTF-8 bytes across all key-value pairs per contact. Attribute keys
3333
3333
  * can include only alphanumeric, dash, and underscore characters.</p>
3334
3334
  * @public
3335
3335
  */
3336
- Attributes?: Record<string, string>;
3336
+ Attributes?: Record<string, string> | undefined;
3337
3337
  /**
3338
3338
  * <p>Configuration of the answering machine detection for this outbound call. </p>
3339
3339
  * @public
3340
3340
  */
3341
- AnswerMachineDetectionConfig?: AnswerMachineDetectionConfig;
3341
+ AnswerMachineDetectionConfig?: AnswerMachineDetectionConfig | undefined;
3342
3342
  /**
3343
3343
  * <p>The campaign identifier of the outbound communication.</p>
3344
3344
  * @public
3345
3345
  */
3346
- CampaignId?: string;
3346
+ CampaignId?: string | undefined;
3347
3347
  /**
3348
3348
  * <p>Denotes the class of traffic. Calls with different traffic types are handled differently by
3349
3349
  * Amazon Connect. The default value is <code>GENERAL</code>. Use <code>CAMPAIGN</code> if
@@ -3351,7 +3351,7 @@ export interface StartOutboundVoiceContactRequest {
3351
3351
  * <code>GENERAL</code>. </p>
3352
3352
  * @public
3353
3353
  */
3354
- TrafficType?: TrafficType;
3354
+ TrafficType?: TrafficType | undefined;
3355
3355
  }
3356
3356
  /**
3357
3357
  * @public
@@ -3361,7 +3361,7 @@ export interface StartOutboundVoiceContactResponse {
3361
3361
  * <p>The identifier of this contact within the Amazon Connect instance.</p>
3362
3362
  * @public
3363
3363
  */
3364
- ContactId?: string;
3364
+ ContactId?: string | undefined;
3365
3365
  }
3366
3366
  /**
3367
3367
  * @public
@@ -3374,7 +3374,7 @@ export interface StartScreenSharingRequest {
3374
3374
  * <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
3375
3375
  * @public
3376
3376
  */
3377
- ClientToken?: string;
3377
+ ClientToken?: string | undefined;
3378
3378
  /**
3379
3379
  * <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>
3380
3380
  * @public
@@ -3406,7 +3406,7 @@ export interface StartTaskContactRequest {
3406
3406
  * every contact in the chain. There can be a maximum of 12 linked task contacts in a chain.</p>
3407
3407
  * @public
3408
3408
  */
3409
- PreviousContactId?: string;
3409
+ PreviousContactId?: string | undefined;
3410
3410
  /**
3411
3411
  * <p>The identifier of the flow for initiating the tasks. To see the ContactFlowId in the Amazon Connect admin website,
3412
3412
  * on the navigation menu go to <b>Routing</b>, <b>Contact Flows</b>. Choose the flow. On the flow page, under the name of the flow, choose
@@ -3416,14 +3416,14 @@ export interface StartTaskContactRequest {
3416
3416
  * </p>
3417
3417
  * @public
3418
3418
  */
3419
- ContactFlowId?: string;
3419
+ ContactFlowId?: string | undefined;
3420
3420
  /**
3421
3421
  * <p>A custom key-value pair using an attribute map. The attributes are standard Amazon Connect attributes, and can be accessed in flows just like any other contact attributes.</p>
3422
3422
  * <p>There can be up to 32,768 UTF-8 bytes across all key-value pairs per contact. Attribute keys
3423
3423
  * can include only alphanumeric, dash, and underscore characters.</p>
3424
3424
  * @public
3425
3425
  */
3426
- Attributes?: Record<string, string>;
3426
+ Attributes?: Record<string, string> | undefined;
3427
3427
  /**
3428
3428
  * <p>The name of a task that is shown to an agent in the Contact Control Panel (CCP).</p>
3429
3429
  * @public
@@ -3436,13 +3436,13 @@ export interface StartTaskContactRequest {
3436
3436
  * supported reference type during task creation.</p>
3437
3437
  * @public
3438
3438
  */
3439
- References?: Record<string, Reference>;
3439
+ References?: Record<string, Reference> | undefined;
3440
3440
  /**
3441
3441
  * <p>A description of the task that is shown to an agent in the Contact Control Panel
3442
3442
  * (CCP).</p>
3443
3443
  * @public
3444
3444
  */
3445
- Description?: string;
3445
+ Description?: string | undefined;
3446
3446
  /**
3447
3447
  * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
3448
3448
  * request. If not provided, the Amazon Web Services
@@ -3450,18 +3450,18 @@ export interface StartTaskContactRequest {
3450
3450
  * <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
3451
3451
  * @public
3452
3452
  */
3453
- ClientToken?: string;
3453
+ ClientToken?: string | undefined;
3454
3454
  /**
3455
3455
  * <p>The timestamp, in Unix Epoch seconds format, at which to start running the inbound flow. The scheduled time cannot be in the past. It must be within up to 6 days in future. </p>
3456
3456
  * @public
3457
3457
  */
3458
- ScheduledTime?: Date;
3458
+ ScheduledTime?: Date | undefined;
3459
3459
  /**
3460
3460
  * <p>A unique identifier for the task template. For more information about task templates, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/task-templates.html">Create task templates</a> in the
3461
3461
  * <i>Amazon Connect Administrator Guide</i>. </p>
3462
3462
  * @public
3463
3463
  */
3464
- TaskTemplateId?: string;
3464
+ TaskTemplateId?: string | undefined;
3465
3465
  /**
3466
3466
  * <p>The identifier for the quick connect. Tasks that are created by using <code>QuickConnectId</code> will use the
3467
3467
  * flow that is defined on agent or queue quick connect. For more information about quick connects,
@@ -3469,7 +3469,7 @@ export interface StartTaskContactRequest {
3469
3469
  * connects</a>.</p>
3470
3470
  * @public
3471
3471
  */
3472
- QuickConnectId?: string;
3472
+ QuickConnectId?: string | undefined;
3473
3473
  /**
3474
3474
  * <p>The contactId that is <a href="https://docs.aws.amazon.com/connect/latest/adminguide/tasks.html#linked-tasks">related</a> to this contact. Linking
3475
3475
  * tasks together by using <code>RelatedContactID</code> copies over contact attributes from the
@@ -3479,7 +3479,7 @@ export interface StartTaskContactRequest {
3479
3479
  * be linked by using <code>RelatedContactId</code>. </p>
3480
3480
  * @public
3481
3481
  */
3482
- RelatedContactId?: string;
3482
+ RelatedContactId?: string | undefined;
3483
3483
  }
3484
3484
  /**
3485
3485
  * @public
@@ -3489,7 +3489,7 @@ export interface StartTaskContactResponse {
3489
3489
  * <p>The identifier of this contact within the Amazon Connect instance.</p>
3490
3490
  * @public
3491
3491
  */
3492
- ContactId?: string;
3492
+ ContactId?: string | undefined;
3493
3493
  }
3494
3494
  /**
3495
3495
  * @public
@@ -3501,7 +3501,7 @@ export interface StartWebRTCContactRequest {
3501
3501
  * can include only alphanumeric, -, and _ characters.</p>
3502
3502
  * @public
3503
3503
  */
3504
- Attributes?: Record<string, string>;
3504
+ Attributes?: Record<string, string> | undefined;
3505
3505
  /**
3506
3506
  * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
3507
3507
  * request. If not provided, the Amazon Web Services
@@ -3511,7 +3511,7 @@ export interface StartWebRTCContactRequest {
3511
3511
  * ID is returned.</p>
3512
3512
  * @public
3513
3513
  */
3514
- ClientToken?: string;
3514
+ ClientToken?: string | undefined;
3515
3515
  /**
3516
3516
  * <p>The identifier of the flow for the call. To see the ContactFlowId in the Amazon Connect admin website, on the
3517
3517
  * navigation menu go to <b>Routing</b>, <b>Flows</b>. Choose the flow. On the flow page, under the name of the flow, choose
@@ -3532,7 +3532,7 @@ export interface StartWebRTCContactRequest {
3532
3532
  * agent).</p>
3533
3533
  * @public
3534
3534
  */
3535
- AllowedCapabilities?: AllowedCapabilities;
3535
+ AllowedCapabilities?: AllowedCapabilities | undefined;
3536
3536
  /**
3537
3537
  * <p>The customer's details.</p>
3538
3538
  * @public
@@ -3543,7 +3543,7 @@ export interface StartWebRTCContactRequest {
3543
3543
  * contact starting.</p>
3544
3544
  * @public
3545
3545
  */
3546
- RelatedContactId?: string;
3546
+ RelatedContactId?: string | undefined;
3547
3547
  /**
3548
3548
  * <p>A formatted URL that is shown to an agent in the Contact Control Panel (CCP). Tasks can have
3549
3549
  * the following reference types at the time of creation: <code>URL</code> | <code>NUMBER</code> |
@@ -3551,13 +3551,13 @@ export interface StartWebRTCContactRequest {
3551
3551
  * supported reference type during task creation.</p>
3552
3552
  * @public
3553
3553
  */
3554
- References?: Record<string, Reference>;
3554
+ References?: Record<string, Reference> | undefined;
3555
3555
  /**
3556
3556
  * <p>A description of the task that is shown to an agent in the Contact Control Panel
3557
3557
  * (CCP).</p>
3558
3558
  * @public
3559
3559
  */
3560
- Description?: string;
3560
+ Description?: string | undefined;
3561
3561
  }
3562
3562
  /**
3563
3563
  * <p>The attendee information, including attendee ID and join token.</p>
@@ -3568,12 +3568,12 @@ export interface Attendee {
3568
3568
  * <p>The Amazon Chime SDK attendee ID.</p>
3569
3569
  * @public
3570
3570
  */
3571
- AttendeeId?: string;
3571
+ AttendeeId?: string | undefined;
3572
3572
  /**
3573
3573
  * <p>The join token used by the Amazon Chime SDK attendee.</p>
3574
3574
  * @public
3575
3575
  */
3576
- JoinToken?: string;
3576
+ JoinToken?: string | undefined;
3577
3577
  }
3578
3578
  /**
3579
3579
  * <p>A set of endpoints used by clients to connect to the media service group for an Amazon Chime SDK meeting.</p>
@@ -3584,27 +3584,27 @@ export interface MediaPlacement {
3584
3584
  * <p>The audio host URL.</p>
3585
3585
  * @public
3586
3586
  */
3587
- AudioHostUrl?: string;
3587
+ AudioHostUrl?: string | undefined;
3588
3588
  /**
3589
3589
  * <p>The audio fallback URL.</p>
3590
3590
  * @public
3591
3591
  */
3592
- AudioFallbackUrl?: string;
3592
+ AudioFallbackUrl?: string | undefined;
3593
3593
  /**
3594
3594
  * <p>The signaling URL.</p>
3595
3595
  * @public
3596
3596
  */
3597
- SignalingUrl?: string;
3597
+ SignalingUrl?: string | undefined;
3598
3598
  /**
3599
3599
  * <p>The turn control URL.</p>
3600
3600
  * @public
3601
3601
  */
3602
- TurnControlUrl?: string;
3602
+ TurnControlUrl?: string | undefined;
3603
3603
  /**
3604
3604
  * <p>The event ingestion URL to which you send client meeting events.</p>
3605
3605
  * @public
3606
3606
  */
3607
- EventIngestionUrl?: string;
3607
+ EventIngestionUrl?: string | undefined;
3608
3608
  }
3609
3609
  /**
3610
3610
  * @public
@@ -3627,7 +3627,7 @@ export interface AudioFeatures {
3627
3627
  * <p>Makes echo reduction available to clients who connect to the meeting.</p>
3628
3628
  * @public
3629
3629
  */
3630
- EchoReduction?: MeetingFeatureStatus;
3630
+ EchoReduction?: MeetingFeatureStatus | undefined;
3631
3631
  }
3632
3632
  /**
3633
3633
  * <p>The configuration settings of the features available to a meeting.</p>
@@ -3638,7 +3638,7 @@ export interface MeetingFeaturesConfiguration {
3638
3638
  * <p>The configuration settings for the audio features available to a meeting.</p>
3639
3639
  * @public
3640
3640
  */
3641
- Audio?: AudioFeatures;
3641
+ Audio?: AudioFeatures | undefined;
3642
3642
  }
3643
3643
  /**
3644
3644
  * <p>A meeting created using the Amazon Chime SDK.</p>
@@ -3649,22 +3649,22 @@ export interface Meeting {
3649
3649
  * <p>The Amazon Web Services Region in which you create the meeting.</p>
3650
3650
  * @public
3651
3651
  */
3652
- MediaRegion?: string;
3652
+ MediaRegion?: string | undefined;
3653
3653
  /**
3654
3654
  * <p>The media placement for the meeting.</p>
3655
3655
  * @public
3656
3656
  */
3657
- MediaPlacement?: MediaPlacement;
3657
+ MediaPlacement?: MediaPlacement | undefined;
3658
3658
  /**
3659
3659
  * <p>The configuration settings of the features available to a meeting.</p>
3660
3660
  * @public
3661
3661
  */
3662
- MeetingFeatures?: MeetingFeaturesConfiguration;
3662
+ MeetingFeatures?: MeetingFeaturesConfiguration | undefined;
3663
3663
  /**
3664
3664
  * <p>The Amazon Chime SDK meeting ID.</p>
3665
3665
  * @public
3666
3666
  */
3667
- MeetingId?: string;
3667
+ MeetingId?: string | undefined;
3668
3668
  }
3669
3669
  /**
3670
3670
  * <p>Information required to join the call.</p>
@@ -3675,12 +3675,12 @@ export interface ConnectionData {
3675
3675
  * <p>The attendee information, including attendee ID and join token.</p>
3676
3676
  * @public
3677
3677
  */
3678
- Attendee?: Attendee;
3678
+ Attendee?: Attendee | undefined;
3679
3679
  /**
3680
3680
  * <p>A meeting created using the Amazon Chime SDK.</p>
3681
3681
  * @public
3682
3682
  */
3683
- Meeting?: Meeting;
3683
+ Meeting?: Meeting | undefined;
3684
3684
  }
3685
3685
  /**
3686
3686
  * @public
@@ -3691,24 +3691,24 @@ export interface StartWebRTCContactResponse {
3691
3691
  * to the call.</p>
3692
3692
  * @public
3693
3693
  */
3694
- ConnectionData?: ConnectionData;
3694
+ ConnectionData?: ConnectionData | undefined;
3695
3695
  /**
3696
3696
  * <p>The identifier of the contact in this instance of Amazon Connect. </p>
3697
3697
  * @public
3698
3698
  */
3699
- ContactId?: string;
3699
+ ContactId?: string | undefined;
3700
3700
  /**
3701
3701
  * <p>The identifier for a contact participant. The <code>ParticipantId</code> for a contact
3702
3702
  * participant is the same throughout the contact lifecycle.</p>
3703
3703
  * @public
3704
3704
  */
3705
- ParticipantId?: string;
3705
+ ParticipantId?: string | undefined;
3706
3706
  /**
3707
3707
  * <p>The token used by the contact participant to call the <a href="https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_CreateParticipantConnection.html">CreateParticipantConnection</a> API. The participant token is valid for the lifetime of a
3708
3708
  * contact participant.</p>
3709
3709
  * @public
3710
3710
  */
3711
- ParticipantToken?: string;
3711
+ ParticipantToken?: string | undefined;
3712
3712
  }
3713
3713
  /**
3714
3714
  * <p>The contact with the specified ID is not active or does not exist. Applies to Voice calls
@@ -3722,7 +3722,7 @@ export declare class ContactNotFoundException extends __BaseException {
3722
3722
  * <p>The message.</p>
3723
3723
  * @public
3724
3724
  */
3725
- Message?: string;
3725
+ Message?: string | undefined;
3726
3726
  /**
3727
3727
  * @internal
3728
3728
  */
@@ -3738,7 +3738,7 @@ export interface DisconnectReason {
3738
3738
  * <p>A code that indicates how the contact was terminated.</p>
3739
3739
  * @public
3740
3740
  */
3741
- Code?: string;
3741
+ Code?: string | undefined;
3742
3742
  }
3743
3743
  /**
3744
3744
  * @public
@@ -3759,7 +3759,7 @@ export interface StopContactRequest {
3759
3759
  * provide this field.</p>
3760
3760
  * @public
3761
3761
  */
3762
- DisconnectReason?: DisconnectReason;
3762
+ DisconnectReason?: DisconnectReason | undefined;
3763
3763
  }
3764
3764
  /**
3765
3765
  * @public
@@ -3827,7 +3827,7 @@ export interface EvaluationAnswerInput {
3827
3827
  * <p>The value for an answer in a contact evaluation.</p>
3828
3828
  * @public
3829
3829
  */
3830
- Value?: EvaluationAnswerData;
3830
+ Value?: EvaluationAnswerData | undefined;
3831
3831
  }
3832
3832
  /**
3833
3833
  * @public
@@ -3847,12 +3847,12 @@ export interface SubmitContactEvaluationRequest {
3847
3847
  * <p>A map of question identifiers to answer value.</p>
3848
3848
  * @public
3849
3849
  */
3850
- Answers?: Record<string, EvaluationAnswerInput>;
3850
+ Answers?: Record<string, EvaluationAnswerInput> | undefined;
3851
3851
  /**
3852
3852
  * <p>A map of question identifiers to note value.</p>
3853
3853
  * @public
3854
3854
  */
3855
- Notes?: Record<string, EvaluationNote>;
3855
+ Notes?: Record<string, EvaluationNote> | undefined;
3856
3856
  }
3857
3857
  /**
3858
3858
  * @public
@@ -3957,12 +3957,12 @@ export interface TransferContactRequest {
3957
3957
  * <p>The identifier for the queue.</p>
3958
3958
  * @public
3959
3959
  */
3960
- QueueId?: string;
3960
+ QueueId?: string | undefined;
3961
3961
  /**
3962
3962
  * <p>The identifier for the user. This can be the ID or the ARN of the user.</p>
3963
3963
  * @public
3964
3964
  */
3965
- UserId?: string;
3965
+ UserId?: string | undefined;
3966
3966
  /**
3967
3967
  * <p>The identifier of the flow.</p>
3968
3968
  * @public
@@ -3975,7 +3975,7 @@ export interface TransferContactRequest {
3975
3975
  * <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
3976
3976
  * @public
3977
3977
  */
3978
- ClientToken?: string;
3978
+ ClientToken?: string | undefined;
3979
3979
  }
3980
3980
  /**
3981
3981
  * @public
@@ -3985,12 +3985,12 @@ export interface TransferContactResponse {
3985
3985
  * <p>The identifier of the contact in this instance of Amazon Connect. </p>
3986
3986
  * @public
3987
3987
  */
3988
- ContactId?: string;
3988
+ ContactId?: string | undefined;
3989
3989
  /**
3990
3990
  * <p>The Amazon Resource Name (ARN) of the contact.</p>
3991
3991
  * @public
3992
3992
  */
3993
- ContactArn?: string;
3993
+ ContactArn?: string | undefined;
3994
3994
  }
3995
3995
  /**
3996
3996
  * @public
@@ -4051,27 +4051,27 @@ export interface UpdateAgentStatusRequest {
4051
4051
  * <p>The name of the agent status.</p>
4052
4052
  * @public
4053
4053
  */
4054
- Name?: string;
4054
+ Name?: string | undefined;
4055
4055
  /**
4056
4056
  * <p>The description of the agent status.</p>
4057
4057
  * @public
4058
4058
  */
4059
- Description?: string;
4059
+ Description?: string | undefined;
4060
4060
  /**
4061
4061
  * <p>The state of the agent status.</p>
4062
4062
  * @public
4063
4063
  */
4064
- State?: AgentStatusState;
4064
+ State?: AgentStatusState | undefined;
4065
4065
  /**
4066
4066
  * <p>The display order of the agent status.</p>
4067
4067
  * @public
4068
4068
  */
4069
- DisplayOrder?: number;
4069
+ DisplayOrder?: number | undefined;
4070
4070
  /**
4071
4071
  * <p>A number indicating the reset order of the agent status.</p>
4072
4072
  * @public
4073
4073
  */
4074
- ResetOrderNumber?: boolean;
4074
+ ResetOrderNumber?: boolean | undefined;
4075
4075
  }
4076
4076
  /**
4077
4077
  * @public
@@ -4091,19 +4091,19 @@ export interface UpdateAuthenticationProfileRequest {
4091
4091
  * <p>The name for the authentication profile.</p>
4092
4092
  * @public
4093
4093
  */
4094
- Name?: string;
4094
+ Name?: string | undefined;
4095
4095
  /**
4096
4096
  * <p>The description for the authentication profile.</p>
4097
4097
  * @public
4098
4098
  */
4099
- Description?: string;
4099
+ Description?: string | undefined;
4100
4100
  /**
4101
4101
  * <p>A list of IP address range strings that are allowed to access the instance. For more
4102
4102
  * information on how to configure IP addresses, see<a href="https://docs.aws.amazon.com/connect/latest/adminguide/authentication-profiles.html#configure-session-timeouts">Configure session timeouts</a> in the <i>Amazon Connect Administrator
4103
4103
  * Guide</i>.</p>
4104
4104
  * @public
4105
4105
  */
4106
- AllowedIps?: string[];
4106
+ AllowedIps?: string[] | undefined;
4107
4107
  /**
4108
4108
  * <p>A list of IP address range strings that are blocked from accessing the instance. For more
4109
4109
  * information on how to configure IP addresses, For more information on how to configure IP
@@ -4112,7 +4112,7 @@ export interface UpdateAuthenticationProfileRequest {
4112
4112
  * Guide</i>. </p>
4113
4113
  * @public
4114
4114
  */
4115
- BlockedIps?: string[];
4115
+ BlockedIps?: string[] | undefined;
4116
4116
  /**
4117
4117
  * <p>The short lived session duration configuration for users logged in to Amazon Connect, in
4118
4118
  * minutes. This value determines the maximum possible time before an agent is authenticated. For
@@ -4120,7 +4120,7 @@ export interface UpdateAuthenticationProfileRequest {
4120
4120
  * Guide</i>. </p>
4121
4121
  * @public
4122
4122
  */
4123
- PeriodicSessionDuration?: number;
4123
+ PeriodicSessionDuration?: number | undefined;
4124
4124
  }
4125
4125
  /**
4126
4126
  * @public
@@ -4141,17 +4141,17 @@ export interface UpdateContactRequest {
4141
4141
  * <p>The name of the contact.</p>
4142
4142
  * @public
4143
4143
  */
4144
- Name?: string;
4144
+ Name?: string | undefined;
4145
4145
  /**
4146
4146
  * <p>The description of the contact.</p>
4147
4147
  * @public
4148
4148
  */
4149
- Description?: string;
4149
+ Description?: string | undefined;
4150
4150
  /**
4151
4151
  * <p>Well-formed data on contact, shown to agents on Contact Control Panel (CCP).</p>
4152
4152
  * @public
4153
4153
  */
4154
- References?: Record<string, Reference>;
4154
+ References?: Record<string, Reference> | undefined;
4155
4155
  }
4156
4156
  /**
4157
4157
  * @public
@@ -4219,12 +4219,12 @@ export interface UpdateContactEvaluationRequest {
4219
4219
  * <p>A map of question identifiers to answer value.</p>
4220
4220
  * @public
4221
4221
  */
4222
- Answers?: Record<string, EvaluationAnswerInput>;
4222
+ Answers?: Record<string, EvaluationAnswerInput> | undefined;
4223
4223
  /**
4224
4224
  * <p>A map of question identifiers to note value.</p>
4225
4225
  * @public
4226
4226
  */
4227
- Notes?: Record<string, EvaluationNote>;
4227
+ Notes?: Record<string, EvaluationNote> | undefined;
4228
4228
  }
4229
4229
  /**
4230
4230
  * @public
@@ -4286,17 +4286,17 @@ export interface UpdateContactFlowMetadataRequest {
4286
4286
  * <p>The name of the flow.</p>
4287
4287
  * @public
4288
4288
  */
4289
- Name?: string;
4289
+ Name?: string | undefined;
4290
4290
  /**
4291
4291
  * <p>The description of the flow.</p>
4292
4292
  * @public
4293
4293
  */
4294
- Description?: string;
4294
+ Description?: string | undefined;
4295
4295
  /**
4296
4296
  * <p>The state of flow.</p>
4297
4297
  * @public
4298
4298
  */
4299
- ContactFlowState?: ContactFlowState;
4299
+ ContactFlowState?: ContactFlowState | undefined;
4300
4300
  }
4301
4301
  /**
4302
4302
  * @public
@@ -4347,17 +4347,17 @@ export interface UpdateContactFlowModuleMetadataRequest {
4347
4347
  * <p>The name of the flow module.</p>
4348
4348
  * @public
4349
4349
  */
4350
- Name?: string;
4350
+ Name?: string | undefined;
4351
4351
  /**
4352
4352
  * <p>The description of the flow module.</p>
4353
4353
  * @public
4354
4354
  */
4355
- Description?: string;
4355
+ Description?: string | undefined;
4356
4356
  /**
4357
4357
  * <p>The state of flow module.</p>
4358
4358
  * @public
4359
4359
  */
4360
- State?: ContactFlowModuleState;
4360
+ State?: ContactFlowModuleState | undefined;
4361
4361
  }
4362
4362
  /**
4363
4363
  * @public
@@ -4382,12 +4382,12 @@ export interface UpdateContactFlowNameRequest {
4382
4382
  * <p>The name of the flow.</p>
4383
4383
  * @public
4384
4384
  */
4385
- Name?: string;
4385
+ Name?: string | undefined;
4386
4386
  /**
4387
4387
  * <p>The description of the flow.</p>
4388
4388
  * @public
4389
4389
  */
4390
- Description?: string;
4390
+ Description?: string | undefined;
4391
4391
  }
4392
4392
  /**
4393
4393
  * @public
@@ -4405,7 +4405,7 @@ export interface RoutingCriteriaInputStepExpiry {
4405
4405
  * step, if expiry was configured for this routing step.</p>
4406
4406
  * @public
4407
4407
  */
4408
- DurationInSeconds?: number;
4408
+ DurationInSeconds?: number | undefined;
4409
4409
  }
4410
4410
  /**
4411
4411
  * @public
@@ -4475,22 +4475,22 @@ export interface UpdateHoursOfOperationRequest {
4475
4475
  * <p>The name of the hours of operation.</p>
4476
4476
  * @public
4477
4477
  */
4478
- Name?: string;
4478
+ Name?: string | undefined;
4479
4479
  /**
4480
4480
  * <p>The description of the hours of operation.</p>
4481
4481
  * @public
4482
4482
  */
4483
- Description?: string;
4483
+ Description?: string | undefined;
4484
4484
  /**
4485
4485
  * <p>The time zone of the hours of operation.</p>
4486
4486
  * @public
4487
4487
  */
4488
- TimeZone?: string;
4488
+ TimeZone?: string | undefined;
4489
4489
  /**
4490
4490
  * <p>Configuration information of the hours of operation.</p>
4491
4491
  * @public
4492
4492
  */
4493
- Config?: HoursOfOperationConfig[];
4493
+ Config?: HoursOfOperationConfig[] | undefined;
4494
4494
  }
4495
4495
  /**
4496
4496
  * @public
@@ -4730,14 +4730,14 @@ export interface UpdatePhoneNumberRequest {
4730
4730
  * <p>The Amazon Resource Name (ARN) for Amazon Connect instances or traffic distribution groups that phone number inbound traffic is routed through. You must enter <code>InstanceId</code> or <code>TargetArn</code>. </p>
4731
4731
  * @public
4732
4732
  */
4733
- TargetArn?: string;
4733
+ TargetArn?: string | undefined;
4734
4734
  /**
4735
4735
  * <p>The identifier of the Amazon Connect instance that phone numbers are claimed to. You
4736
4736
  * can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the
4737
4737
  * instance ID</a> in the Amazon Resource Name (ARN) of the instance. You must enter <code>InstanceId</code> or <code>TargetArn</code>. </p>
4738
4738
  * @public
4739
4739
  */
4740
- InstanceId?: string;
4740
+ InstanceId?: string | undefined;
4741
4741
  /**
4742
4742
  * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
4743
4743
  * request. If not provided, the Amazon Web Services
@@ -4745,7 +4745,7 @@ export interface UpdatePhoneNumberRequest {
4745
4745
  * <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
4746
4746
  * @public
4747
4747
  */
4748
- ClientToken?: string;
4748
+ ClientToken?: string | undefined;
4749
4749
  }
4750
4750
  /**
4751
4751
  * @public
@@ -4755,12 +4755,12 @@ export interface UpdatePhoneNumberResponse {
4755
4755
  * <p>A unique identifier for the phone number.</p>
4756
4756
  * @public
4757
4757
  */
4758
- PhoneNumberId?: string;
4758
+ PhoneNumberId?: string | undefined;
4759
4759
  /**
4760
4760
  * <p>The Amazon Resource Name (ARN) of the phone number.</p>
4761
4761
  * @public
4762
4762
  */
4763
- PhoneNumberArn?: string;
4763
+ PhoneNumberArn?: string | undefined;
4764
4764
  }
4765
4765
  /**
4766
4766
  * @public
@@ -4775,7 +4775,7 @@ export interface UpdatePhoneNumberMetadataRequest {
4775
4775
  * <p>The description of the phone number.</p>
4776
4776
  * @public
4777
4777
  */
4778
- PhoneNumberDescription?: string;
4778
+ PhoneNumberDescription?: string | undefined;
4779
4779
  /**
4780
4780
  * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
4781
4781
  * request. If not provided, the Amazon Web Services
@@ -4783,7 +4783,7 @@ export interface UpdatePhoneNumberMetadataRequest {
4783
4783
  * <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
4784
4784
  * @public
4785
4785
  */
4786
- ClientToken?: string;
4786
+ ClientToken?: string | undefined;
4787
4787
  }
4788
4788
  /**
4789
4789
  * @public
@@ -4804,7 +4804,7 @@ export interface UpdatePredefinedAttributeRequest {
4804
4804
  * <p>The values of the predefined attribute.</p>
4805
4805
  * @public
4806
4806
  */
4807
- Values?: PredefinedAttributeValues;
4807
+ Values?: PredefinedAttributeValues | undefined;
4808
4808
  }
4809
4809
  /**
4810
4810
  * @public
@@ -4824,19 +4824,19 @@ export interface UpdatePromptRequest {
4824
4824
  * <p>The name of the prompt.</p>
4825
4825
  * @public
4826
4826
  */
4827
- Name?: string;
4827
+ Name?: string | undefined;
4828
4828
  /**
4829
4829
  * <p>A description of the prompt.</p>
4830
4830
  * @public
4831
4831
  */
4832
- Description?: string;
4832
+ Description?: string | undefined;
4833
4833
  /**
4834
4834
  * <p>The URI for the S3 bucket where the prompt is stored. You can provide S3 pre-signed URLs returned by the
4835
4835
  * <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_GetPromptFile.html">GetPromptFile</a>
4836
4836
  * API instead of providing S3 URIs.</p>
4837
4837
  * @public
4838
4838
  */
4839
- S3Uri?: string;
4839
+ S3Uri?: string | undefined;
4840
4840
  }
4841
4841
  /**
4842
4842
  * @public
@@ -4846,12 +4846,12 @@ export interface UpdatePromptResponse {
4846
4846
  * <p>The Amazon Resource Name (ARN) of the prompt.</p>
4847
4847
  * @public
4848
4848
  */
4849
- PromptARN?: string;
4849
+ PromptARN?: string | undefined;
4850
4850
  /**
4851
4851
  * <p>A unique identifier for the prompt.</p>
4852
4852
  * @public
4853
4853
  */
4854
- PromptId?: string;
4854
+ PromptId?: string | undefined;
4855
4855
  }
4856
4856
  /**
4857
4857
  * @public
@@ -4891,7 +4891,7 @@ export interface UpdateQueueMaxContactsRequest {
4891
4891
  * <p>The maximum number of contacts that can be in the queue before it is considered full.</p>
4892
4892
  * @public
4893
4893
  */
4894
- MaxContacts?: number;
4894
+ MaxContacts?: number | undefined;
4895
4895
  }
4896
4896
  /**
4897
4897
  * @public
@@ -4911,12 +4911,12 @@ export interface UpdateQueueNameRequest {
4911
4911
  * <p>The name of the queue.</p>
4912
4912
  * @public
4913
4913
  */
4914
- Name?: string;
4914
+ Name?: string | undefined;
4915
4915
  /**
4916
4916
  * <p>The description of the queue.</p>
4917
4917
  * @public
4918
4918
  */
4919
- Description?: string;
4919
+ Description?: string | undefined;
4920
4920
  }
4921
4921
  /**
4922
4922
  * @public
@@ -4996,12 +4996,12 @@ export interface UpdateQuickConnectNameRequest {
4996
4996
  * <p>The name of the quick connect.</p>
4997
4997
  * @public
4998
4998
  */
4999
- Name?: string;
4999
+ Name?: string | undefined;
5000
5000
  /**
5001
5001
  * <p>The description of the quick connect.</p>
5002
5002
  * @public
5003
5003
  */
5004
- Description?: string;
5004
+ Description?: string | undefined;
5005
5005
  }
5006
5006
  /**
5007
5007
  * @public
@@ -5083,12 +5083,12 @@ export interface UpdateRoutingProfileNameRequest {
5083
5083
  * <p>The name of the routing profile. Must not be more than 127 characters.</p>
5084
5084
  * @public
5085
5085
  */
5086
- Name?: string;
5086
+ Name?: string | undefined;
5087
5087
  /**
5088
5088
  * <p>The description of the routing profile. Must not be more than 250 characters.</p>
5089
5089
  * @public
5090
5090
  */
5091
- Description?: string;
5091
+ Description?: string | undefined;
5092
5092
  }
5093
5093
  /**
5094
5094
  * @public
@@ -5158,13 +5158,13 @@ export interface UpdateSecurityProfileRequest {
5158
5158
  * <p>The description of the security profile.</p>
5159
5159
  * @public
5160
5160
  */
5161
- Description?: string;
5161
+ Description?: string | undefined;
5162
5162
  /**
5163
5163
  * <p>The permissions granted to a security profile. For a list of valid permissions, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/security-profile-list.html">List of security
5164
5164
  * profile permissions</a>.</p>
5165
5165
  * @public
5166
5166
  */
5167
- Permissions?: string[];
5167
+ Permissions?: string[] | undefined;
5168
5168
  /**
5169
5169
  * <p>The identifier for the security profle.</p>
5170
5170
  * @public
@@ -5179,28 +5179,28 @@ export interface UpdateSecurityProfileRequest {
5179
5179
  * <p>The list of tags that a security profile uses to restrict access to resources in Amazon Connect.</p>
5180
5180
  * @public
5181
5181
  */
5182
- AllowedAccessControlTags?: Record<string, string>;
5182
+ AllowedAccessControlTags?: Record<string, string> | undefined;
5183
5183
  /**
5184
5184
  * <p>The list of resources that a security profile applies tag restrictions to in Amazon Connect.</p>
5185
5185
  * @public
5186
5186
  */
5187
- TagRestrictedResources?: string[];
5187
+ TagRestrictedResources?: string[] | undefined;
5188
5188
  /**
5189
5189
  * <p>A list of the third-party application's metadata.</p>
5190
5190
  * @public
5191
5191
  */
5192
- Applications?: Application[];
5192
+ Applications?: Application[] | undefined;
5193
5193
  /**
5194
5194
  * <p>The list of resources that a security profile applies hierarchy restrictions to in Amazon Connect. Following are acceptable ResourceNames: <code>User</code>.</p>
5195
5195
  * @public
5196
5196
  */
5197
- HierarchyRestrictedResources?: string[];
5197
+ HierarchyRestrictedResources?: string[] | undefined;
5198
5198
  /**
5199
5199
  * <p>The identifier of the hierarchy group that a security profile uses to restrict access to
5200
5200
  * resources in Amazon Connect.</p>
5201
5201
  * @public
5202
5202
  */
5203
- AllowedAccessControlHierarchyGroupId?: string;
5203
+ AllowedAccessControlHierarchyGroupId?: string | undefined;
5204
5204
  }
5205
5205
  /**
5206
5206
  * @public
@@ -5220,39 +5220,39 @@ export interface UpdateTaskTemplateRequest {
5220
5220
  * <p>The name of the task template.</p>
5221
5221
  * @public
5222
5222
  */
5223
- Name?: string;
5223
+ Name?: string | undefined;
5224
5224
  /**
5225
5225
  * <p>The description of the task template.</p>
5226
5226
  * @public
5227
5227
  */
5228
- Description?: string;
5228
+ Description?: string | undefined;
5229
5229
  /**
5230
5230
  * <p>The identifier of the flow that runs by default when a task is created by referencing this template.</p>
5231
5231
  * @public
5232
5232
  */
5233
- ContactFlowId?: string;
5233
+ ContactFlowId?: string | undefined;
5234
5234
  /**
5235
5235
  * <p>Constraints that are applicable to the fields listed.</p>
5236
5236
  * @public
5237
5237
  */
5238
- Constraints?: TaskTemplateConstraints;
5238
+ Constraints?: TaskTemplateConstraints | undefined;
5239
5239
  /**
5240
5240
  * <p>The default values for fields when a task is created by referencing this template.</p>
5241
5241
  * @public
5242
5242
  */
5243
- Defaults?: TaskTemplateDefaults;
5243
+ Defaults?: TaskTemplateDefaults | undefined;
5244
5244
  /**
5245
5245
  * <p>Marks a template as <code>ACTIVE</code> or <code>INACTIVE</code> for a task to refer to it.
5246
5246
  * Tasks can only be created from <code>ACTIVE</code> templates.
5247
5247
  * If a template is marked as <code>INACTIVE</code>, then a task that refers to this template cannot be created.</p>
5248
5248
  * @public
5249
5249
  */
5250
- Status?: TaskTemplateStatus;
5250
+ Status?: TaskTemplateStatus | undefined;
5251
5251
  /**
5252
5252
  * <p>Fields that are part of the template.</p>
5253
5253
  * @public
5254
5254
  */
5255
- Fields?: TaskTemplateField[];
5255
+ Fields?: TaskTemplateField[] | undefined;
5256
5256
  }
5257
5257
  /**
5258
5258
  * @public
@@ -5262,64 +5262,64 @@ export interface UpdateTaskTemplateResponse {
5262
5262
  * <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>
5263
5263
  * @public
5264
5264
  */
5265
- InstanceId?: string;
5265
+ InstanceId?: string | undefined;
5266
5266
  /**
5267
5267
  * <p>The identifier of the task template resource.</p>
5268
5268
  * @public
5269
5269
  */
5270
- Id?: string;
5270
+ Id?: string | undefined;
5271
5271
  /**
5272
5272
  * <p>The Amazon Resource Name (ARN) for the task template resource.</p>
5273
5273
  * @public
5274
5274
  */
5275
- Arn?: string;
5275
+ Arn?: string | undefined;
5276
5276
  /**
5277
5277
  * <p>The name of the task template.</p>
5278
5278
  * @public
5279
5279
  */
5280
- Name?: string;
5280
+ Name?: string | undefined;
5281
5281
  /**
5282
5282
  * <p>The description of the task template.</p>
5283
5283
  * @public
5284
5284
  */
5285
- Description?: string;
5285
+ Description?: string | undefined;
5286
5286
  /**
5287
5287
  * <p>The identifier of the flow that runs by default when a task is created by referencing this template.</p>
5288
5288
  * @public
5289
5289
  */
5290
- ContactFlowId?: string;
5290
+ ContactFlowId?: string | undefined;
5291
5291
  /**
5292
5292
  * <p>Constraints that are applicable to the fields listed.</p>
5293
5293
  * @public
5294
5294
  */
5295
- Constraints?: TaskTemplateConstraints;
5295
+ Constraints?: TaskTemplateConstraints | undefined;
5296
5296
  /**
5297
5297
  * <p>The default values for fields when a task is created by referencing this template.</p>
5298
5298
  * @public
5299
5299
  */
5300
- Defaults?: TaskTemplateDefaults;
5300
+ Defaults?: TaskTemplateDefaults | undefined;
5301
5301
  /**
5302
5302
  * <p>Fields that are part of the template.</p>
5303
5303
  * @public
5304
5304
  */
5305
- Fields?: TaskTemplateField[];
5305
+ Fields?: TaskTemplateField[] | undefined;
5306
5306
  /**
5307
5307
  * <p>Marks a template as <code>ACTIVE</code> or <code>INACTIVE</code> for a task to refer to it.
5308
5308
  * Tasks can only be created from <code>ACTIVE</code> templates.
5309
5309
  * If a template is marked as <code>INACTIVE</code>, then a task that refers to this template cannot be created.</p>
5310
5310
  * @public
5311
5311
  */
5312
- Status?: TaskTemplateStatus;
5312
+ Status?: TaskTemplateStatus | undefined;
5313
5313
  /**
5314
5314
  * <p>The timestamp when the task template was last modified.</p>
5315
5315
  * @public
5316
5316
  */
5317
- LastModifiedTime?: Date;
5317
+ LastModifiedTime?: Date | undefined;
5318
5318
  /**
5319
5319
  * <p>The timestamp when the task template was created.</p>
5320
5320
  * @public
5321
5321
  */
5322
- CreatedTime?: Date;
5322
+ CreatedTime?: Date | undefined;
5323
5323
  }
5324
5324
  /**
5325
5325
  * @public
@@ -5336,18 +5336,18 @@ export interface UpdateTrafficDistributionRequest {
5336
5336
  * <p>The distribution of traffic between the instance and its replica(s).</p>
5337
5337
  * @public
5338
5338
  */
5339
- TelephonyConfig?: TelephonyConfig;
5339
+ TelephonyConfig?: TelephonyConfig | undefined;
5340
5340
  /**
5341
5341
  * <p>The distribution that determines which Amazon Web Services Regions should be used to sign in
5342
5342
  * agents in to both the instance and its replica(s).</p>
5343
5343
  * @public
5344
5344
  */
5345
- SignInConfig?: SignInConfig;
5345
+ SignInConfig?: SignInConfig | undefined;
5346
5346
  /**
5347
5347
  * <p>The distribution of agents between the instance and its replica(s).</p>
5348
5348
  * @public
5349
5349
  */
5350
- AgentConfig?: AgentConfig;
5350
+ AgentConfig?: AgentConfig | undefined;
5351
5351
  }
5352
5352
  /**
5353
5353
  * @public
@@ -5362,7 +5362,7 @@ export interface UpdateUserHierarchyRequest {
5362
5362
  * <p>The identifier of the hierarchy group.</p>
5363
5363
  * @public
5364
5364
  */
5365
- HierarchyGroupId?: string;
5365
+ HierarchyGroupId?: string | undefined;
5366
5366
  /**
5367
5367
  * <p>The identifier of the user account.</p>
5368
5368
  * @public
@@ -5416,27 +5416,27 @@ export interface HierarchyStructureUpdate {
5416
5416
  * for level one.</p>
5417
5417
  * @public
5418
5418
  */
5419
- LevelOne?: HierarchyLevelUpdate;
5419
+ LevelOne?: HierarchyLevelUpdate | undefined;
5420
5420
  /**
5421
5421
  * <p>The update for level two.</p>
5422
5422
  * @public
5423
5423
  */
5424
- LevelTwo?: HierarchyLevelUpdate;
5424
+ LevelTwo?: HierarchyLevelUpdate | undefined;
5425
5425
  /**
5426
5426
  * <p>The update for level three.</p>
5427
5427
  * @public
5428
5428
  */
5429
- LevelThree?: HierarchyLevelUpdate;
5429
+ LevelThree?: HierarchyLevelUpdate | undefined;
5430
5430
  /**
5431
5431
  * <p>The update for level four.</p>
5432
5432
  * @public
5433
5433
  */
5434
- LevelFour?: HierarchyLevelUpdate;
5434
+ LevelFour?: HierarchyLevelUpdate | undefined;
5435
5435
  /**
5436
5436
  * <p>The update for level five.</p>
5437
5437
  * @public
5438
5438
  */
5439
- LevelFive?: HierarchyLevelUpdate;
5439
+ LevelFive?: HierarchyLevelUpdate | undefined;
5440
5440
  }
5441
5441
  /**
5442
5442
  * @public
@@ -5593,7 +5593,7 @@ export interface UpdateViewContentResponse {
5593
5593
  * <p>A view resource object. Contains metadata and content necessary to render the view.</p>
5594
5594
  * @public
5595
5595
  */
5596
- View?: View;
5596
+ View?: View | undefined;
5597
5597
  }
5598
5598
  /**
5599
5599
  * @public
@@ -5615,12 +5615,12 @@ export interface UpdateViewMetadataRequest {
5615
5615
  * <p>The name of the view.</p>
5616
5616
  * @public
5617
5617
  */
5618
- Name?: string;
5618
+ Name?: string | undefined;
5619
5619
  /**
5620
5620
  * <p>The description of the view.</p>
5621
5621
  * @public
5622
5622
  */
5623
- Description?: string;
5623
+ Description?: string | undefined;
5624
5624
  }
5625
5625
  /**
5626
5626
  * @public
@@ -5691,7 +5691,7 @@ export interface EvaluationFormSection {
5691
5691
  * <p>The instructions of the section.</p>
5692
5692
  * @public
5693
5693
  */
5694
- Instructions?: string;
5694
+ Instructions?: string | undefined;
5695
5695
  /**
5696
5696
  * <p>The items of the section.</p>
5697
5697
  * @public
@@ -5701,7 +5701,7 @@ export interface EvaluationFormSection {
5701
5701
  * <p>The scoring weight of the section.</p>
5702
5702
  * @public
5703
5703
  */
5704
- Weight?: number;
5704
+ Weight?: number | undefined;
5705
5705
  }
5706
5706
  /**
5707
5707
  * <p>The search criteria to be used to return agent statuses.</p>
@@ -5713,7 +5713,7 @@ export interface AgentStatusSearchCriteria {
5713
5713
  * condition.</p>
5714
5714
  * @public
5715
5715
  */
5716
- OrConditions?: AgentStatusSearchCriteria[];
5716
+ OrConditions?: AgentStatusSearchCriteria[] | undefined;
5717
5717
  /**
5718
5718
  * <p>A leaf node condition which can be used to specify a string condition.</p>
5719
5719
  * <note>
@@ -5723,7 +5723,7 @@ export interface AgentStatusSearchCriteria {
5723
5723
  * </note>
5724
5724
  * @public
5725
5725
  */
5726
- AndConditions?: AgentStatusSearchCriteria[];
5726
+ AndConditions?: AgentStatusSearchCriteria[] | undefined;
5727
5727
  /**
5728
5728
  * <p>A leaf node condition which can be used to specify a string condition.</p>
5729
5729
  * <note>
@@ -5733,7 +5733,7 @@ export interface AgentStatusSearchCriteria {
5733
5733
  * </note>
5734
5734
  * @public
5735
5735
  */
5736
- StringCondition?: StringCondition;
5736
+ StringCondition?: StringCondition | undefined;
5737
5737
  }
5738
5738
  /**
5739
5739
  * <p>The search criteria to be used to return flow modules.</p>
@@ -5745,18 +5745,18 @@ export interface ContactFlowModuleSearchCriteria {
5745
5745
  * condition.</p>
5746
5746
  * @public
5747
5747
  */
5748
- OrConditions?: ContactFlowModuleSearchCriteria[];
5748
+ OrConditions?: ContactFlowModuleSearchCriteria[] | undefined;
5749
5749
  /**
5750
5750
  * <p>A list of conditions which would be applied together with an <code>AND</code>
5751
5751
  * condition.</p>
5752
5752
  * @public
5753
5753
  */
5754
- AndConditions?: ContactFlowModuleSearchCriteria[];
5754
+ AndConditions?: ContactFlowModuleSearchCriteria[] | undefined;
5755
5755
  /**
5756
5756
  * <p>A leaf node condition which can be used to specify a string condition.</p>
5757
5757
  * @public
5758
5758
  */
5759
- StringCondition?: StringCondition;
5759
+ StringCondition?: StringCondition | undefined;
5760
5760
  }
5761
5761
  /**
5762
5762
  * <p>The search criteria to be used to return contact flows.</p>
@@ -5768,33 +5768,33 @@ export interface ContactFlowSearchCriteria {
5768
5768
  * condition.</p>
5769
5769
  * @public
5770
5770
  */
5771
- OrConditions?: ContactFlowSearchCriteria[];
5771
+ OrConditions?: ContactFlowSearchCriteria[] | undefined;
5772
5772
  /**
5773
5773
  * <p>A list of conditions which would be applied together with an <code>AND</code>
5774
5774
  * condition.</p>
5775
5775
  * @public
5776
5776
  */
5777
- AndConditions?: ContactFlowSearchCriteria[];
5777
+ AndConditions?: ContactFlowSearchCriteria[] | undefined;
5778
5778
  /**
5779
5779
  * <p>A leaf node condition which can be used to specify a string condition.</p>
5780
5780
  * @public
5781
5781
  */
5782
- StringCondition?: StringCondition;
5782
+ StringCondition?: StringCondition | undefined;
5783
5783
  /**
5784
5784
  * <p>The type of flow.</p>
5785
5785
  * @public
5786
5786
  */
5787
- TypeCondition?: ContactFlowType;
5787
+ TypeCondition?: ContactFlowType | undefined;
5788
5788
  /**
5789
5789
  * <p>The state of the flow.</p>
5790
5790
  * @public
5791
5791
  */
5792
- StateCondition?: ContactFlowState;
5792
+ StateCondition?: ContactFlowState | undefined;
5793
5793
  /**
5794
5794
  * <p>The status of the flow.</p>
5795
5795
  * @public
5796
5796
  */
5797
- StatusCondition?: ContactFlowStatus;
5797
+ StatusCondition?: ContactFlowStatus | undefined;
5798
5798
  }
5799
5799
  /**
5800
5800
  * @public
@@ -5814,7 +5814,7 @@ export interface CreateEvaluationFormRequest {
5814
5814
  * <p>The description of the evaluation form.</p>
5815
5815
  * @public
5816
5816
  */
5817
- Description?: string;
5817
+ Description?: string | undefined;
5818
5818
  /**
5819
5819
  * <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>
5820
5820
  * @public
@@ -5824,7 +5824,7 @@ export interface CreateEvaluationFormRequest {
5824
5824
  * <p>A scoring strategy of the evaluation form.</p>
5825
5825
  * @public
5826
5826
  */
5827
- ScoringStrategy?: EvaluationFormScoringStrategy;
5827
+ ScoringStrategy?: EvaluationFormScoringStrategy | undefined;
5828
5828
  /**
5829
5829
  * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
5830
5830
  * request. If not provided, the Amazon Web Services
@@ -5832,7 +5832,7 @@ export interface CreateEvaluationFormRequest {
5832
5832
  * <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
5833
5833
  * @public
5834
5834
  */
5835
- ClientToken?: string;
5835
+ ClientToken?: string | undefined;
5836
5836
  }
5837
5837
  /**
5838
5838
  * <p>Information about the evaluation form.</p>
@@ -5868,7 +5868,7 @@ export interface EvaluationForm {
5868
5868
  * <p>The description of the evaluation form.</p>
5869
5869
  * @public
5870
5870
  */
5871
- Description?: string;
5871
+ Description?: string | undefined;
5872
5872
  /**
5873
5873
  * <p>The status of the evaluation form.</p>
5874
5874
  * @public
@@ -5883,7 +5883,7 @@ export interface EvaluationForm {
5883
5883
  * <p>A scoring strategy of the evaluation form.</p>
5884
5884
  * @public
5885
5885
  */
5886
- ScoringStrategy?: EvaluationFormScoringStrategy;
5886
+ ScoringStrategy?: EvaluationFormScoringStrategy | undefined;
5887
5887
  /**
5888
5888
  * <p>The timestamp for when the evaluation form was created.</p>
5889
5889
  * @public
@@ -5908,7 +5908,7 @@ export interface EvaluationForm {
5908
5908
  * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
5909
5909
  * @public
5910
5910
  */
5911
- Tags?: Record<string, string>;
5911
+ Tags?: Record<string, string> | undefined;
5912
5912
  }
5913
5913
  /**
5914
5914
  * <p>Information about an evaluation form used in a contact evaluation.</p>
@@ -5939,7 +5939,7 @@ export interface EvaluationFormContent {
5939
5939
  * <p>The description of the evaluation form.</p>
5940
5940
  * @public
5941
5941
  */
5942
- Description?: string;
5942
+ Description?: string | undefined;
5943
5943
  /**
5944
5944
  * <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>
5945
5945
  * @public
@@ -5949,7 +5949,7 @@ export interface EvaluationFormContent {
5949
5949
  * <p>A scoring strategy of the evaluation form.</p>
5950
5950
  * @public
5951
5951
  */
5952
- ScoringStrategy?: EvaluationFormScoringStrategy;
5952
+ ScoringStrategy?: EvaluationFormScoringStrategy | undefined;
5953
5953
  }
5954
5954
  /**
5955
5955
  * <p>A tagged union to specify expression for a routing step.</p>
@@ -5960,17 +5960,17 @@ export interface Expression {
5960
5960
  * <p>An object to specify the predefined attribute condition.</p>
5961
5961
  * @public
5962
5962
  */
5963
- AttributeCondition?: AttributeCondition;
5963
+ AttributeCondition?: AttributeCondition | undefined;
5964
5964
  /**
5965
5965
  * <p>List of routing expressions which will be AND-ed together.</p>
5966
5966
  * @public
5967
5967
  */
5968
- AndExpression?: Expression[];
5968
+ AndExpression?: Expression[] | undefined;
5969
5969
  /**
5970
5970
  * <p>List of routing expressions which will be OR-ed together.</p>
5971
5971
  * @public
5972
5972
  */
5973
- OrExpression?: Expression[];
5973
+ OrExpression?: Expression[] | undefined;
5974
5974
  }
5975
5975
  /**
5976
5976
  * <p>The search criteria to be used to return hours of operations.</p>
@@ -5981,12 +5981,12 @@ export interface HoursOfOperationSearchCriteria {
5981
5981
  * <p>A list of conditions which would be applied together with an OR condition.</p>
5982
5982
  * @public
5983
5983
  */
5984
- OrConditions?: HoursOfOperationSearchCriteria[];
5984
+ OrConditions?: HoursOfOperationSearchCriteria[] | undefined;
5985
5985
  /**
5986
5986
  * <p>A list of conditions which would be applied together with an AND condition.</p>
5987
5987
  * @public
5988
5988
  */
5989
- AndConditions?: HoursOfOperationSearchCriteria[];
5989
+ AndConditions?: HoursOfOperationSearchCriteria[] | undefined;
5990
5990
  /**
5991
5991
  * <p>A leaf node condition which can be used to specify a string condition.</p>
5992
5992
  * <note>
@@ -5995,7 +5995,7 @@ export interface HoursOfOperationSearchCriteria {
5995
5995
  * </note>
5996
5996
  * @public
5997
5997
  */
5998
- StringCondition?: StringCondition;
5998
+ StringCondition?: StringCondition | undefined;
5999
5999
  }
6000
6000
  /**
6001
6001
  * <p>The search criteria to be used to return predefined attributes.</p>
@@ -6007,18 +6007,18 @@ export interface PredefinedAttributeSearchCriteria {
6007
6007
  * condition.</p>
6008
6008
  * @public
6009
6009
  */
6010
- OrConditions?: PredefinedAttributeSearchCriteria[];
6010
+ OrConditions?: PredefinedAttributeSearchCriteria[] | undefined;
6011
6011
  /**
6012
6012
  * <p>A list of conditions which would be applied together with an <code>AND</code>
6013
6013
  * condition.</p>
6014
6014
  * @public
6015
6015
  */
6016
- AndConditions?: PredefinedAttributeSearchCriteria[];
6016
+ AndConditions?: PredefinedAttributeSearchCriteria[] | undefined;
6017
6017
  /**
6018
6018
  * <p>A leaf node condition which can be used to specify a string condition.</p>
6019
6019
  * @public
6020
6020
  */
6021
- StringCondition?: StringCondition;
6021
+ StringCondition?: StringCondition | undefined;
6022
6022
  }
6023
6023
  /**
6024
6024
  * <p>The search criteria to be used to return prompts.</p>
@@ -6029,12 +6029,12 @@ export interface PromptSearchCriteria {
6029
6029
  * <p>A list of conditions which would be applied together with an OR condition.</p>
6030
6030
  * @public
6031
6031
  */
6032
- OrConditions?: PromptSearchCriteria[];
6032
+ OrConditions?: PromptSearchCriteria[] | undefined;
6033
6033
  /**
6034
6034
  * <p>A list of conditions which would be applied together with an AND condition.</p>
6035
6035
  * @public
6036
6036
  */
6037
- AndConditions?: PromptSearchCriteria[];
6037
+ AndConditions?: PromptSearchCriteria[] | undefined;
6038
6038
  /**
6039
6039
  * <p>A leaf node condition which can be used to specify a string condition.</p>
6040
6040
  * <note>
@@ -6043,7 +6043,7 @@ export interface PromptSearchCriteria {
6043
6043
  * </note>
6044
6044
  * @public
6045
6045
  */
6046
- StringCondition?: StringCondition;
6046
+ StringCondition?: StringCondition | undefined;
6047
6047
  }
6048
6048
  /**
6049
6049
  * <p>The search criteria to be used to return queues.</p>
@@ -6059,12 +6059,12 @@ export interface QueueSearchCriteria {
6059
6059
  * <p>A list of conditions which would be applied together with an OR condition.</p>
6060
6060
  * @public
6061
6061
  */
6062
- OrConditions?: QueueSearchCriteria[];
6062
+ OrConditions?: QueueSearchCriteria[] | undefined;
6063
6063
  /**
6064
6064
  * <p>A list of conditions which would be applied together with an AND condition.</p>
6065
6065
  * @public
6066
6066
  */
6067
- AndConditions?: QueueSearchCriteria[];
6067
+ AndConditions?: QueueSearchCriteria[] | undefined;
6068
6068
  /**
6069
6069
  * <p>A leaf node condition which can be used to specify a string condition.</p>
6070
6070
  * <note>
@@ -6073,12 +6073,12 @@ export interface QueueSearchCriteria {
6073
6073
  * </note>
6074
6074
  * @public
6075
6075
  */
6076
- StringCondition?: StringCondition;
6076
+ StringCondition?: StringCondition | undefined;
6077
6077
  /**
6078
6078
  * <p>The type of queue.</p>
6079
6079
  * @public
6080
6080
  */
6081
- QueueTypeCondition?: SearchableQueueType;
6081
+ QueueTypeCondition?: SearchableQueueType | undefined;
6082
6082
  }
6083
6083
  /**
6084
6084
  * <p>The search criteria to be used to return quick connects.</p>
@@ -6089,12 +6089,12 @@ export interface QuickConnectSearchCriteria {
6089
6089
  * <p>A list of conditions which would be applied together with an OR condition.</p>
6090
6090
  * @public
6091
6091
  */
6092
- OrConditions?: QuickConnectSearchCriteria[];
6092
+ OrConditions?: QuickConnectSearchCriteria[] | undefined;
6093
6093
  /**
6094
6094
  * <p>A list of conditions which would be applied together with an AND condition.</p>
6095
6095
  * @public
6096
6096
  */
6097
- AndConditions?: QuickConnectSearchCriteria[];
6097
+ AndConditions?: QuickConnectSearchCriteria[] | undefined;
6098
6098
  /**
6099
6099
  * <p>A leaf node condition which can be used to specify a string condition.</p>
6100
6100
  * <note>
@@ -6103,7 +6103,7 @@ export interface QuickConnectSearchCriteria {
6103
6103
  * </note>
6104
6104
  * @public
6105
6105
  */
6106
- StringCondition?: StringCondition;
6106
+ StringCondition?: StringCondition | undefined;
6107
6107
  }
6108
6108
  /**
6109
6109
  * <p>The search criteria to be used to return routing profiles.</p>
@@ -6119,12 +6119,12 @@ export interface RoutingProfileSearchCriteria {
6119
6119
  * <p>A list of conditions which would be applied together with an OR condition.</p>
6120
6120
  * @public
6121
6121
  */
6122
- OrConditions?: RoutingProfileSearchCriteria[];
6122
+ OrConditions?: RoutingProfileSearchCriteria[] | undefined;
6123
6123
  /**
6124
6124
  * <p>A list of conditions which would be applied together with an AND condition.</p>
6125
6125
  * @public
6126
6126
  */
6127
- AndConditions?: RoutingProfileSearchCriteria[];
6127
+ AndConditions?: RoutingProfileSearchCriteria[] | undefined;
6128
6128
  /**
6129
6129
  * <p>A leaf node condition which can be used to specify a string condition.</p>
6130
6130
  * <note>
@@ -6134,7 +6134,7 @@ export interface RoutingProfileSearchCriteria {
6134
6134
  * </note>
6135
6135
  * @public
6136
6136
  */
6137
- StringCondition?: StringCondition;
6137
+ StringCondition?: StringCondition | undefined;
6138
6138
  }
6139
6139
  /**
6140
6140
  * <p>The search criteria to be used to return security profiles.</p>
@@ -6150,17 +6150,17 @@ export interface SecurityProfileSearchCriteria {
6150
6150
  * <p>A list of conditions which would be applied together with an OR condition.</p>
6151
6151
  * @public
6152
6152
  */
6153
- OrConditions?: SecurityProfileSearchCriteria[];
6153
+ OrConditions?: SecurityProfileSearchCriteria[] | undefined;
6154
6154
  /**
6155
6155
  * <p>A list of conditions which would be applied together with an AND condition.</p>
6156
6156
  * @public
6157
6157
  */
6158
- AndConditions?: SecurityProfileSearchCriteria[];
6158
+ AndConditions?: SecurityProfileSearchCriteria[] | undefined;
6159
6159
  /**
6160
6160
  * <p>A leaf node condition which can be used to specify a string condition.</p>
6161
6161
  * @public
6162
6162
  */
6163
- StringCondition?: StringCondition;
6163
+ StringCondition?: StringCondition | undefined;
6164
6164
  }
6165
6165
  /**
6166
6166
  * @public
@@ -6185,7 +6185,7 @@ export interface UpdateEvaluationFormRequest {
6185
6185
  * <p>A flag indicating whether the operation must create a new version.</p>
6186
6186
  * @public
6187
6187
  */
6188
- CreateNewVersion?: boolean;
6188
+ CreateNewVersion?: boolean | undefined;
6189
6189
  /**
6190
6190
  * <p>A title of the evaluation form.</p>
6191
6191
  * @public
@@ -6195,7 +6195,7 @@ export interface UpdateEvaluationFormRequest {
6195
6195
  * <p>The description of the evaluation form.</p>
6196
6196
  * @public
6197
6197
  */
6198
- Description?: string;
6198
+ Description?: string | undefined;
6199
6199
  /**
6200
6200
  * <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>
6201
6201
  * @public
@@ -6205,7 +6205,7 @@ export interface UpdateEvaluationFormRequest {
6205
6205
  * <p>A scoring strategy of the evaluation form.</p>
6206
6206
  * @public
6207
6207
  */
6208
- ScoringStrategy?: EvaluationFormScoringStrategy;
6208
+ ScoringStrategy?: EvaluationFormScoringStrategy | undefined;
6209
6209
  /**
6210
6210
  * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
6211
6211
  * request. If not provided, the Amazon Web Services
@@ -6213,7 +6213,7 @@ export interface UpdateEvaluationFormRequest {
6213
6213
  * <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
6214
6214
  * @public
6215
6215
  */
6216
- ClientToken?: string;
6216
+ ClientToken?: string | undefined;
6217
6217
  }
6218
6218
  /**
6219
6219
  * <p>The search criteria to be used to return userHierarchyGroup.</p>
@@ -6224,12 +6224,12 @@ export interface UserHierarchyGroupSearchCriteria {
6224
6224
  * <p>A list of conditions which would be applied together with an OR condition.</p>
6225
6225
  * @public
6226
6226
  */
6227
- OrConditions?: UserHierarchyGroupSearchCriteria[];
6227
+ OrConditions?: UserHierarchyGroupSearchCriteria[] | undefined;
6228
6228
  /**
6229
6229
  * <p>A list of conditions which would be applied together with an AND condition.</p>
6230
6230
  * @public
6231
6231
  */
6232
- AndConditions?: UserHierarchyGroupSearchCriteria[];
6232
+ AndConditions?: UserHierarchyGroupSearchCriteria[] | undefined;
6233
6233
  /**
6234
6234
  * <p>A leaf node condition which can be used to specify a string condition.</p>
6235
6235
  * <note>
@@ -6238,7 +6238,7 @@ export interface UserHierarchyGroupSearchCriteria {
6238
6238
  * </note>
6239
6239
  * @public
6240
6240
  */
6241
- StringCondition?: StringCondition;
6241
+ StringCondition?: StringCondition | undefined;
6242
6242
  }
6243
6243
  /**
6244
6244
  * <p>The search criteria to be used to return users.</p>
@@ -6255,13 +6255,13 @@ export interface UserSearchCriteria {
6255
6255
  * condition.</p>
6256
6256
  * @public
6257
6257
  */
6258
- OrConditions?: UserSearchCriteria[];
6258
+ OrConditions?: UserSearchCriteria[] | undefined;
6259
6259
  /**
6260
6260
  * <p>A list of conditions which would be applied together with an <code>AND</code> condition.
6261
6261
  * </p>
6262
6262
  * @public
6263
6263
  */
6264
- AndConditions?: UserSearchCriteria[];
6264
+ AndConditions?: UserSearchCriteria[] | undefined;
6265
6265
  /**
6266
6266
  * <p>A leaf node condition which can be used to specify a string condition.</p>
6267
6267
  * <p>The currently supported values for <code>FieldName</code> are <code>Username</code>,
@@ -6269,18 +6269,18 @@ export interface UserSearchCriteria {
6269
6269
  * <code>SecurityProfileId</code>, <code>ResourceId</code>.</p>
6270
6270
  * @public
6271
6271
  */
6272
- StringCondition?: StringCondition;
6272
+ StringCondition?: StringCondition | undefined;
6273
6273
  /**
6274
6274
  * <p>A leaf node condition which can be used to specify a List condition to search users with
6275
6275
  * attributes included in Lists like Proficiencies.</p>
6276
6276
  * @public
6277
6277
  */
6278
- ListCondition?: ListCondition;
6278
+ ListCondition?: ListCondition | undefined;
6279
6279
  /**
6280
6280
  * <p>A leaf node condition which can be used to specify a hierarchy group condition.</p>
6281
6281
  * @public
6282
6282
  */
6283
- HierarchyGroupCondition?: HierarchyGroupCondition;
6283
+ HierarchyGroupCondition?: HierarchyGroupCondition | undefined;
6284
6284
  }
6285
6285
  /**
6286
6286
  * @public
@@ -6317,12 +6317,12 @@ export interface RoutingCriteriaInputStep {
6317
6317
  * <p>An object to specify the expiration of a routing step.</p>
6318
6318
  * @public
6319
6319
  */
6320
- Expiry?: RoutingCriteriaInputStepExpiry;
6320
+ Expiry?: RoutingCriteriaInputStepExpiry | undefined;
6321
6321
  /**
6322
6322
  * <p>A tagged union to specify expression for a routing step.</p>
6323
6323
  * @public
6324
6324
  */
6325
- Expression?: Expression;
6325
+ Expression?: Expression | undefined;
6326
6326
  }
6327
6327
  /**
6328
6328
  * @public
@@ -6339,22 +6339,22 @@ export interface SearchAgentStatusesRequest {
6339
6339
  * the next request to retrieve the next set of results.</p>
6340
6340
  * @public
6341
6341
  */
6342
- NextToken?: string;
6342
+ NextToken?: string | undefined;
6343
6343
  /**
6344
6344
  * <p>The maximum number of results to return per page.</p>
6345
6345
  * @public
6346
6346
  */
6347
- MaxResults?: number;
6347
+ MaxResults?: number | undefined;
6348
6348
  /**
6349
6349
  * <p>Filters to be applied to search results.</p>
6350
6350
  * @public
6351
6351
  */
6352
- SearchFilter?: AgentStatusSearchFilter;
6352
+ SearchFilter?: AgentStatusSearchFilter | undefined;
6353
6353
  /**
6354
6354
  * <p>The search criteria to be used to return agent statuses.</p>
6355
6355
  * @public
6356
6356
  */
6357
- SearchCriteria?: AgentStatusSearchCriteria;
6357
+ SearchCriteria?: AgentStatusSearchCriteria | undefined;
6358
6358
  }
6359
6359
  /**
6360
6360
  * @public
@@ -6371,17 +6371,17 @@ export interface SearchContactFlowModulesRequest {
6371
6371
  * the next request to retrieve the next set of results.</p>
6372
6372
  * @public
6373
6373
  */
6374
- NextToken?: string;
6374
+ NextToken?: string | undefined;
6375
6375
  /**
6376
6376
  * <p>The maximum number of results to return per page.</p>
6377
6377
  * @public
6378
6378
  */
6379
- MaxResults?: number;
6379
+ MaxResults?: number | undefined;
6380
6380
  /**
6381
6381
  * <p>Filters to be applied to search results.</p>
6382
6382
  * @public
6383
6383
  */
6384
- SearchFilter?: ContactFlowModuleSearchFilter;
6384
+ SearchFilter?: ContactFlowModuleSearchFilter | undefined;
6385
6385
  /**
6386
6386
  * <p>The search criteria to be used to return contact flow modules.</p>
6387
6387
  * <note>
@@ -6391,7 +6391,7 @@ export interface SearchContactFlowModulesRequest {
6391
6391
  * </note>
6392
6392
  * @public
6393
6393
  */
6394
- SearchCriteria?: ContactFlowModuleSearchCriteria;
6394
+ SearchCriteria?: ContactFlowModuleSearchCriteria | undefined;
6395
6395
  }
6396
6396
  /**
6397
6397
  * @public
@@ -6408,17 +6408,17 @@ export interface SearchContactFlowsRequest {
6408
6408
  * the next request to retrieve the next set of results.</p>
6409
6409
  * @public
6410
6410
  */
6411
- NextToken?: string;
6411
+ NextToken?: string | undefined;
6412
6412
  /**
6413
6413
  * <p>The maximum number of results to return per page.</p>
6414
6414
  * @public
6415
6415
  */
6416
- MaxResults?: number;
6416
+ MaxResults?: number | undefined;
6417
6417
  /**
6418
6418
  * <p>Filters to be applied to search results.</p>
6419
6419
  * @public
6420
6420
  */
6421
- SearchFilter?: ContactFlowSearchFilter;
6421
+ SearchFilter?: ContactFlowSearchFilter | undefined;
6422
6422
  /**
6423
6423
  * <p>The search criteria to be used to return flows.</p>
6424
6424
  * <note>
@@ -6428,7 +6428,7 @@ export interface SearchContactFlowsRequest {
6428
6428
  * </note>
6429
6429
  * @public
6430
6430
  */
6431
- SearchCriteria?: ContactFlowSearchCriteria;
6431
+ SearchCriteria?: ContactFlowSearchCriteria | undefined;
6432
6432
  }
6433
6433
  /**
6434
6434
  * @public
@@ -6444,22 +6444,22 @@ export interface SearchHoursOfOperationsRequest {
6444
6444
  * response in the next request to retrieve the next set of results.</p>
6445
6445
  * @public
6446
6446
  */
6447
- NextToken?: string;
6447
+ NextToken?: string | undefined;
6448
6448
  /**
6449
6449
  * <p>The maximum number of results to return per page.</p>
6450
6450
  * @public
6451
6451
  */
6452
- MaxResults?: number;
6452
+ MaxResults?: number | undefined;
6453
6453
  /**
6454
6454
  * <p>Filters to be applied to search results.</p>
6455
6455
  * @public
6456
6456
  */
6457
- SearchFilter?: HoursOfOperationSearchFilter;
6457
+ SearchFilter?: HoursOfOperationSearchFilter | undefined;
6458
6458
  /**
6459
6459
  * <p>The search criteria to be used to return hours of operations.</p>
6460
6460
  * @public
6461
6461
  */
6462
- SearchCriteria?: HoursOfOperationSearchCriteria;
6462
+ SearchCriteria?: HoursOfOperationSearchCriteria | undefined;
6463
6463
  }
6464
6464
  /**
6465
6465
  * @public
@@ -6476,17 +6476,17 @@ export interface SearchPredefinedAttributesRequest {
6476
6476
  * the next request to retrieve the next set of results.</p>
6477
6477
  * @public
6478
6478
  */
6479
- NextToken?: string;
6479
+ NextToken?: string | undefined;
6480
6480
  /**
6481
6481
  * <p>The maximum number of results to return per page.</p>
6482
6482
  * @public
6483
6483
  */
6484
- MaxResults?: number;
6484
+ MaxResults?: number | undefined;
6485
6485
  /**
6486
6486
  * <p>The search criteria to be used to return predefined attributes.</p>
6487
6487
  * @public
6488
6488
  */
6489
- SearchCriteria?: PredefinedAttributeSearchCriteria;
6489
+ SearchCriteria?: PredefinedAttributeSearchCriteria | undefined;
6490
6490
  }
6491
6491
  /**
6492
6492
  * @public
@@ -6502,22 +6502,22 @@ export interface SearchPromptsRequest {
6502
6502
  * response in the next request to retrieve the next set of results.</p>
6503
6503
  * @public
6504
6504
  */
6505
- NextToken?: string;
6505
+ NextToken?: string | undefined;
6506
6506
  /**
6507
6507
  * <p>The maximum number of results to return per page.</p>
6508
6508
  * @public
6509
6509
  */
6510
- MaxResults?: number;
6510
+ MaxResults?: number | undefined;
6511
6511
  /**
6512
6512
  * <p>Filters to be applied to search results.</p>
6513
6513
  * @public
6514
6514
  */
6515
- SearchFilter?: PromptSearchFilter;
6515
+ SearchFilter?: PromptSearchFilter | undefined;
6516
6516
  /**
6517
6517
  * <p>The search criteria to be used to return prompts.</p>
6518
6518
  * @public
6519
6519
  */
6520
- SearchCriteria?: PromptSearchCriteria;
6520
+ SearchCriteria?: PromptSearchCriteria | undefined;
6521
6521
  }
6522
6522
  /**
6523
6523
  * @public
@@ -6533,17 +6533,17 @@ export interface SearchQueuesRequest {
6533
6533
  * response in the next request to retrieve the next set of results.</p>
6534
6534
  * @public
6535
6535
  */
6536
- NextToken?: string;
6536
+ NextToken?: string | undefined;
6537
6537
  /**
6538
6538
  * <p>The maximum number of results to return per page.</p>
6539
6539
  * @public
6540
6540
  */
6541
- MaxResults?: number;
6541
+ MaxResults?: number | undefined;
6542
6542
  /**
6543
6543
  * <p>Filters to be applied to search results.</p>
6544
6544
  * @public
6545
6545
  */
6546
- SearchFilter?: QueueSearchFilter;
6546
+ SearchFilter?: QueueSearchFilter | undefined;
6547
6547
  /**
6548
6548
  * <p>The search criteria to be used to return queues.</p>
6549
6549
  * <note>
@@ -6553,7 +6553,7 @@ export interface SearchQueuesRequest {
6553
6553
  * </note>
6554
6554
  * @public
6555
6555
  */
6556
- SearchCriteria?: QueueSearchCriteria;
6556
+ SearchCriteria?: QueueSearchCriteria | undefined;
6557
6557
  }
6558
6558
  /**
6559
6559
  * @public
@@ -6569,22 +6569,22 @@ export interface SearchQuickConnectsRequest {
6569
6569
  * response in the next request to retrieve the next set of results.</p>
6570
6570
  * @public
6571
6571
  */
6572
- NextToken?: string;
6572
+ NextToken?: string | undefined;
6573
6573
  /**
6574
6574
  * <p>The maximum number of results to return per page.</p>
6575
6575
  * @public
6576
6576
  */
6577
- MaxResults?: number;
6577
+ MaxResults?: number | undefined;
6578
6578
  /**
6579
6579
  * <p>Filters to be applied to search results.</p>
6580
6580
  * @public
6581
6581
  */
6582
- SearchFilter?: QuickConnectSearchFilter;
6582
+ SearchFilter?: QuickConnectSearchFilter | undefined;
6583
6583
  /**
6584
6584
  * <p>The search criteria to be used to return quick connects.</p>
6585
6585
  * @public
6586
6586
  */
6587
- SearchCriteria?: QuickConnectSearchCriteria;
6587
+ SearchCriteria?: QuickConnectSearchCriteria | undefined;
6588
6588
  }
6589
6589
  /**
6590
6590
  * @public
@@ -6600,17 +6600,17 @@ export interface SearchRoutingProfilesRequest {
6600
6600
  * response in the next request to retrieve the next set of results.</p>
6601
6601
  * @public
6602
6602
  */
6603
- NextToken?: string;
6603
+ NextToken?: string | undefined;
6604
6604
  /**
6605
6605
  * <p>The maximum number of results to return per page.</p>
6606
6606
  * @public
6607
6607
  */
6608
- MaxResults?: number;
6608
+ MaxResults?: number | undefined;
6609
6609
  /**
6610
6610
  * <p>Filters to be applied to search results.</p>
6611
6611
  * @public
6612
6612
  */
6613
- SearchFilter?: RoutingProfileSearchFilter;
6613
+ SearchFilter?: RoutingProfileSearchFilter | undefined;
6614
6614
  /**
6615
6615
  * <p>The search criteria to be used to return routing profiles.</p>
6616
6616
  * <note>
@@ -6620,7 +6620,7 @@ export interface SearchRoutingProfilesRequest {
6620
6620
  * </note>
6621
6621
  * @public
6622
6622
  */
6623
- SearchCriteria?: RoutingProfileSearchCriteria;
6623
+ SearchCriteria?: RoutingProfileSearchCriteria | undefined;
6624
6624
  }
6625
6625
  /**
6626
6626
  * @public
@@ -6636,12 +6636,12 @@ export interface SearchSecurityProfilesRequest {
6636
6636
  * response in the next request to retrieve the next set of results.</p>
6637
6637
  * @public
6638
6638
  */
6639
- NextToken?: string;
6639
+ NextToken?: string | undefined;
6640
6640
  /**
6641
6641
  * <p>The maximum number of results to return per page.</p>
6642
6642
  * @public
6643
6643
  */
6644
- MaxResults?: number;
6644
+ MaxResults?: number | undefined;
6645
6645
  /**
6646
6646
  * <p>The search criteria to be used to return security profiles. </p>
6647
6647
  * <note>
@@ -6655,12 +6655,12 @@ export interface SearchSecurityProfilesRequest {
6655
6655
  * </note>
6656
6656
  * @public
6657
6657
  */
6658
- SearchCriteria?: SecurityProfileSearchCriteria;
6658
+ SearchCriteria?: SecurityProfileSearchCriteria | undefined;
6659
6659
  /**
6660
6660
  * <p>Filters to be applied to search results.</p>
6661
6661
  * @public
6662
6662
  */
6663
- SearchFilter?: SecurityProfilesSearchFilter;
6663
+ SearchFilter?: SecurityProfilesSearchFilter | undefined;
6664
6664
  }
6665
6665
  /**
6666
6666
  * @public
@@ -6677,22 +6677,22 @@ export interface SearchUserHierarchyGroupsRequest {
6677
6677
  * the next request to retrieve the next set of results.</p>
6678
6678
  * @public
6679
6679
  */
6680
- NextToken?: string;
6680
+ NextToken?: string | undefined;
6681
6681
  /**
6682
6682
  * <p>The maximum number of results to return per page.</p>
6683
6683
  * @public
6684
6684
  */
6685
- MaxResults?: number;
6685
+ MaxResults?: number | undefined;
6686
6686
  /**
6687
6687
  * <p>Filters to be applied to search results.</p>
6688
6688
  * @public
6689
6689
  */
6690
- SearchFilter?: UserHierarchyGroupSearchFilter;
6690
+ SearchFilter?: UserHierarchyGroupSearchFilter | undefined;
6691
6691
  /**
6692
6692
  * <p>The search criteria to be used to return UserHierarchyGroups.</p>
6693
6693
  * @public
6694
6694
  */
6695
- SearchCriteria?: UserHierarchyGroupSearchCriteria;
6695
+ SearchCriteria?: UserHierarchyGroupSearchCriteria | undefined;
6696
6696
  }
6697
6697
  /**
6698
6698
  * @public
@@ -6711,17 +6711,17 @@ export interface SearchUsersRequest {
6711
6711
  * response in the next request to retrieve the next set of results.</p>
6712
6712
  * @public
6713
6713
  */
6714
- NextToken?: string;
6714
+ NextToken?: string | undefined;
6715
6715
  /**
6716
6716
  * <p>The maximum number of results to return per page.</p>
6717
6717
  * @public
6718
6718
  */
6719
- MaxResults?: number;
6719
+ MaxResults?: number | undefined;
6720
6720
  /**
6721
6721
  * <p>Filters to be applied to search results.</p>
6722
6722
  * @public
6723
6723
  */
6724
- SearchFilter?: UserSearchFilter;
6724
+ SearchFilter?: UserSearchFilter | undefined;
6725
6725
  /**
6726
6726
  * <p>The search criteria to be used to return users.</p>
6727
6727
  * <note>
@@ -6731,7 +6731,7 @@ export interface SearchUsersRequest {
6731
6731
  * </note>
6732
6732
  * @public
6733
6733
  */
6734
- SearchCriteria?: UserSearchCriteria;
6734
+ SearchCriteria?: UserSearchCriteria | undefined;
6735
6735
  }
6736
6736
  /**
6737
6737
  * <p>Step signifies the criteria to be used for routing to an agent</p>
@@ -6742,17 +6742,17 @@ export interface Step {
6742
6742
  * <p>An object to specify the expiration of a routing step.</p>
6743
6743
  * @public
6744
6744
  */
6745
- Expiry?: Expiry;
6745
+ Expiry?: Expiry | undefined;
6746
6746
  /**
6747
6747
  * <p>A tagged union to specify expression for a routing step.</p>
6748
6748
  * @public
6749
6749
  */
6750
- Expression?: Expression;
6750
+ Expression?: Expression | undefined;
6751
6751
  /**
6752
6752
  * <p>Represents status of the Routing step.</p>
6753
6753
  * @public
6754
6754
  */
6755
- Status?: RoutingCriteriaStepStatus;
6755
+ Status?: RoutingCriteriaStepStatus | undefined;
6756
6756
  }
6757
6757
  /**
6758
6758
  * <p>Latest routing criteria on the contact.</p>
@@ -6766,7 +6766,7 @@ export interface RoutingCriteria {
6766
6766
  * contact will be offered to any agent in the queue.</p>
6767
6767
  * @public
6768
6768
  */
6769
- Steps?: Step[];
6769
+ Steps?: Step[] | undefined;
6770
6770
  /**
6771
6771
  * <p>The timestamp indicating when the routing criteria is set to active. A routing criteria is
6772
6772
  * activated when contact is transferred to a queue. ActivationTimestamp will be set on routing
@@ -6774,12 +6774,12 @@ export interface RoutingCriteria {
6774
6774
  * in agent queue.</p>
6775
6775
  * @public
6776
6776
  */
6777
- ActivationTimestamp?: Date;
6777
+ ActivationTimestamp?: Date | undefined;
6778
6778
  /**
6779
6779
  * <p>Information about the index of the routing criteria.</p>
6780
6780
  * @public
6781
6781
  */
6782
- Index?: number;
6782
+ Index?: number | undefined;
6783
6783
  }
6784
6784
  /**
6785
6785
  * <p>An object to define the RoutingCriteria.</p>
@@ -6795,7 +6795,7 @@ export interface RoutingCriteriaInput {
6795
6795
  * any agent in the queue.</p>
6796
6796
  * @public
6797
6797
  */
6798
- Steps?: RoutingCriteriaInputStep[];
6798
+ Steps?: RoutingCriteriaInputStep[] | undefined;
6799
6799
  }
6800
6800
  /**
6801
6801
  * <p>Contains information about a contact.</p>
@@ -6806,52 +6806,52 @@ export interface Contact {
6806
6806
  * <p>The Amazon Resource Name (ARN) for the contact.</p>
6807
6807
  * @public
6808
6808
  */
6809
- Arn?: string;
6809
+ Arn?: string | undefined;
6810
6810
  /**
6811
6811
  * <p>The identifier for the contact.</p>
6812
6812
  * @public
6813
6813
  */
6814
- Id?: string;
6814
+ Id?: string | undefined;
6815
6815
  /**
6816
6816
  * <p>If this contact is related to other contacts, this is the ID of the initial contact.</p>
6817
6817
  * @public
6818
6818
  */
6819
- InitialContactId?: string;
6819
+ InitialContactId?: string | undefined;
6820
6820
  /**
6821
6821
  * <p>If this contact is not the first contact, this is the ID of the previous contact.</p>
6822
6822
  * @public
6823
6823
  */
6824
- PreviousContactId?: string;
6824
+ PreviousContactId?: string | undefined;
6825
6825
  /**
6826
6826
  * <p>Indicates how the contact was initiated.</p>
6827
6827
  * @public
6828
6828
  */
6829
- InitiationMethod?: ContactInitiationMethod;
6829
+ InitiationMethod?: ContactInitiationMethod | undefined;
6830
6830
  /**
6831
6831
  * <p>The name of the contact.</p>
6832
6832
  * @public
6833
6833
  */
6834
- Name?: string;
6834
+ Name?: string | undefined;
6835
6835
  /**
6836
6836
  * <p>The description of the contact.</p>
6837
6837
  * @public
6838
6838
  */
6839
- Description?: string;
6839
+ Description?: string | undefined;
6840
6840
  /**
6841
6841
  * <p>How the contact reached your contact center.</p>
6842
6842
  * @public
6843
6843
  */
6844
- Channel?: Channel;
6844
+ Channel?: Channel | undefined;
6845
6845
  /**
6846
6846
  * <p>If this contact was queued, this contains information about the queue. </p>
6847
6847
  * @public
6848
6848
  */
6849
- QueueInfo?: QueueInfo;
6849
+ QueueInfo?: QueueInfo | undefined;
6850
6850
  /**
6851
6851
  * <p>Information about the agent who accepted the contact.</p>
6852
6852
  * @public
6853
6853
  */
6854
- AgentInfo?: AgentInfo;
6854
+ AgentInfo?: AgentInfo | undefined;
6855
6855
  /**
6856
6856
  * <p>The date and time this contact was initiated, in UTC time. For <code>INBOUND</code>, this is
6857
6857
  * when the contact arrived. For <code>OUTBOUND</code>, this is when the agent began dialing. For
@@ -6862,61 +6862,61 @@ export interface Contact {
6862
6862
  * started listening to a contact.</p>
6863
6863
  * @public
6864
6864
  */
6865
- InitiationTimestamp?: Date;
6865
+ InitiationTimestamp?: Date | undefined;
6866
6866
  /**
6867
6867
  * <p>The timestamp when the customer endpoint disconnected from Amazon Connect.</p>
6868
6868
  * @public
6869
6869
  */
6870
- DisconnectTimestamp?: Date;
6870
+ DisconnectTimestamp?: Date | undefined;
6871
6871
  /**
6872
6872
  * <p>The timestamp when contact was last updated.</p>
6873
6873
  * @public
6874
6874
  */
6875
- LastUpdateTimestamp?: Date;
6875
+ LastUpdateTimestamp?: Date | undefined;
6876
6876
  /**
6877
6877
  * <p>The timestamp when the contact was last paused.</p>
6878
6878
  * @public
6879
6879
  */
6880
- LastPausedTimestamp?: Date;
6880
+ LastPausedTimestamp?: Date | undefined;
6881
6881
  /**
6882
6882
  * <p>The timestamp when the contact was last resumed.</p>
6883
6883
  * @public
6884
6884
  */
6885
- LastResumedTimestamp?: Date;
6885
+ LastResumedTimestamp?: Date | undefined;
6886
6886
  /**
6887
6887
  * <p>Total pause count for a contact.</p>
6888
6888
  * @public
6889
6889
  */
6890
- TotalPauseCount?: number;
6890
+ TotalPauseCount?: number | undefined;
6891
6891
  /**
6892
6892
  * <p>Total pause duration for a contact in seconds.</p>
6893
6893
  * @public
6894
6894
  */
6895
- TotalPauseDurationInSeconds?: number;
6895
+ TotalPauseDurationInSeconds?: number | undefined;
6896
6896
  /**
6897
6897
  * <p>The timestamp, in Unix epoch time format, at which to start running the inbound flow.
6898
6898
  * </p>
6899
6899
  * @public
6900
6900
  */
6901
- ScheduledTimestamp?: Date;
6901
+ ScheduledTimestamp?: Date | undefined;
6902
6902
  /**
6903
6903
  * <p>The contactId that is <a href="https://docs.aws.amazon.com/connect/latest/adminguide/chat-persistence.html#relatedcontactid">related</a> to this
6904
6904
  * contact.</p>
6905
6905
  * @public
6906
6906
  */
6907
- RelatedContactId?: string;
6907
+ RelatedContactId?: string | undefined;
6908
6908
  /**
6909
6909
  * <p>Information about Amazon Connect Wisdom.</p>
6910
6910
  * @public
6911
6911
  */
6912
- WisdomInfo?: WisdomInfo;
6912
+ WisdomInfo?: WisdomInfo | undefined;
6913
6913
  /**
6914
6914
  * <p>An integer that represents the queue time adjust to be applied to the contact, in seconds
6915
6915
  * (longer / larger queue time are routed preferentially). Cannot be specified if the QueuePriority
6916
6916
  * is specified. Must be statically defined and a valid integer value.</p>
6917
6917
  * @public
6918
6918
  */
6919
- QueueTimeAdjustmentSeconds?: number;
6919
+ QueueTimeAdjustmentSeconds?: number | undefined;
6920
6920
  /**
6921
6921
  * <p>An integer that represents the queue priority to be applied to the contact (lower priorities
6922
6922
  * are routed preferentially). Cannot be specified if the QueueTimeAdjustmentSeconds is specified.
@@ -6924,54 +6924,54 @@ export interface Contact {
6924
6924
  * 5.</p>
6925
6925
  * @public
6926
6926
  */
6927
- QueuePriority?: number;
6927
+ QueuePriority?: number | undefined;
6928
6928
  /**
6929
6929
  * <p>Tags associated with the contact. This contains both Amazon Web Services generated and
6930
6930
  * user-defined tags.</p>
6931
6931
  * @public
6932
6932
  */
6933
- Tags?: Record<string, string>;
6933
+ Tags?: Record<string, string> | undefined;
6934
6934
  /**
6935
6935
  * <p>The timestamp when customer endpoint connected to Amazon Connect.</p>
6936
6936
  * @public
6937
6937
  */
6938
- ConnectedToSystemTimestamp?: Date;
6938
+ ConnectedToSystemTimestamp?: Date | undefined;
6939
6939
  /**
6940
6940
  * <p>Latest routing criteria on the contact.</p>
6941
6941
  * @public
6942
6942
  */
6943
- RoutingCriteria?: RoutingCriteria;
6943
+ RoutingCriteria?: RoutingCriteria | undefined;
6944
6944
  /**
6945
6945
  * <p>Information about the Customer on the contact.</p>
6946
6946
  * @public
6947
6947
  */
6948
- Customer?: Customer;
6948
+ Customer?: Customer | undefined;
6949
6949
  /**
6950
6950
  * <p>Information associated with a campaign.</p>
6951
6951
  * @public
6952
6952
  */
6953
- Campaign?: Campaign;
6953
+ Campaign?: Campaign | undefined;
6954
6954
  /**
6955
6955
  * <p>Indicates how an <a href="https://docs.aws.amazon.com/connect/latest/adminguide/how-to-create-campaigns.html">outbound campaign</a> call is
6956
6956
  * actually disposed if the contact is connected to Amazon Connect.</p>
6957
6957
  * @public
6958
6958
  */
6959
- AnsweringMachineDetectionStatus?: AnsweringMachineDetectionStatus;
6959
+ AnsweringMachineDetectionStatus?: AnsweringMachineDetectionStatus | undefined;
6960
6960
  /**
6961
6961
  * <p>Information about customer’s voice activity.</p>
6962
6962
  * @public
6963
6963
  */
6964
- CustomerVoiceActivity?: CustomerVoiceActivity;
6964
+ CustomerVoiceActivity?: CustomerVoiceActivity | undefined;
6965
6965
  /**
6966
6966
  * <p>Information about the quality of the participant's media connection.</p>
6967
6967
  * @public
6968
6968
  */
6969
- QualityMetrics?: QualityMetrics;
6969
+ QualityMetrics?: QualityMetrics | undefined;
6970
6970
  /**
6971
6971
  * <p>Information about the call disconnect experience.</p>
6972
6972
  * @public
6973
6973
  */
6974
- DisconnectDetails?: DisconnectDetails;
6974
+ DisconnectDetails?: DisconnectDetails | undefined;
6975
6975
  /**
6976
6976
  * <p>A set of system defined key-value pairs stored on individual contact segments using an
6977
6977
  * attribute map. The attributes are standard Amazon Connect attributes and can be accessed in
@@ -6980,7 +6980,7 @@ export interface Contact {
6980
6980
  * <code>connect:SMS</code>.</p>
6981
6981
  * @public
6982
6982
  */
6983
- SegmentAttributes?: Record<string, SegmentAttributeValue>;
6983
+ SegmentAttributes?: Record<string, SegmentAttributeValue> | undefined;
6984
6984
  }
6985
6985
  /**
6986
6986
  * @public
@@ -7002,20 +7002,20 @@ export interface UpdateContactRoutingDataRequest {
7002
7002
  * queue compared to others also changes their position in queue.</p>
7003
7003
  * @public
7004
7004
  */
7005
- QueueTimeAdjustmentSeconds?: number;
7005
+ QueueTimeAdjustmentSeconds?: number | undefined;
7006
7006
  /**
7007
7007
  * <p>Priority of the contact in the queue. The default priority for new contacts is 5. You can
7008
7008
  * raise the priority of a contact compared to other contacts in the queue by assigning them a
7009
7009
  * higher priority, such as 1 or 2.</p>
7010
7010
  * @public
7011
7011
  */
7012
- QueuePriority?: number;
7012
+ QueuePriority?: number | undefined;
7013
7013
  /**
7014
7014
  * <p>Updates the routing criteria on the contact. These properties can be used to change how a
7015
7015
  * contact is routed within the queue.</p>
7016
7016
  * @public
7017
7017
  */
7018
- RoutingCriteria?: RoutingCriteriaInput;
7018
+ RoutingCriteria?: RoutingCriteriaInput | undefined;
7019
7019
  }
7020
7020
  /**
7021
7021
  * @public
@@ -7025,7 +7025,7 @@ export interface DescribeContactResponse {
7025
7025
  * <p>Information about the contact.</p>
7026
7026
  * @public
7027
7027
  */
7028
- Contact?: Contact;
7028
+ Contact?: Contact | undefined;
7029
7029
  }
7030
7030
  /**
7031
7031
  * @internal