@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,27 +10,27 @@ export interface AttributeCondition {
10
10
  * <p>The name of predefined attribute.</p>
11
11
  * @public
12
12
  */
13
- Name?: string;
13
+ Name?: string | undefined;
14
14
  /**
15
15
  * <p>The value of predefined attribute.</p>
16
16
  * @public
17
17
  */
18
- Value?: string;
18
+ Value?: string | undefined;
19
19
  /**
20
20
  * <p>The proficiency level of the condition.</p>
21
21
  * @public
22
22
  */
23
- ProficiencyLevel?: number;
23
+ ProficiencyLevel?: number | undefined;
24
24
  /**
25
25
  * <p>An object to define <code>AgentsCriteria</code>.</p>
26
26
  * @public
27
27
  */
28
- MatchCriteria?: MatchCriteria;
28
+ MatchCriteria?: MatchCriteria | undefined;
29
29
  /**
30
30
  * <p>The operator of the condition.</p>
31
31
  * @public
32
32
  */
33
- ComparisonOperator?: string;
33
+ ComparisonOperator?: string | undefined;
34
34
  }
35
35
  /**
36
36
  * @public
@@ -56,7 +56,7 @@ export interface SegmentAttributeValue {
56
56
  * <p>The value of a segment attribute.</p>
57
57
  * @public
58
58
  */
59
- ValueString?: string;
59
+ ValueString?: string | undefined;
60
60
  }
61
61
  /**
62
62
  * <p>Information about Amazon Connect Wisdom.</p>
@@ -67,7 +67,7 @@ export interface WisdomInfo {
67
67
  * <p>The Amazon Resource Name (ARN) of the Wisdom session.</p>
68
68
  * @public
69
69
  */
70
- SessionArn?: string;
70
+ SessionArn?: string | undefined;
71
71
  }
72
72
  /**
73
73
  * @public
@@ -150,12 +150,12 @@ export interface EvaluationAnswerOutput {
150
150
  * <p>The value for an answer in a contact evaluation.</p>
151
151
  * @public
152
152
  */
153
- Value?: EvaluationAnswerData;
153
+ Value?: EvaluationAnswerData | undefined;
154
154
  /**
155
155
  * <p>The system suggested value for an answer in a contact evaluation.</p>
156
156
  * @public
157
157
  */
158
- SystemSuggestedValue?: EvaluationAnswerData;
158
+ SystemSuggestedValue?: EvaluationAnswerData | undefined;
159
159
  }
160
160
  /**
161
161
  * <p>Information about scores of a contact evaluation item (section or question).</p>
@@ -166,18 +166,18 @@ export interface EvaluationScore {
166
166
  * <p>The score percentage for an item in a contact evaluation.</p>
167
167
  * @public
168
168
  */
169
- Percentage?: number;
169
+ Percentage?: number | undefined;
170
170
  /**
171
171
  * <p>The flag to mark the item as not applicable for scoring.</p>
172
172
  * @public
173
173
  */
174
- NotApplicable?: boolean;
174
+ NotApplicable?: boolean | undefined;
175
175
  /**
176
176
  * <p>The flag that marks the item as automatic fail. If the item or a child item gets an
177
177
  * automatic fail answer, this flag will be true.</p>
178
178
  * @public
179
179
  */
180
- AutomaticFail?: boolean;
180
+ AutomaticFail?: boolean | undefined;
181
181
  }
182
182
  /**
183
183
  * <p>Metadata information about a contact evaluation.</p>
@@ -198,12 +198,12 @@ export interface EvaluationMetadata {
198
198
  * <p>The identifier of the agent who performed the contact.</p>
199
199
  * @public
200
200
  */
201
- ContactAgentId?: string;
201
+ ContactAgentId?: string | undefined;
202
202
  /**
203
203
  * <p>The overall score of the contact evaluation.</p>
204
204
  * @public
205
205
  */
206
- Score?: EvaluationScore;
206
+ Score?: EvaluationScore | undefined;
207
207
  }
208
208
  /**
209
209
  * <p>Information about notes for a contact evaluation.</p>
@@ -220,7 +220,7 @@ export interface EvaluationNote {
220
220
  * </note>
221
221
  * @public
222
222
  */
223
- Value?: string;
223
+ Value?: string | undefined;
224
224
  }
225
225
  /**
226
226
  * @public
@@ -273,7 +273,7 @@ export interface Evaluation {
273
273
  * <p>A map of item (section or question) identifiers to score value.</p>
274
274
  * @public
275
275
  */
276
- Scores?: Record<string, EvaluationScore>;
276
+ Scores?: Record<string, EvaluationScore> | undefined;
277
277
  /**
278
278
  * <p>The timestamp for when the evaluation was created.</p>
279
279
  * @public
@@ -288,7 +288,7 @@ export interface Evaluation {
288
288
  * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
289
289
  * @public
290
290
  */
291
- Tags?: Record<string, string>;
291
+ Tags?: Record<string, string> | undefined;
292
292
  }
293
293
  /**
294
294
  * <p>The flow has not been published.</p>
@@ -297,7 +297,7 @@ export interface Evaluation {
297
297
  export declare class ContactFlowNotPublishedException extends __BaseException {
298
298
  readonly name: "ContactFlowNotPublishedException";
299
299
  readonly $fault: "client";
300
- Message?: string;
300
+ Message?: string | undefined;
301
301
  /**
302
302
  * @internal
303
303
  */
@@ -339,50 +339,50 @@ export interface ContactFlow {
339
339
  * <p>The Amazon Resource Name (ARN) of the flow.</p>
340
340
  * @public
341
341
  */
342
- Arn?: string;
342
+ Arn?: string | undefined;
343
343
  /**
344
344
  * <p>The identifier of the flow.</p>
345
345
  * @public
346
346
  */
347
- Id?: string;
347
+ Id?: string | undefined;
348
348
  /**
349
349
  * <p>The name of the flow.</p>
350
350
  * @public
351
351
  */
352
- Name?: string;
352
+ Name?: string | undefined;
353
353
  /**
354
354
  * <p>The type of the flow. For descriptions of the available types, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/create-contact-flow.html#contact-flow-types">Choose a flow type</a> in the <i>Amazon Connect Administrator
355
355
  * Guide</i>.</p>
356
356
  * @public
357
357
  */
358
- Type?: ContactFlowType;
358
+ Type?: ContactFlowType | undefined;
359
359
  /**
360
360
  * <p>The type of flow.</p>
361
361
  * @public
362
362
  */
363
- State?: ContactFlowState;
363
+ State?: ContactFlowState | undefined;
364
364
  /**
365
365
  * <p>The status of the contact flow.</p>
366
366
  * @public
367
367
  */
368
- Status?: ContactFlowStatus;
368
+ Status?: ContactFlowStatus | undefined;
369
369
  /**
370
370
  * <p>The description of the flow.</p>
371
371
  * @public
372
372
  */
373
- Description?: string;
373
+ Description?: string | undefined;
374
374
  /**
375
375
  * <p>The JSON string that represents the content of the flow. For an example, see <a href="https://docs.aws.amazon.com/connect/latest/APIReference/flow-language-example.html">Example
376
376
  * flow in Amazon Connect Flow language</a>. </p>
377
377
  * <p>Length Constraints: Minimum length of 1. Maximum length of 256000.</p>
378
378
  * @public
379
379
  */
380
- Content?: string;
380
+ Content?: string | undefined;
381
381
  /**
382
382
  * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
383
383
  * @public
384
384
  */
385
- Tags?: Record<string, string>;
385
+ Tags?: Record<string, string> | undefined;
386
386
  }
387
387
  /**
388
388
  * @public
@@ -392,7 +392,7 @@ export interface DescribeContactFlowResponse {
392
392
  * <p>Information about the flow.</p>
393
393
  * @public
394
394
  */
395
- ContactFlow?: ContactFlow;
395
+ ContactFlow?: ContactFlow | undefined;
396
396
  }
397
397
  /**
398
398
  * @public
@@ -442,43 +442,43 @@ export interface ContactFlowModule {
442
442
  * <p>The Amazon Resource Name (ARN).</p>
443
443
  * @public
444
444
  */
445
- Arn?: string;
445
+ Arn?: string | undefined;
446
446
  /**
447
447
  * <p>The identifier of the flow module.</p>
448
448
  * @public
449
449
  */
450
- Id?: string;
450
+ Id?: string | undefined;
451
451
  /**
452
452
  * <p>The name of the flow module.</p>
453
453
  * @public
454
454
  */
455
- Name?: string;
455
+ Name?: string | undefined;
456
456
  /**
457
457
  * <p>The JSON string that represents the content of the flow. For an example, see <a href="https://docs.aws.amazon.com/connect/latest/APIReference/flow-language-example.html">Example
458
458
  * flow in Amazon Connect Flow language</a>. </p>
459
459
  * @public
460
460
  */
461
- Content?: string;
461
+ Content?: string | undefined;
462
462
  /**
463
463
  * <p>The description of the flow module.</p>
464
464
  * @public
465
465
  */
466
- Description?: string;
466
+ Description?: string | undefined;
467
467
  /**
468
468
  * <p>The type of flow module.</p>
469
469
  * @public
470
470
  */
471
- State?: ContactFlowModuleState;
471
+ State?: ContactFlowModuleState | undefined;
472
472
  /**
473
473
  * <p>The status of the flow module.</p>
474
474
  * @public
475
475
  */
476
- Status?: ContactFlowModuleStatus;
476
+ Status?: ContactFlowModuleStatus | undefined;
477
477
  /**
478
478
  * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
479
479
  * @public
480
480
  */
481
- Tags?: Record<string, string>;
481
+ Tags?: Record<string, string> | undefined;
482
482
  }
483
483
  /**
484
484
  * @public
@@ -488,7 +488,7 @@ export interface DescribeContactFlowModuleResponse {
488
488
  * <p>Information about the flow module.</p>
489
489
  * @public
490
490
  */
491
- ContactFlowModule?: ContactFlowModule;
491
+ ContactFlowModule?: ContactFlowModule | undefined;
492
492
  }
493
493
  /**
494
494
  * @public
@@ -508,7 +508,7 @@ export interface DescribeEvaluationFormRequest {
508
508
  * <p>A version of the evaluation form.</p>
509
509
  * @public
510
510
  */
511
- EvaluationFormVersion?: number;
511
+ EvaluationFormVersion?: number | undefined;
512
512
  }
513
513
  /**
514
514
  * @public
@@ -546,47 +546,47 @@ export interface HoursOfOperation {
546
546
  * <p>The identifier for the hours of operation.</p>
547
547
  * @public
548
548
  */
549
- HoursOfOperationId?: string;
549
+ HoursOfOperationId?: string | undefined;
550
550
  /**
551
551
  * <p>The Amazon Resource Name (ARN) for the hours of operation.</p>
552
552
  * @public
553
553
  */
554
- HoursOfOperationArn?: string;
554
+ HoursOfOperationArn?: string | undefined;
555
555
  /**
556
556
  * <p>The name for the hours of operation.</p>
557
557
  * @public
558
558
  */
559
- Name?: string;
559
+ Name?: string | undefined;
560
560
  /**
561
561
  * <p>The description for the hours of operation.</p>
562
562
  * @public
563
563
  */
564
- Description?: string;
564
+ Description?: string | undefined;
565
565
  /**
566
566
  * <p>The time zone for the hours of operation.</p>
567
567
  * @public
568
568
  */
569
- TimeZone?: string;
569
+ TimeZone?: string | undefined;
570
570
  /**
571
571
  * <p>Configuration information for the hours of operation.</p>
572
572
  * @public
573
573
  */
574
- Config?: HoursOfOperationConfig[];
574
+ Config?: HoursOfOperationConfig[] | undefined;
575
575
  /**
576
576
  * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
577
577
  * @public
578
578
  */
579
- Tags?: Record<string, string>;
579
+ Tags?: Record<string, string> | undefined;
580
580
  /**
581
581
  * <p>The timestamp when this resource was last modified.</p>
582
582
  * @public
583
583
  */
584
- LastModifiedTime?: Date;
584
+ LastModifiedTime?: Date | undefined;
585
585
  /**
586
586
  * <p>The Amazon Web Services Region where this resource was last modified.</p>
587
587
  * @public
588
588
  */
589
- LastModifiedRegion?: string;
589
+ LastModifiedRegion?: string | undefined;
590
590
  }
591
591
  /**
592
592
  * @public
@@ -596,7 +596,7 @@ export interface DescribeHoursOfOperationResponse {
596
596
  * <p>The hours of operation.</p>
597
597
  * @public
598
598
  */
599
- HoursOfOperation?: HoursOfOperation;
599
+ HoursOfOperation?: HoursOfOperation | undefined;
600
600
  }
601
601
  /**
602
602
  * @public
@@ -631,7 +631,7 @@ export interface InstanceStatusReason {
631
631
  * <p>The message.</p>
632
632
  * @public
633
633
  */
634
- Message?: string;
634
+ Message?: string | undefined;
635
635
  }
636
636
  /**
637
637
  * <p>The Amazon Connect instance.</p>
@@ -642,63 +642,63 @@ export interface Instance {
642
642
  * <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>
643
643
  * @public
644
644
  */
645
- Id?: string;
645
+ Id?: string | undefined;
646
646
  /**
647
647
  * <p>The Amazon Resource Name (ARN) of the instance.</p>
648
648
  * @public
649
649
  */
650
- Arn?: string;
650
+ Arn?: string | undefined;
651
651
  /**
652
652
  * <p>The identity management type.</p>
653
653
  * @public
654
654
  */
655
- IdentityManagementType?: DirectoryType;
655
+ IdentityManagementType?: DirectoryType | undefined;
656
656
  /**
657
657
  * <p>The alias of instance.</p>
658
658
  * @public
659
659
  */
660
- InstanceAlias?: string;
660
+ InstanceAlias?: string | undefined;
661
661
  /**
662
662
  * <p>When the instance was created.</p>
663
663
  * @public
664
664
  */
665
- CreatedTime?: Date;
665
+ CreatedTime?: Date | undefined;
666
666
  /**
667
667
  * <p>The service role of the instance.</p>
668
668
  * @public
669
669
  */
670
- ServiceRole?: string;
670
+ ServiceRole?: string | undefined;
671
671
  /**
672
672
  * <p>The state of the instance.</p>
673
673
  * @public
674
674
  */
675
- InstanceStatus?: InstanceStatus;
675
+ InstanceStatus?: InstanceStatus | undefined;
676
676
  /**
677
677
  * <p>Relevant
678
678
  * details why the instance was not successfully created. </p>
679
679
  * @public
680
680
  */
681
- StatusReason?: InstanceStatusReason;
681
+ StatusReason?: InstanceStatusReason | undefined;
682
682
  /**
683
683
  * <p>Whether inbound calls are enabled.</p>
684
684
  * @public
685
685
  */
686
- InboundCallsEnabled?: boolean;
686
+ InboundCallsEnabled?: boolean | undefined;
687
687
  /**
688
688
  * <p>Whether outbound calls are enabled.</p>
689
689
  * @public
690
690
  */
691
- OutboundCallsEnabled?: boolean;
691
+ OutboundCallsEnabled?: boolean | undefined;
692
692
  /**
693
693
  * <p>This URL allows contact center users to access the Amazon Connect admin website.</p>
694
694
  * @public
695
695
  */
696
- InstanceAccessUrl?: string;
696
+ InstanceAccessUrl?: string | undefined;
697
697
  /**
698
698
  * <p>The tags of an instance.</p>
699
699
  * @public
700
700
  */
701
- Tags?: Record<string, string>;
701
+ Tags?: Record<string, string> | undefined;
702
702
  }
703
703
  /**
704
704
  * @public
@@ -729,19 +729,19 @@ export interface ReplicationStatusSummary {
729
729
  * depending where it appears in the summary list.</p>
730
730
  * @public
731
731
  */
732
- Region?: string;
732
+ Region?: string | undefined;
733
733
  /**
734
734
  * <p>The state of the replication.</p>
735
735
  * @public
736
736
  */
737
- ReplicationStatus?: InstanceReplicationStatus;
737
+ ReplicationStatus?: InstanceReplicationStatus | undefined;
738
738
  /**
739
739
  * <p>A description of the replication status. Use this information to resolve any issues that are
740
740
  * preventing the successful replication of your Amazon Connect instance to another
741
741
  * Region.</p>
742
742
  * @public
743
743
  */
744
- ReplicationStatusReason?: string;
744
+ ReplicationStatusReason?: string | undefined;
745
745
  }
746
746
  /**
747
747
  * <p>Details about the status of the replication of a source Amazon Connect instance across
@@ -758,14 +758,14 @@ export interface ReplicationConfiguration {
758
758
  * Region.</p>
759
759
  * @public
760
760
  */
761
- ReplicationStatusSummaryList?: ReplicationStatusSummary[];
761
+ ReplicationStatusSummaryList?: ReplicationStatusSummary[] | undefined;
762
762
  /**
763
763
  * <p>The Amazon Web Services Region where the source Amazon Connect instance was created. This
764
764
  * is the Region where the <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_ReplicateInstance.html">ReplicateInstance</a> API was
765
765
  * called to start the replication process.</p>
766
766
  * @public
767
767
  */
768
- SourceRegion?: string;
768
+ SourceRegion?: string | undefined;
769
769
  /**
770
770
  * <p>The URL that is used to sign-in to your Amazon Connect instance according to your
771
771
  * traffic distribution group configuration. For more information about sign-in and traffic
@@ -774,7 +774,7 @@ export interface ReplicationConfiguration {
774
774
  * <i>Amazon Connect Administrator Guide</i>. </p>
775
775
  * @public
776
776
  */
777
- GlobalSignInEndpoint?: string;
777
+ GlobalSignInEndpoint?: string | undefined;
778
778
  }
779
779
  /**
780
780
  * @public
@@ -784,7 +784,7 @@ export interface DescribeInstanceResponse {
784
784
  * <p>The name of the instance.</p>
785
785
  * @public
786
786
  */
787
- Instance?: Instance;
787
+ Instance?: Instance | undefined;
788
788
  /**
789
789
  * <p>Status information about the replication process. This field is included only when you are
790
790
  * using the <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_ReplicateInstance.html">ReplicateInstance</a> API to
@@ -794,7 +794,7 @@ export interface DescribeInstanceResponse {
794
794
  * Guide</i>.</p>
795
795
  * @public
796
796
  */
797
- ReplicationConfiguration?: ReplicationConfiguration;
797
+ ReplicationConfiguration?: ReplicationConfiguration | undefined;
798
798
  }
799
799
  /**
800
800
  * @public
@@ -841,12 +841,12 @@ export interface Attribute {
841
841
  * <p>The type of attribute.</p>
842
842
  * @public
843
843
  */
844
- AttributeType?: InstanceAttributeType;
844
+ AttributeType?: InstanceAttributeType | undefined;
845
845
  /**
846
846
  * <p>The value of the attribute.</p>
847
847
  * @public
848
848
  */
849
- Value?: string;
849
+ Value?: string | undefined;
850
850
  }
851
851
  /**
852
852
  * @public
@@ -858,7 +858,7 @@ export interface DescribeInstanceAttributeResponse {
858
858
  * of attribute.</p>
859
859
  * @public
860
860
  */
861
- Attribute?: Attribute;
861
+ Attribute?: Attribute | undefined;
862
862
  }
863
863
  /**
864
864
  * @public
@@ -888,7 +888,7 @@ export interface DescribeInstanceStorageConfigResponse {
888
888
  * <p>A valid storage type.</p>
889
889
  * @public
890
890
  */
891
- StorageConfig?: InstanceStorageConfig;
891
+ StorageConfig?: InstanceStorageConfig | undefined;
892
892
  }
893
893
  /**
894
894
  * @public
@@ -1190,12 +1190,12 @@ export interface PhoneNumberStatus {
1190
1190
  * <p>The status.</p>
1191
1191
  * @public
1192
1192
  */
1193
- Status?: PhoneNumberWorkflowStatus;
1193
+ Status?: PhoneNumberWorkflowStatus | undefined;
1194
1194
  /**
1195
1195
  * <p>The status message.</p>
1196
1196
  * @public
1197
1197
  */
1198
- Message?: string;
1198
+ Message?: string | undefined;
1199
1199
  }
1200
1200
  /**
1201
1201
  * @public
@@ -1224,49 +1224,49 @@ export interface ClaimedPhoneNumberSummary {
1224
1224
  * <p>A unique identifier for the phone number.</p>
1225
1225
  * @public
1226
1226
  */
1227
- PhoneNumberId?: string;
1227
+ PhoneNumberId?: string | undefined;
1228
1228
  /**
1229
1229
  * <p>The Amazon Resource Name (ARN) of the phone number.</p>
1230
1230
  * @public
1231
1231
  */
1232
- PhoneNumberArn?: string;
1232
+ PhoneNumberArn?: string | undefined;
1233
1233
  /**
1234
1234
  * <p>The phone number. Phone numbers are formatted <code>[+] [country code] [subscriber number including area code]</code>.</p>
1235
1235
  * @public
1236
1236
  */
1237
- PhoneNumber?: string;
1237
+ PhoneNumber?: string | undefined;
1238
1238
  /**
1239
1239
  * <p>The ISO country code.</p>
1240
1240
  * @public
1241
1241
  */
1242
- PhoneNumberCountryCode?: PhoneNumberCountryCode;
1242
+ PhoneNumberCountryCode?: PhoneNumberCountryCode | undefined;
1243
1243
  /**
1244
1244
  * <p>The type of phone number.</p>
1245
1245
  * @public
1246
1246
  */
1247
- PhoneNumberType?: PhoneNumberType;
1247
+ PhoneNumberType?: PhoneNumberType | undefined;
1248
1248
  /**
1249
1249
  * <p>The description of the phone number.</p>
1250
1250
  * @public
1251
1251
  */
1252
- PhoneNumberDescription?: string;
1252
+ PhoneNumberDescription?: string | undefined;
1253
1253
  /**
1254
1254
  * <p>The Amazon Resource Name (ARN) for Amazon Connect instances or traffic distribution groups that phone number inbound traffic is routed through.</p>
1255
1255
  * @public
1256
1256
  */
1257
- TargetArn?: string;
1257
+ TargetArn?: string | undefined;
1258
1258
  /**
1259
1259
  * <p>The identifier of the Amazon Connect instance that phone numbers are claimed to. You
1260
1260
  * can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the
1261
1261
  * instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
1262
1262
  * @public
1263
1263
  */
1264
- InstanceId?: string;
1264
+ InstanceId?: string | undefined;
1265
1265
  /**
1266
1266
  * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
1267
1267
  * @public
1268
1268
  */
1269
- Tags?: Record<string, string>;
1269
+ Tags?: Record<string, string> | undefined;
1270
1270
  /**
1271
1271
  * <p>The status of the phone number.</p>
1272
1272
  * <ul>
@@ -1296,14 +1296,14 @@ export interface ClaimedPhoneNumberSummary {
1296
1296
  * </note>
1297
1297
  * @public
1298
1298
  */
1299
- PhoneNumberStatus?: PhoneNumberStatus;
1299
+ PhoneNumberStatus?: PhoneNumberStatus | undefined;
1300
1300
  /**
1301
1301
  * <p>The claimed phone number ARN that was previously imported from the external service, such as
1302
1302
  * Amazon Pinpoint. If it is from Amazon Pinpoint, it looks like the ARN of the phone number
1303
1303
  * that was imported from Amazon Pinpoint.</p>
1304
1304
  * @public
1305
1305
  */
1306
- SourcePhoneNumberArn?: string;
1306
+ SourcePhoneNumberArn?: string | undefined;
1307
1307
  }
1308
1308
  /**
1309
1309
  * @public
@@ -1314,7 +1314,7 @@ export interface DescribePhoneNumberResponse {
1314
1314
  * traffic distribution group.</p>
1315
1315
  * @public
1316
1316
  */
1317
- ClaimedPhoneNumberSummary?: ClaimedPhoneNumberSummary;
1317
+ ClaimedPhoneNumberSummary?: ClaimedPhoneNumberSummary | undefined;
1318
1318
  }
1319
1319
  /**
1320
1320
  * @public
@@ -1341,22 +1341,22 @@ export interface PredefinedAttribute {
1341
1341
  * <p>The name of the predefined attribute.</p>
1342
1342
  * @public
1343
1343
  */
1344
- Name?: string;
1344
+ Name?: string | undefined;
1345
1345
  /**
1346
1346
  * <p>The values of the predefined attribute.</p>
1347
1347
  * @public
1348
1348
  */
1349
- Values?: PredefinedAttributeValues;
1349
+ Values?: PredefinedAttributeValues | undefined;
1350
1350
  /**
1351
1351
  * <p>Last modified time.</p>
1352
1352
  * @public
1353
1353
  */
1354
- LastModifiedTime?: Date;
1354
+ LastModifiedTime?: Date | undefined;
1355
1355
  /**
1356
1356
  * <p>Last modified region.</p>
1357
1357
  * @public
1358
1358
  */
1359
- LastModifiedRegion?: string;
1359
+ LastModifiedRegion?: string | undefined;
1360
1360
  }
1361
1361
  /**
1362
1362
  * @public
@@ -1366,7 +1366,7 @@ export interface DescribePredefinedAttributeResponse {
1366
1366
  * <p>Information about the predefined attribute.</p>
1367
1367
  * @public
1368
1368
  */
1369
- PredefinedAttribute?: PredefinedAttribute;
1369
+ PredefinedAttribute?: PredefinedAttribute | undefined;
1370
1370
  }
1371
1371
  /**
1372
1372
  * @public
@@ -1392,37 +1392,37 @@ export interface Prompt {
1392
1392
  * <p>The Amazon Resource Name (ARN) of the prompt.</p>
1393
1393
  * @public
1394
1394
  */
1395
- PromptARN?: string;
1395
+ PromptARN?: string | undefined;
1396
1396
  /**
1397
1397
  * <p>A unique identifier for the prompt.</p>
1398
1398
  * @public
1399
1399
  */
1400
- PromptId?: string;
1400
+ PromptId?: string | undefined;
1401
1401
  /**
1402
1402
  * <p>The name of the prompt.</p>
1403
1403
  * @public
1404
1404
  */
1405
- Name?: string;
1405
+ Name?: string | undefined;
1406
1406
  /**
1407
1407
  * <p>The description of the prompt.</p>
1408
1408
  * @public
1409
1409
  */
1410
- Description?: string;
1410
+ Description?: string | undefined;
1411
1411
  /**
1412
1412
  * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
1413
1413
  * @public
1414
1414
  */
1415
- Tags?: Record<string, string>;
1415
+ Tags?: Record<string, string> | undefined;
1416
1416
  /**
1417
1417
  * <p>The timestamp when this resource was last modified.</p>
1418
1418
  * @public
1419
1419
  */
1420
- LastModifiedTime?: Date;
1420
+ LastModifiedTime?: Date | undefined;
1421
1421
  /**
1422
1422
  * <p>The Amazon Web Services Region where this resource was last modified.</p>
1423
1423
  * @public
1424
1424
  */
1425
- LastModifiedRegion?: string;
1425
+ LastModifiedRegion?: string | undefined;
1426
1426
  }
1427
1427
  /**
1428
1428
  * @public
@@ -1432,7 +1432,7 @@ export interface DescribePromptResponse {
1432
1432
  * <p>Information about the prompt.</p>
1433
1433
  * @public
1434
1434
  */
1435
- Prompt?: Prompt;
1435
+ Prompt?: Prompt | undefined;
1436
1436
  }
1437
1437
  /**
1438
1438
  * @public
@@ -1470,57 +1470,57 @@ export interface Queue {
1470
1470
  * <p>The name of the queue.</p>
1471
1471
  * @public
1472
1472
  */
1473
- Name?: string;
1473
+ Name?: string | undefined;
1474
1474
  /**
1475
1475
  * <p>The Amazon Resource Name (ARN) for the queue.</p>
1476
1476
  * @public
1477
1477
  */
1478
- QueueArn?: string;
1478
+ QueueArn?: string | undefined;
1479
1479
  /**
1480
1480
  * <p>The identifier for the queue.</p>
1481
1481
  * @public
1482
1482
  */
1483
- QueueId?: string;
1483
+ QueueId?: string | undefined;
1484
1484
  /**
1485
1485
  * <p>The description of the queue.</p>
1486
1486
  * @public
1487
1487
  */
1488
- Description?: string;
1488
+ Description?: string | undefined;
1489
1489
  /**
1490
1490
  * <p>The outbound caller ID name, number, and outbound whisper flow.</p>
1491
1491
  * @public
1492
1492
  */
1493
- OutboundCallerConfig?: OutboundCallerConfig;
1493
+ OutboundCallerConfig?: OutboundCallerConfig | undefined;
1494
1494
  /**
1495
1495
  * <p>The identifier for the hours of operation.</p>
1496
1496
  * @public
1497
1497
  */
1498
- HoursOfOperationId?: string;
1498
+ HoursOfOperationId?: string | undefined;
1499
1499
  /**
1500
1500
  * <p>The maximum number of contacts that can be in the queue before it is considered full.</p>
1501
1501
  * @public
1502
1502
  */
1503
- MaxContacts?: number;
1503
+ MaxContacts?: number | undefined;
1504
1504
  /**
1505
1505
  * <p>The status of the queue.</p>
1506
1506
  * @public
1507
1507
  */
1508
- Status?: QueueStatus;
1508
+ Status?: QueueStatus | undefined;
1509
1509
  /**
1510
1510
  * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
1511
1511
  * @public
1512
1512
  */
1513
- Tags?: Record<string, string>;
1513
+ Tags?: Record<string, string> | undefined;
1514
1514
  /**
1515
1515
  * <p>The timestamp when this resource was last modified.</p>
1516
1516
  * @public
1517
1517
  */
1518
- LastModifiedTime?: Date;
1518
+ LastModifiedTime?: Date | undefined;
1519
1519
  /**
1520
1520
  * <p>The Amazon Web Services Region where this resource was last modified.</p>
1521
1521
  * @public
1522
1522
  */
1523
- LastModifiedRegion?: string;
1523
+ LastModifiedRegion?: string | undefined;
1524
1524
  }
1525
1525
  /**
1526
1526
  * @public
@@ -1530,7 +1530,7 @@ export interface DescribeQueueResponse {
1530
1530
  * <p>The name of the queue.</p>
1531
1531
  * @public
1532
1532
  */
1533
- Queue?: Queue;
1533
+ Queue?: Queue | undefined;
1534
1534
  }
1535
1535
  /**
1536
1536
  * @public
@@ -1556,42 +1556,42 @@ export interface QuickConnect {
1556
1556
  * <p>The Amazon Resource Name (ARN) of the quick connect.</p>
1557
1557
  * @public
1558
1558
  */
1559
- QuickConnectARN?: string;
1559
+ QuickConnectARN?: string | undefined;
1560
1560
  /**
1561
1561
  * <p>The identifier for the quick connect.</p>
1562
1562
  * @public
1563
1563
  */
1564
- QuickConnectId?: string;
1564
+ QuickConnectId?: string | undefined;
1565
1565
  /**
1566
1566
  * <p>The name of the quick connect.</p>
1567
1567
  * @public
1568
1568
  */
1569
- Name?: string;
1569
+ Name?: string | undefined;
1570
1570
  /**
1571
1571
  * <p>The description.</p>
1572
1572
  * @public
1573
1573
  */
1574
- Description?: string;
1574
+ Description?: string | undefined;
1575
1575
  /**
1576
1576
  * <p>Contains information about the quick connect.</p>
1577
1577
  * @public
1578
1578
  */
1579
- QuickConnectConfig?: QuickConnectConfig;
1579
+ QuickConnectConfig?: QuickConnectConfig | undefined;
1580
1580
  /**
1581
1581
  * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
1582
1582
  * @public
1583
1583
  */
1584
- Tags?: Record<string, string>;
1584
+ Tags?: Record<string, string> | undefined;
1585
1585
  /**
1586
1586
  * <p>The timestamp when this resource was last modified.</p>
1587
1587
  * @public
1588
1588
  */
1589
- LastModifiedTime?: Date;
1589
+ LastModifiedTime?: Date | undefined;
1590
1590
  /**
1591
1591
  * <p>The Amazon Web Services Region where this resource was last modified.</p>
1592
1592
  * @public
1593
1593
  */
1594
- LastModifiedRegion?: string;
1594
+ LastModifiedRegion?: string | undefined;
1595
1595
  }
1596
1596
  /**
1597
1597
  * @public
@@ -1601,7 +1601,7 @@ export interface DescribeQuickConnectResponse {
1601
1601
  * <p>Information about the quick connect.</p>
1602
1602
  * @public
1603
1603
  */
1604
- QuickConnect?: QuickConnect;
1604
+ QuickConnect?: QuickConnect | undefined;
1605
1605
  }
1606
1606
  /**
1607
1607
  * @public
@@ -1627,80 +1627,80 @@ export interface RoutingProfile {
1627
1627
  * <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>
1628
1628
  * @public
1629
1629
  */
1630
- InstanceId?: string;
1630
+ InstanceId?: string | undefined;
1631
1631
  /**
1632
1632
  * <p>The name of the routing profile.</p>
1633
1633
  * @public
1634
1634
  */
1635
- Name?: string;
1635
+ Name?: string | undefined;
1636
1636
  /**
1637
1637
  * <p>The Amazon Resource Name (ARN) of the routing profile.</p>
1638
1638
  * @public
1639
1639
  */
1640
- RoutingProfileArn?: string;
1640
+ RoutingProfileArn?: string | undefined;
1641
1641
  /**
1642
1642
  * <p>The identifier of the routing profile.</p>
1643
1643
  * @public
1644
1644
  */
1645
- RoutingProfileId?: string;
1645
+ RoutingProfileId?: string | undefined;
1646
1646
  /**
1647
1647
  * <p>The description of the routing profile.</p>
1648
1648
  * @public
1649
1649
  */
1650
- Description?: string;
1650
+ Description?: string | undefined;
1651
1651
  /**
1652
1652
  * <p>The channels agents can handle in the Contact Control Panel (CCP) for this routing
1653
1653
  * profile.</p>
1654
1654
  * @public
1655
1655
  */
1656
- MediaConcurrencies?: MediaConcurrency[];
1656
+ MediaConcurrencies?: MediaConcurrency[] | undefined;
1657
1657
  /**
1658
1658
  * <p>The identifier of the default outbound queue for this routing profile.</p>
1659
1659
  * @public
1660
1660
  */
1661
- DefaultOutboundQueueId?: string;
1661
+ DefaultOutboundQueueId?: string | undefined;
1662
1662
  /**
1663
1663
  * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
1664
1664
  * @public
1665
1665
  */
1666
- Tags?: Record<string, string>;
1666
+ Tags?: Record<string, string> | undefined;
1667
1667
  /**
1668
1668
  * <p>The number of associated queues in routing profile.</p>
1669
1669
  * @public
1670
1670
  */
1671
- NumberOfAssociatedQueues?: number;
1671
+ NumberOfAssociatedQueues?: number | undefined;
1672
1672
  /**
1673
1673
  * <p>The number of associated users in routing profile.</p>
1674
1674
  * @public
1675
1675
  */
1676
- NumberOfAssociatedUsers?: number;
1676
+ NumberOfAssociatedUsers?: number | undefined;
1677
1677
  /**
1678
1678
  * <p>Whether agents with this routing profile will have their routing order calculated based on
1679
1679
  * <i>time since their last inbound contact</i> or <i>longest idle
1680
1680
  * time</i>. </p>
1681
1681
  * @public
1682
1682
  */
1683
- AgentAvailabilityTimer?: AgentAvailabilityTimer;
1683
+ AgentAvailabilityTimer?: AgentAvailabilityTimer | undefined;
1684
1684
  /**
1685
1685
  * <p>The timestamp when this resource was last modified.</p>
1686
1686
  * @public
1687
1687
  */
1688
- LastModifiedTime?: Date;
1688
+ LastModifiedTime?: Date | undefined;
1689
1689
  /**
1690
1690
  * <p>The Amazon Web Services Region where this resource was last modified.</p>
1691
1691
  * @public
1692
1692
  */
1693
- LastModifiedRegion?: string;
1693
+ LastModifiedRegion?: string | undefined;
1694
1694
  /**
1695
1695
  * <p>Whether this a default routing profile.</p>
1696
1696
  * @public
1697
1697
  */
1698
- IsDefault?: boolean;
1698
+ IsDefault?: boolean | undefined;
1699
1699
  /**
1700
1700
  * <p>The IDs of the associated queue.</p>
1701
1701
  * @public
1702
1702
  */
1703
- AssociatedQueueIds?: string[];
1703
+ AssociatedQueueIds?: string[] | undefined;
1704
1704
  }
1705
1705
  /**
1706
1706
  * @public
@@ -1710,7 +1710,7 @@ export interface DescribeRoutingProfileResponse {
1710
1710
  * <p>The routing profile.</p>
1711
1711
  * @public
1712
1712
  */
1713
- RoutingProfile?: RoutingProfile;
1713
+ RoutingProfile?: RoutingProfile | undefined;
1714
1714
  }
1715
1715
  /**
1716
1716
  * @public
@@ -1786,7 +1786,7 @@ export interface Rule {
1786
1786
  * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
1787
1787
  * @public
1788
1788
  */
1789
- Tags?: Record<string, string>;
1789
+ Tags?: Record<string, string> | undefined;
1790
1790
  }
1791
1791
  /**
1792
1792
  * @public
@@ -1822,63 +1822,63 @@ export interface SecurityProfile {
1822
1822
  * <p>The identifier for the security profile.</p>
1823
1823
  * @public
1824
1824
  */
1825
- Id?: string;
1825
+ Id?: string | undefined;
1826
1826
  /**
1827
1827
  * <p>The organization resource identifier for the security profile.</p>
1828
1828
  * @public
1829
1829
  */
1830
- OrganizationResourceId?: string;
1830
+ OrganizationResourceId?: string | undefined;
1831
1831
  /**
1832
1832
  * <p>The Amazon Resource Name (ARN) for the secruity profile.</p>
1833
1833
  * @public
1834
1834
  */
1835
- Arn?: string;
1835
+ Arn?: string | undefined;
1836
1836
  /**
1837
1837
  * <p>The name for the security profile.</p>
1838
1838
  * @public
1839
1839
  */
1840
- SecurityProfileName?: string;
1840
+ SecurityProfileName?: string | undefined;
1841
1841
  /**
1842
1842
  * <p>The description of the security profile.</p>
1843
1843
  * @public
1844
1844
  */
1845
- Description?: string;
1845
+ Description?: string | undefined;
1846
1846
  /**
1847
1847
  * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
1848
1848
  * @public
1849
1849
  */
1850
- Tags?: Record<string, string>;
1850
+ Tags?: Record<string, string> | undefined;
1851
1851
  /**
1852
1852
  * <p>The list of tags that a security profile uses to restrict access to resources in Amazon Connect.</p>
1853
1853
  * @public
1854
1854
  */
1855
- AllowedAccessControlTags?: Record<string, string>;
1855
+ AllowedAccessControlTags?: Record<string, string> | undefined;
1856
1856
  /**
1857
1857
  * <p>The list of resources that a security profile applies tag restrictions to in Amazon Connect.</p>
1858
1858
  * @public
1859
1859
  */
1860
- TagRestrictedResources?: string[];
1860
+ TagRestrictedResources?: string[] | undefined;
1861
1861
  /**
1862
1862
  * <p>The timestamp when this resource was last modified.</p>
1863
1863
  * @public
1864
1864
  */
1865
- LastModifiedTime?: Date;
1865
+ LastModifiedTime?: Date | undefined;
1866
1866
  /**
1867
1867
  * <p>The Amazon Web Services Region where this resource was last modified.</p>
1868
1868
  * @public
1869
1869
  */
1870
- LastModifiedRegion?: string;
1870
+ LastModifiedRegion?: string | undefined;
1871
1871
  /**
1872
1872
  * <p>The list of resources that a security profile applies hierarchy restrictions to in Amazon Connect. Following are acceptable ResourceNames: <code>User</code>.</p>
1873
1873
  * @public
1874
1874
  */
1875
- HierarchyRestrictedResources?: string[];
1875
+ HierarchyRestrictedResources?: string[] | undefined;
1876
1876
  /**
1877
1877
  * <p>The identifier of the hierarchy group that a security profile uses to restrict access to
1878
1878
  * resources in Amazon Connect.</p>
1879
1879
  * @public
1880
1880
  */
1881
- AllowedAccessControlHierarchyGroupId?: string;
1881
+ AllowedAccessControlHierarchyGroupId?: string | undefined;
1882
1882
  }
1883
1883
  /**
1884
1884
  * @public
@@ -1888,7 +1888,7 @@ export interface DescribeSecurityProfileResponse {
1888
1888
  * <p>The security profile.</p>
1889
1889
  * @public
1890
1890
  */
1891
- SecurityProfile?: SecurityProfile;
1891
+ SecurityProfile?: SecurityProfile | undefined;
1892
1892
  }
1893
1893
  /**
1894
1894
  * @public
@@ -1929,27 +1929,27 @@ export interface TrafficDistributionGroup {
1929
1929
  * The ARN must be provided if the call is from the replicated Region.</p>
1930
1930
  * @public
1931
1931
  */
1932
- Id?: string;
1932
+ Id?: string | undefined;
1933
1933
  /**
1934
1934
  * <p>The Amazon Resource Name (ARN) of the traffic distribution group.</p>
1935
1935
  * @public
1936
1936
  */
1937
- Arn?: string;
1937
+ Arn?: string | undefined;
1938
1938
  /**
1939
1939
  * <p>The name of the traffic distribution group.</p>
1940
1940
  * @public
1941
1941
  */
1942
- Name?: string;
1942
+ Name?: string | undefined;
1943
1943
  /**
1944
1944
  * <p>The description of the traffic distribution group.</p>
1945
1945
  * @public
1946
1946
  */
1947
- Description?: string;
1947
+ Description?: string | undefined;
1948
1948
  /**
1949
1949
  * <p>The Amazon Resource Name (ARN).</p>
1950
1950
  * @public
1951
1951
  */
1952
- InstanceArn?: string;
1952
+ InstanceArn?: string | undefined;
1953
1953
  /**
1954
1954
  * <p>The status of the traffic distribution group.</p>
1955
1955
  * <ul>
@@ -1983,12 +1983,12 @@ export interface TrafficDistributionGroup {
1983
1983
  * </ul>
1984
1984
  * @public
1985
1985
  */
1986
- Status?: TrafficDistributionGroupStatus;
1986
+ Status?: TrafficDistributionGroupStatus | undefined;
1987
1987
  /**
1988
1988
  * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
1989
1989
  * @public
1990
1990
  */
1991
- Tags?: Record<string, string>;
1991
+ Tags?: Record<string, string> | undefined;
1992
1992
  /**
1993
1993
  * <p>Whether this is the default traffic distribution group created during instance
1994
1994
  * replication. The default traffic distribution group cannot be deleted by the
@@ -2004,7 +2004,7 @@ export interface TrafficDistributionGroup {
2004
2004
  * </note>
2005
2005
  * @public
2006
2006
  */
2007
- IsDefault?: boolean;
2007
+ IsDefault?: boolean | undefined;
2008
2008
  }
2009
2009
  /**
2010
2010
  * @public
@@ -2014,7 +2014,7 @@ export interface DescribeTrafficDistributionGroupResponse {
2014
2014
  * <p>Information about the traffic distribution group.</p>
2015
2015
  * @public
2016
2016
  */
2017
- TrafficDistributionGroup?: TrafficDistributionGroup;
2017
+ TrafficDistributionGroup?: TrafficDistributionGroup | undefined;
2018
2018
  }
2019
2019
  /**
2020
2020
  * @public
@@ -2040,63 +2040,63 @@ export interface User {
2040
2040
  * <p>The identifier of the user account.</p>
2041
2041
  * @public
2042
2042
  */
2043
- Id?: string;
2043
+ Id?: string | undefined;
2044
2044
  /**
2045
2045
  * <p>The Amazon Resource Name (ARN) of the user account.</p>
2046
2046
  * @public
2047
2047
  */
2048
- Arn?: string;
2048
+ Arn?: string | undefined;
2049
2049
  /**
2050
2050
  * <p>The user name assigned to the user account.</p>
2051
2051
  * @public
2052
2052
  */
2053
- Username?: string;
2053
+ Username?: string | undefined;
2054
2054
  /**
2055
2055
  * <p>Information about the user identity.</p>
2056
2056
  * @public
2057
2057
  */
2058
- IdentityInfo?: UserIdentityInfo;
2058
+ IdentityInfo?: UserIdentityInfo | undefined;
2059
2059
  /**
2060
2060
  * <p>Information about the phone configuration for the user.</p>
2061
2061
  * @public
2062
2062
  */
2063
- PhoneConfig?: UserPhoneConfig;
2063
+ PhoneConfig?: UserPhoneConfig | undefined;
2064
2064
  /**
2065
2065
  * <p>The identifier of the user account in the directory used for identity management.</p>
2066
2066
  * @public
2067
2067
  */
2068
- DirectoryUserId?: string;
2068
+ DirectoryUserId?: string | undefined;
2069
2069
  /**
2070
2070
  * <p>The identifiers of the security profiles for the user.</p>
2071
2071
  * @public
2072
2072
  */
2073
- SecurityProfileIds?: string[];
2073
+ SecurityProfileIds?: string[] | undefined;
2074
2074
  /**
2075
2075
  * <p>The identifier of the routing profile for the user.</p>
2076
2076
  * @public
2077
2077
  */
2078
- RoutingProfileId?: string;
2078
+ RoutingProfileId?: string | undefined;
2079
2079
  /**
2080
2080
  * <p>The identifier of the hierarchy group for the user.</p>
2081
2081
  * @public
2082
2082
  */
2083
- HierarchyGroupId?: string;
2083
+ HierarchyGroupId?: string | undefined;
2084
2084
  /**
2085
2085
  * <p>The
2086
2086
  * tags.</p>
2087
2087
  * @public
2088
2088
  */
2089
- Tags?: Record<string, string>;
2089
+ Tags?: Record<string, string> | undefined;
2090
2090
  /**
2091
2091
  * <p>The timestamp when this resource was last modified.</p>
2092
2092
  * @public
2093
2093
  */
2094
- LastModifiedTime?: Date;
2094
+ LastModifiedTime?: Date | undefined;
2095
2095
  /**
2096
2096
  * <p>The Amazon Web Services Region where this resource was last modified.</p>
2097
2097
  * @public
2098
2098
  */
2099
- LastModifiedRegion?: string;
2099
+ LastModifiedRegion?: string | undefined;
2100
2100
  }
2101
2101
  /**
2102
2102
  * @public
@@ -2106,7 +2106,7 @@ export interface DescribeUserResponse {
2106
2106
  * <p>Information about the user account and configuration settings.</p>
2107
2107
  * @public
2108
2108
  */
2109
- User?: User;
2109
+ User?: User | undefined;
2110
2110
  }
2111
2111
  /**
2112
2112
  * @public
@@ -2132,27 +2132,27 @@ export interface HierarchyGroupSummary {
2132
2132
  * <p>The identifier of the hierarchy group.</p>
2133
2133
  * @public
2134
2134
  */
2135
- Id?: string;
2135
+ Id?: string | undefined;
2136
2136
  /**
2137
2137
  * <p>The Amazon Resource Name (ARN) of the hierarchy group.</p>
2138
2138
  * @public
2139
2139
  */
2140
- Arn?: string;
2140
+ Arn?: string | undefined;
2141
2141
  /**
2142
2142
  * <p>The name of the hierarchy group.</p>
2143
2143
  * @public
2144
2144
  */
2145
- Name?: string;
2145
+ Name?: string | undefined;
2146
2146
  /**
2147
2147
  * <p>The timestamp when this resource was last modified.</p>
2148
2148
  * @public
2149
2149
  */
2150
- LastModifiedTime?: Date;
2150
+ LastModifiedTime?: Date | undefined;
2151
2151
  /**
2152
2152
  * <p>The Amazon Web Services Region where this resource was last modified.</p>
2153
2153
  * @public
2154
2154
  */
2155
- LastModifiedRegion?: string;
2155
+ LastModifiedRegion?: string | undefined;
2156
2156
  }
2157
2157
  /**
2158
2158
  * <p>Contains information about the levels of a hierarchy group.</p>
@@ -2163,27 +2163,27 @@ export interface HierarchyPath {
2163
2163
  * <p>Information about level one.</p>
2164
2164
  * @public
2165
2165
  */
2166
- LevelOne?: HierarchyGroupSummary;
2166
+ LevelOne?: HierarchyGroupSummary | undefined;
2167
2167
  /**
2168
2168
  * <p>Information about level two.</p>
2169
2169
  * @public
2170
2170
  */
2171
- LevelTwo?: HierarchyGroupSummary;
2171
+ LevelTwo?: HierarchyGroupSummary | undefined;
2172
2172
  /**
2173
2173
  * <p>Information about level three.</p>
2174
2174
  * @public
2175
2175
  */
2176
- LevelThree?: HierarchyGroupSummary;
2176
+ LevelThree?: HierarchyGroupSummary | undefined;
2177
2177
  /**
2178
2178
  * <p>Information about level four.</p>
2179
2179
  * @public
2180
2180
  */
2181
- LevelFour?: HierarchyGroupSummary;
2181
+ LevelFour?: HierarchyGroupSummary | undefined;
2182
2182
  /**
2183
2183
  * <p>Information about level five.</p>
2184
2184
  * @public
2185
2185
  */
2186
- LevelFive?: HierarchyGroupSummary;
2186
+ LevelFive?: HierarchyGroupSummary | undefined;
2187
2187
  }
2188
2188
  /**
2189
2189
  * <p>Contains information about a hierarchy group.</p>
@@ -2194,42 +2194,42 @@ export interface HierarchyGroup {
2194
2194
  * <p>The identifier of the hierarchy group.</p>
2195
2195
  * @public
2196
2196
  */
2197
- Id?: string;
2197
+ Id?: string | undefined;
2198
2198
  /**
2199
2199
  * <p>The Amazon Resource Name (ARN) of the hierarchy group.</p>
2200
2200
  * @public
2201
2201
  */
2202
- Arn?: string;
2202
+ Arn?: string | undefined;
2203
2203
  /**
2204
2204
  * <p>The name of the hierarchy group.</p>
2205
2205
  * @public
2206
2206
  */
2207
- Name?: string;
2207
+ Name?: string | undefined;
2208
2208
  /**
2209
2209
  * <p>The identifier of the level in the hierarchy group.</p>
2210
2210
  * @public
2211
2211
  */
2212
- LevelId?: string;
2212
+ LevelId?: string | undefined;
2213
2213
  /**
2214
2214
  * <p>Information about the levels in the hierarchy group.</p>
2215
2215
  * @public
2216
2216
  */
2217
- HierarchyPath?: HierarchyPath;
2217
+ HierarchyPath?: HierarchyPath | undefined;
2218
2218
  /**
2219
2219
  * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
2220
2220
  * @public
2221
2221
  */
2222
- Tags?: Record<string, string>;
2222
+ Tags?: Record<string, string> | undefined;
2223
2223
  /**
2224
2224
  * <p>The timestamp when this resource was last modified.</p>
2225
2225
  * @public
2226
2226
  */
2227
- LastModifiedTime?: Date;
2227
+ LastModifiedTime?: Date | undefined;
2228
2228
  /**
2229
2229
  * <p>The Amazon Web Services Region where this resource was last modified.</p>
2230
2230
  * @public
2231
2231
  */
2232
- LastModifiedRegion?: string;
2232
+ LastModifiedRegion?: string | undefined;
2233
2233
  }
2234
2234
  /**
2235
2235
  * @public
@@ -2239,7 +2239,7 @@ export interface DescribeUserHierarchyGroupResponse {
2239
2239
  * <p>Information about the hierarchy group.</p>
2240
2240
  * @public
2241
2241
  */
2242
- HierarchyGroup?: HierarchyGroup;
2242
+ HierarchyGroup?: HierarchyGroup | undefined;
2243
2243
  }
2244
2244
  /**
2245
2245
  * @public
@@ -2260,27 +2260,27 @@ export interface HierarchyLevel {
2260
2260
  * <p>The identifier of the hierarchy level.</p>
2261
2261
  * @public
2262
2262
  */
2263
- Id?: string;
2263
+ Id?: string | undefined;
2264
2264
  /**
2265
2265
  * <p>The Amazon Resource Name (ARN) of the hierarchy level.</p>
2266
2266
  * @public
2267
2267
  */
2268
- Arn?: string;
2268
+ Arn?: string | undefined;
2269
2269
  /**
2270
2270
  * <p>The name of the hierarchy level.</p>
2271
2271
  * @public
2272
2272
  */
2273
- Name?: string;
2273
+ Name?: string | undefined;
2274
2274
  /**
2275
2275
  * <p>The timestamp when this resource was last modified.</p>
2276
2276
  * @public
2277
2277
  */
2278
- LastModifiedTime?: Date;
2278
+ LastModifiedTime?: Date | undefined;
2279
2279
  /**
2280
2280
  * <p>The Amazon Web Services Region where this resource was last modified.</p>
2281
2281
  * @public
2282
2282
  */
2283
- LastModifiedRegion?: string;
2283
+ LastModifiedRegion?: string | undefined;
2284
2284
  }
2285
2285
  /**
2286
2286
  * <p>Contains information about a hierarchy structure.</p>
@@ -2291,27 +2291,27 @@ export interface HierarchyStructure {
2291
2291
  * <p>Information about level one.</p>
2292
2292
  * @public
2293
2293
  */
2294
- LevelOne?: HierarchyLevel;
2294
+ LevelOne?: HierarchyLevel | undefined;
2295
2295
  /**
2296
2296
  * <p>Information about level two.</p>
2297
2297
  * @public
2298
2298
  */
2299
- LevelTwo?: HierarchyLevel;
2299
+ LevelTwo?: HierarchyLevel | undefined;
2300
2300
  /**
2301
2301
  * <p>Information about level three.</p>
2302
2302
  * @public
2303
2303
  */
2304
- LevelThree?: HierarchyLevel;
2304
+ LevelThree?: HierarchyLevel | undefined;
2305
2305
  /**
2306
2306
  * <p>Information about level four.</p>
2307
2307
  * @public
2308
2308
  */
2309
- LevelFour?: HierarchyLevel;
2309
+ LevelFour?: HierarchyLevel | undefined;
2310
2310
  /**
2311
2311
  * <p>Information about level five.</p>
2312
2312
  * @public
2313
2313
  */
2314
- LevelFive?: HierarchyLevel;
2314
+ LevelFive?: HierarchyLevel | undefined;
2315
2315
  }
2316
2316
  /**
2317
2317
  * @public
@@ -2321,7 +2321,7 @@ export interface DescribeUserHierarchyStructureResponse {
2321
2321
  * <p>Information about the hierarchy structure.</p>
2322
2322
  * @public
2323
2323
  */
2324
- HierarchyStructure?: HierarchyStructure;
2324
+ HierarchyStructure?: HierarchyStructure | undefined;
2325
2325
  }
2326
2326
  /**
2327
2327
  * @public
@@ -2347,7 +2347,7 @@ export interface DescribeViewResponse {
2347
2347
  * <p>All view data is contained within the View object.</p>
2348
2348
  * @public
2349
2349
  */
2350
- View?: View;
2350
+ View?: View | undefined;
2351
2351
  }
2352
2352
  /**
2353
2353
  * @public
@@ -2405,7 +2405,7 @@ export interface Vocabulary {
2405
2405
  * <p>The reason why the custom vocabulary was not created.</p>
2406
2406
  * @public
2407
2407
  */
2408
- FailureReason?: string;
2408
+ FailureReason?: string | undefined;
2409
2409
  /**
2410
2410
  * <p>The content of the custom vocabulary in plain-text format with a table of values. Each row
2411
2411
  * in the table represents a word or a phrase, described with <code>Phrase</code>, <code>IPA</code>,
@@ -2414,12 +2414,12 @@ export interface Vocabulary {
2414
2414
  * vocabulary using a table</a>.</p>
2415
2415
  * @public
2416
2416
  */
2417
- Content?: string;
2417
+ Content?: string | undefined;
2418
2418
  /**
2419
2419
  * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
2420
2420
  * @public
2421
2421
  */
2422
- Tags?: Record<string, string>;
2422
+ Tags?: Record<string, string> | undefined;
2423
2423
  }
2424
2424
  /**
2425
2425
  * @public
@@ -2452,7 +2452,7 @@ export interface DisassociateAnalyticsDataSetRequest {
2452
2452
  * the Amazon Connect instance. If not specified, by default this value is the Amazon Web Services account that has the Amazon Connect instance.</p>
2453
2453
  * @public
2454
2454
  */
2455
- TargetAccountId?: string;
2455
+ TargetAccountId?: string | undefined;
2456
2456
  }
2457
2457
  /**
2458
2458
  * @public
@@ -2482,12 +2482,12 @@ export interface DisassociateBotRequest {
2482
2482
  * <p>Configuration information of an Amazon Lex bot.</p>
2483
2483
  * @public
2484
2484
  */
2485
- LexBot?: LexBot;
2485
+ LexBot?: LexBot | undefined;
2486
2486
  /**
2487
2487
  * <p>The Amazon Lex V2 bot to disassociate from the instance.</p>
2488
2488
  * @public
2489
2489
  */
2490
- LexV2Bot?: LexV2Bot;
2490
+ LexV2Bot?: LexV2Bot | undefined;
2491
2491
  }
2492
2492
  /**
2493
2493
  * @public
@@ -2748,7 +2748,7 @@ export interface GetAttachedFileRequest {
2748
2748
  * 300.</p>
2749
2749
  * @public
2750
2750
  */
2751
- UrlExpiryInSeconds?: number;
2751
+ UrlExpiryInSeconds?: number | undefined;
2752
2752
  /**
2753
2753
  * <p>The resource to which the attached file is (being) uploaded to. <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-cases_CreateCase.html">Cases</a> are the only
2754
2754
  * current supported resource.</p>
@@ -2768,13 +2768,13 @@ export interface DownloadUrlMetadata {
2768
2768
  * <p>A pre-signed URL that should be used to download the attached file. </p>
2769
2769
  * @public
2770
2770
  */
2771
- Url?: string;
2771
+ Url?: string | undefined;
2772
2772
  /**
2773
2773
  * <p>The expiration time of the URL in ISO timestamp. It's specified in ISO 8601 format:
2774
2774
  * yyyy-MM-ddThh:mm:ss.SSSZ. For example, 2019-11-08T02:41:28.172Z.</p>
2775
2775
  * @public
2776
2776
  */
2777
- UrlExpiry?: string;
2777
+ UrlExpiry?: string | undefined;
2778
2778
  }
2779
2779
  /**
2780
2780
  * Response from GetAttachedFile API.
@@ -2785,29 +2785,29 @@ export interface GetAttachedFileResponse {
2785
2785
  * <p>The unique identifier of the attached file resource (ARN).</p>
2786
2786
  * @public
2787
2787
  */
2788
- FileArn?: string;
2788
+ FileArn?: string | undefined;
2789
2789
  /**
2790
2790
  * <p>The unique identifier of the attached file resource.</p>
2791
2791
  * @public
2792
2792
  */
2793
- FileId?: string;
2793
+ FileId?: string | undefined;
2794
2794
  /**
2795
2795
  * <p>The time of Creation of the file resource as an ISO timestamp. It's specified in ISO 8601
2796
2796
  * format: <code>yyyy-MM-ddThh:mm:ss.SSSZ</code>. For example,
2797
2797
  * <code>2024-05-03T02:41:28.172Z</code>.</p>
2798
2798
  * @public
2799
2799
  */
2800
- CreationTime?: string;
2800
+ CreationTime?: string | undefined;
2801
2801
  /**
2802
2802
  * <p>The current status of the attached file.</p>
2803
2803
  * @public
2804
2804
  */
2805
- FileStatus?: FileStatusType;
2805
+ FileStatus?: FileStatusType | undefined;
2806
2806
  /**
2807
2807
  * <p>A case-sensitive name of the attached file being uploaded.</p>
2808
2808
  * @public
2809
2809
  */
2810
- FileName?: string;
2810
+ FileName?: string | undefined;
2811
2811
  /**
2812
2812
  * <p>The size of the attached file in bytes.</p>
2813
2813
  * @public
@@ -2818,28 +2818,28 @@ export interface GetAttachedFileResponse {
2818
2818
  * current supported resource.</p>
2819
2819
  * @public
2820
2820
  */
2821
- AssociatedResourceArn?: string;
2821
+ AssociatedResourceArn?: string | undefined;
2822
2822
  /**
2823
2823
  * <p>The use case for the file.</p>
2824
2824
  * @public
2825
2825
  */
2826
- FileUseCaseType?: FileUseCaseType;
2826
+ FileUseCaseType?: FileUseCaseType | undefined;
2827
2827
  /**
2828
2828
  * <p>Represents the identity that created the file.</p>
2829
2829
  * @public
2830
2830
  */
2831
- CreatedBy?: CreatedByInfo;
2831
+ CreatedBy?: CreatedByInfo | undefined;
2832
2832
  /**
2833
2833
  * <p>URL and expiry to be used when downloading the attached file. </p>
2834
2834
  * @public
2835
2835
  */
2836
- DownloadUrlMetadata?: DownloadUrlMetadata;
2836
+ DownloadUrlMetadata?: DownloadUrlMetadata | undefined;
2837
2837
  /**
2838
2838
  * <p>The tags used to organize, track, or control access for this resource. For example, <code>\{
2839
2839
  * "Tags": \{"key1":"value1", "key2":"value2"\} \}</code>.</p>
2840
2840
  * @public
2841
2841
  */
2842
- Tags?: Record<string, string>;
2842
+ Tags?: Record<string, string> | undefined;
2843
2843
  }
2844
2844
  /**
2845
2845
  * @public
@@ -2864,7 +2864,7 @@ export interface GetContactAttributesResponse {
2864
2864
  * <p>Information about the attributes.</p>
2865
2865
  * @public
2866
2866
  */
2867
- Attributes?: Record<string, string>;
2867
+ Attributes?: Record<string, string> | undefined;
2868
2868
  }
2869
2869
  /**
2870
2870
  * @public
@@ -2912,12 +2912,12 @@ export interface CurrentMetric {
2912
2912
  * <p>The name of the metric.</p>
2913
2913
  * @public
2914
2914
  */
2915
- Name?: CurrentMetricName;
2915
+ Name?: CurrentMetricName | undefined;
2916
2916
  /**
2917
2917
  * <p>The unit for the metric.</p>
2918
2918
  * @public
2919
2919
  */
2920
- Unit?: Unit;
2920
+ Unit?: Unit | undefined;
2921
2921
  }
2922
2922
  /**
2923
2923
  * <p>Contains the filter to apply when retrieving metrics.</p>
@@ -2930,23 +2930,23 @@ export interface Filters {
2930
2930
  * requires a queue when you include a <code>Filter</code> in your request. </p>
2931
2931
  * @public
2932
2932
  */
2933
- Queues?: string[];
2933
+ Queues?: string[] | undefined;
2934
2934
  /**
2935
2935
  * <p>The channel to use to filter the metrics.</p>
2936
2936
  * @public
2937
2937
  */
2938
- Channels?: Channel[];
2938
+ Channels?: Channel[] | undefined;
2939
2939
  /**
2940
2940
  * <p>A list of up to 100 routing profile IDs or ARNs.</p>
2941
2941
  * @public
2942
2942
  */
2943
- RoutingProfiles?: string[];
2943
+ RoutingProfiles?: string[] | undefined;
2944
2944
  /**
2945
2945
  * <p>A list of expressions as a filter, in which an expression is an object of a step in a
2946
2946
  * routing criteria.</p>
2947
2947
  * @public
2948
2948
  */
2949
- RoutingStepExpressions?: string[];
2949
+ RoutingStepExpressions?: string[] | undefined;
2950
2950
  }
2951
2951
  /**
2952
2952
  * @public
@@ -2985,12 +2985,12 @@ export interface CurrentMetricSortCriteria {
2985
2985
  * <p>The current metric names.</p>
2986
2986
  * @public
2987
2987
  */
2988
- SortByMetric?: CurrentMetricName;
2988
+ SortByMetric?: CurrentMetricName | undefined;
2989
2989
  /**
2990
2990
  * <p>The way to sort.</p>
2991
2991
  * @public
2992
2992
  */
2993
- SortOrder?: SortOrder;
2993
+ SortOrder?: SortOrder | undefined;
2994
2994
  }
2995
2995
  /**
2996
2996
  * @public
@@ -3054,7 +3054,7 @@ export interface GetCurrentMetricDataRequest {
3054
3054
  * </ul>
3055
3055
  * @public
3056
3056
  */
3057
- Groupings?: Grouping[];
3057
+ Groupings?: Grouping[] | undefined;
3058
3058
  /**
3059
3059
  * <p>The metrics to retrieve. Specify the name and unit for each metric. The following metrics
3060
3060
  * are available. For a description of all the metrics, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/real-time-metrics-definitions.html">Real-time Metrics
@@ -3164,12 +3164,12 @@ export interface GetCurrentMetricDataRequest {
3164
3164
  * the token must use the same request parameters as the request that generated the token.</p>
3165
3165
  * @public
3166
3166
  */
3167
- NextToken?: string;
3167
+ NextToken?: string | undefined;
3168
3168
  /**
3169
3169
  * <p>The maximum number of results to return per page.</p>
3170
3170
  * @public
3171
3171
  */
3172
- MaxResults?: number;
3172
+ MaxResults?: number | undefined;
3173
3173
  /**
3174
3174
  * <p>The way to sort the resulting response based on metrics. You can enter one sort criteria. By
3175
3175
  * default resources are sorted based on <code>AGENTS_ONLINE</code>, <code>DESCENDING</code>. The
@@ -3183,7 +3183,7 @@ export interface GetCurrentMetricDataRequest {
3183
3183
  * </ul>
3184
3184
  * @public
3185
3185
  */
3186
- SortCriteria?: CurrentMetricSortCriteria[];
3186
+ SortCriteria?: CurrentMetricSortCriteria[] | undefined;
3187
3187
  }
3188
3188
  /**
3189
3189
  * <p>Contains the data for a real-time metric.</p>
@@ -3194,12 +3194,12 @@ export interface CurrentMetricData {
3194
3194
  * <p>Information about the metric.</p>
3195
3195
  * @public
3196
3196
  */
3197
- Metric?: CurrentMetric;
3197
+ Metric?: CurrentMetric | undefined;
3198
3198
  /**
3199
3199
  * <p>The value of the metric.</p>
3200
3200
  * @public
3201
3201
  */
3202
- Value?: number;
3202
+ Value?: number | undefined;
3203
3203
  }
3204
3204
  /**
3205
3205
  * <p>Information about the routing profile assigned to the user.</p>
@@ -3210,12 +3210,12 @@ export interface RoutingProfileReference {
3210
3210
  * <p>The identifier of the routing profile.</p>
3211
3211
  * @public
3212
3212
  */
3213
- Id?: string;
3213
+ Id?: string | undefined;
3214
3214
  /**
3215
3215
  * <p>The Amazon Resource Name (ARN) of the routing profile.</p>
3216
3216
  * @public
3217
3217
  */
3218
- Arn?: string;
3218
+ Arn?: string | undefined;
3219
3219
  }
3220
3220
  /**
3221
3221
  * <p>Contains information about the dimensions for a set of metrics.</p>
@@ -3226,22 +3226,22 @@ export interface Dimensions {
3226
3226
  * <p>Information about the queue for which metrics are returned.</p>
3227
3227
  * @public
3228
3228
  */
3229
- Queue?: QueueReference;
3229
+ Queue?: QueueReference | undefined;
3230
3230
  /**
3231
3231
  * <p>The channel used for grouping and filters.</p>
3232
3232
  * @public
3233
3233
  */
3234
- Channel?: Channel;
3234
+ Channel?: Channel | undefined;
3235
3235
  /**
3236
3236
  * <p>Information about the routing profile assigned to the user.</p>
3237
3237
  * @public
3238
3238
  */
3239
- RoutingProfile?: RoutingProfileReference;
3239
+ RoutingProfile?: RoutingProfileReference | undefined;
3240
3240
  /**
3241
3241
  * <p>The expression of a step in a routing criteria.</p>
3242
3242
  * @public
3243
3243
  */
3244
- RoutingStepExpression?: string;
3244
+ RoutingStepExpression?: string | undefined;
3245
3245
  }
3246
3246
  /**
3247
3247
  * <p>Contains information about a set of real-time metrics.</p>
@@ -3252,12 +3252,12 @@ export interface CurrentMetricResult {
3252
3252
  * <p>The dimensions for the metrics.</p>
3253
3253
  * @public
3254
3254
  */
3255
- Dimensions?: Dimensions;
3255
+ Dimensions?: Dimensions | undefined;
3256
3256
  /**
3257
3257
  * <p>The set of metrics.</p>
3258
3258
  * @public
3259
3259
  */
3260
- Collections?: CurrentMetricData[];
3260
+ Collections?: CurrentMetricData[] | undefined;
3261
3261
  }
3262
3262
  /**
3263
3263
  * @public
@@ -3269,22 +3269,22 @@ export interface GetCurrentMetricDataResponse {
3269
3269
  * the token must use the same request parameters as the request that generated the token.</p>
3270
3270
  * @public
3271
3271
  */
3272
- NextToken?: string;
3272
+ NextToken?: string | undefined;
3273
3273
  /**
3274
3274
  * <p>Information about the real-time metrics.</p>
3275
3275
  * @public
3276
3276
  */
3277
- MetricResults?: CurrentMetricResult[];
3277
+ MetricResults?: CurrentMetricResult[] | undefined;
3278
3278
  /**
3279
3279
  * <p>The time at which the metrics were retrieved and cached for pagination.</p>
3280
3280
  * @public
3281
3281
  */
3282
- DataSnapshotTime?: Date;
3282
+ DataSnapshotTime?: Date | undefined;
3283
3283
  /**
3284
3284
  * <p>The total count of the result, regardless of the current page size. </p>
3285
3285
  * @public
3286
3286
  */
3287
- ApproximateTotalCount?: number;
3287
+ ApproximateTotalCount?: number | undefined;
3288
3288
  }
3289
3289
  /**
3290
3290
  * <p>Filters user data based on the contact information that is associated to the users. It
@@ -3296,7 +3296,7 @@ export interface ContactFilter {
3296
3296
  * <p>A list of up to 9 <a href="https://docs.aws.amazon.com/connect/latest/adminguide/about-contact-states.html">contact states</a>.</p>
3297
3297
  * @public
3298
3298
  */
3299
- ContactStates?: ContactState[];
3299
+ ContactStates?: ContactState[] | undefined;
3300
3300
  }
3301
3301
  /**
3302
3302
  * <p>A filter for the user data.</p>
@@ -3307,28 +3307,28 @@ export interface UserDataFilters {
3307
3307
  * <p>A list of up to 100 queues or ARNs.</p>
3308
3308
  * @public
3309
3309
  */
3310
- Queues?: string[];
3310
+ Queues?: string[] | undefined;
3311
3311
  /**
3312
3312
  * <p>A filter for the user data based on the contact information that is associated to the user.
3313
3313
  * It contains a list of contact states. </p>
3314
3314
  * @public
3315
3315
  */
3316
- ContactFilter?: ContactFilter;
3316
+ ContactFilter?: ContactFilter | undefined;
3317
3317
  /**
3318
3318
  * <p>A list of up to 100 routing profile IDs or ARNs.</p>
3319
3319
  * @public
3320
3320
  */
3321
- RoutingProfiles?: string[];
3321
+ RoutingProfiles?: string[] | undefined;
3322
3322
  /**
3323
3323
  * <p>A list of up to 100 agent IDs or ARNs.</p>
3324
3324
  * @public
3325
3325
  */
3326
- Agents?: string[];
3326
+ Agents?: string[] | undefined;
3327
3327
  /**
3328
3328
  * <p>A UserHierarchyGroup ID or ARN.</p>
3329
3329
  * @public
3330
3330
  */
3331
- UserHierarchyGroups?: string[];
3331
+ UserHierarchyGroups?: string[] | undefined;
3332
3332
  }
3333
3333
  /**
3334
3334
  * @public
@@ -3370,12 +3370,12 @@ export interface GetCurrentUserDataRequest {
3370
3370
  * response in the next request to retrieve the next set of results.</p>
3371
3371
  * @public
3372
3372
  */
3373
- NextToken?: string;
3373
+ NextToken?: string | undefined;
3374
3374
  /**
3375
3375
  * <p>The maximum number of results to return per page.</p>
3376
3376
  * @public
3377
3377
  */
3378
- MaxResults?: number;
3378
+ MaxResults?: number | undefined;
3379
3379
  }
3380
3380
  /**
3381
3381
  * <p>Information about the hierarchy group.</p>
@@ -3386,12 +3386,12 @@ export interface HierarchyGroupSummaryReference {
3386
3386
  * <p>The unique identifier for the hierarchy group.</p>
3387
3387
  * @public
3388
3388
  */
3389
- Id?: string;
3389
+ Id?: string | undefined;
3390
3390
  /**
3391
3391
  * <p>The Amazon Resource Name (ARN) for the hierarchy group. </p>
3392
3392
  * @public
3393
3393
  */
3394
- Arn?: string;
3394
+ Arn?: string | undefined;
3395
3395
  }
3396
3396
  /**
3397
3397
  * <p>Information about the levels in the hierarchy group.</p>
@@ -3402,27 +3402,27 @@ export interface HierarchyPathReference {
3402
3402
  * <p>Information about level one.</p>
3403
3403
  * @public
3404
3404
  */
3405
- LevelOne?: HierarchyGroupSummaryReference;
3405
+ LevelOne?: HierarchyGroupSummaryReference | undefined;
3406
3406
  /**
3407
3407
  * <p>Information about level two.</p>
3408
3408
  * @public
3409
3409
  */
3410
- LevelTwo?: HierarchyGroupSummaryReference;
3410
+ LevelTwo?: HierarchyGroupSummaryReference | undefined;
3411
3411
  /**
3412
3412
  * <p>Information about level three.</p>
3413
3413
  * @public
3414
3414
  */
3415
- LevelThree?: HierarchyGroupSummaryReference;
3415
+ LevelThree?: HierarchyGroupSummaryReference | undefined;
3416
3416
  /**
3417
3417
  * <p>Information about level four.</p>
3418
3418
  * @public
3419
3419
  */
3420
- LevelFour?: HierarchyGroupSummaryReference;
3420
+ LevelFour?: HierarchyGroupSummaryReference | undefined;
3421
3421
  /**
3422
3422
  * <p>Information about level five.</p>
3423
3423
  * @public
3424
3424
  */
3425
- LevelFive?: HierarchyGroupSummaryReference;
3425
+ LevelFive?: HierarchyGroupSummaryReference | undefined;
3426
3426
  }
3427
3427
  /**
3428
3428
  * <p>Information about the user.</p>
@@ -3433,12 +3433,12 @@ export interface UserReference {
3433
3433
  * <p>The unique identifier for the user.</p>
3434
3434
  * @public
3435
3435
  */
3436
- Id?: string;
3436
+ Id?: string | undefined;
3437
3437
  /**
3438
3438
  * <p>The Amazon Resource Name (ARN) for the user.</p>
3439
3439
  * @public
3440
3440
  */
3441
- Arn?: string;
3441
+ Arn?: string | undefined;
3442
3442
  }
3443
3443
  /**
3444
3444
  * <p>Data for a user.</p>
@@ -3450,52 +3450,52 @@ export interface UserData {
3450
3450
  * <code>resourceId</code> and ARN of the user. </p>
3451
3451
  * @public
3452
3452
  */
3453
- User?: UserReference;
3453
+ User?: UserReference | undefined;
3454
3454
  /**
3455
3455
  * <p>Information about the routing profile that is assigned to the user.</p>
3456
3456
  * @public
3457
3457
  */
3458
- RoutingProfile?: RoutingProfileReference;
3458
+ RoutingProfile?: RoutingProfileReference | undefined;
3459
3459
  /**
3460
3460
  * <p>Contains information about the levels of a hierarchy group assigned to a user.</p>
3461
3461
  * @public
3462
3462
  */
3463
- HierarchyPath?: HierarchyPathReference;
3463
+ HierarchyPath?: HierarchyPathReference | undefined;
3464
3464
  /**
3465
3465
  * <p>The status of the agent that they manually set in their Contact Control Panel (CCP), or that
3466
3466
  * the supervisor manually changes in the real-time metrics report.</p>
3467
3467
  * @public
3468
3468
  */
3469
- Status?: AgentStatusReference;
3469
+ Status?: AgentStatusReference | undefined;
3470
3470
  /**
3471
3471
  * <p>A map of available slots by channel. The key is a channel name. The value is an integer: the
3472
3472
  * available number of slots. </p>
3473
3473
  * @public
3474
3474
  */
3475
- AvailableSlotsByChannel?: Partial<Record<Channel, number>>;
3475
+ AvailableSlotsByChannel?: Partial<Record<Channel, number>> | undefined;
3476
3476
  /**
3477
3477
  * <p>A map of maximum slots by channel. The key is a channel name. The value is an integer: the
3478
3478
  * maximum number of slots. This is calculated from <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_MediaConcurrency.html">MediaConcurrency</a> of the
3479
3479
  * <code>RoutingProfile</code> assigned to the agent. </p>
3480
3480
  * @public
3481
3481
  */
3482
- MaxSlotsByChannel?: Partial<Record<Channel, number>>;
3482
+ MaxSlotsByChannel?: Partial<Record<Channel, number>> | undefined;
3483
3483
  /**
3484
3484
  * <p> A map of active slots by channel. The key is a channel name. The value is an integer: the
3485
3485
  * number of active slots. </p>
3486
3486
  * @public
3487
3487
  */
3488
- ActiveSlotsByChannel?: Partial<Record<Channel, number>>;
3488
+ ActiveSlotsByChannel?: Partial<Record<Channel, number>> | undefined;
3489
3489
  /**
3490
3490
  * <p>A list of contact reference information.</p>
3491
3491
  * @public
3492
3492
  */
3493
- Contacts?: AgentContactReference[];
3493
+ Contacts?: AgentContactReference[] | undefined;
3494
3494
  /**
3495
3495
  * <p>The Next status of the agent.</p>
3496
3496
  * @public
3497
3497
  */
3498
- NextStatus?: string;
3498
+ NextStatus?: string | undefined;
3499
3499
  }
3500
3500
  /**
3501
3501
  * @public
@@ -3505,17 +3505,17 @@ export interface GetCurrentUserDataResponse {
3505
3505
  * <p>If there are additional results, this is the token for the next set of results.</p>
3506
3506
  * @public
3507
3507
  */
3508
- NextToken?: string;
3508
+ NextToken?: string | undefined;
3509
3509
  /**
3510
3510
  * <p>A list of the user data that is returned.</p>
3511
3511
  * @public
3512
3512
  */
3513
- UserDataList?: UserData[];
3513
+ UserDataList?: UserData[] | undefined;
3514
3514
  /**
3515
3515
  * <p>The total count of the result, regardless of the current page size.</p>
3516
3516
  * @public
3517
3517
  */
3518
- ApproximateTotalCount?: number;
3518
+ ApproximateTotalCount?: number | undefined;
3519
3519
  }
3520
3520
  /**
3521
3521
  * @public
@@ -3536,22 +3536,22 @@ export interface Credentials {
3536
3536
  * <p>An access token generated for a federated user to access Amazon Connect.</p>
3537
3537
  * @public
3538
3538
  */
3539
- AccessToken?: string;
3539
+ AccessToken?: string | undefined;
3540
3540
  /**
3541
3541
  * <p>A token generated with an expiration time for the session a user is logged in to Amazon Connect.</p>
3542
3542
  * @public
3543
3543
  */
3544
- AccessTokenExpiration?: Date;
3544
+ AccessTokenExpiration?: Date | undefined;
3545
3545
  /**
3546
3546
  * <p>Renews a token generated for a user to access the Amazon Connect instance.</p>
3547
3547
  * @public
3548
3548
  */
3549
- RefreshToken?: string;
3549
+ RefreshToken?: string | undefined;
3550
3550
  /**
3551
3551
  * <p>Renews the expiration timer for a generated token.</p>
3552
3552
  * @public
3553
3553
  */
3554
- RefreshTokenExpiration?: Date;
3554
+ RefreshTokenExpiration?: Date | undefined;
3555
3555
  }
3556
3556
  /**
3557
3557
  * @public
@@ -3561,22 +3561,22 @@ export interface GetFederationTokenResponse {
3561
3561
  * <p>The credentials to use for federation.</p>
3562
3562
  * @public
3563
3563
  */
3564
- Credentials?: Credentials;
3564
+ Credentials?: Credentials | undefined;
3565
3565
  /**
3566
3566
  * <p>The URL to sign into the user's instance. </p>
3567
3567
  * @public
3568
3568
  */
3569
- SignInUrl?: string;
3569
+ SignInUrl?: string | undefined;
3570
3570
  /**
3571
3571
  * <p>The Amazon Resource Name (ARN) of the user.</p>
3572
3572
  * @public
3573
3573
  */
3574
- UserArn?: string;
3574
+ UserArn?: string | undefined;
3575
3575
  /**
3576
3576
  * <p>The identifier for the user. This can be the ID or the ARN of the user.</p>
3577
3577
  * @public
3578
3578
  */
3579
- UserId?: string;
3579
+ UserId?: string | undefined;
3580
3580
  }
3581
3581
  /**
3582
3582
  * <p>No user with the specified credentials was found in the Amazon Connect instance.</p>
@@ -3585,7 +3585,7 @@ export interface GetFederationTokenResponse {
3585
3585
  export declare class UserNotFoundException extends __BaseException {
3586
3586
  readonly name: "UserNotFoundException";
3587
3587
  readonly $fault: "client";
3588
- Message?: string;
3588
+ Message?: string | undefined;
3589
3589
  /**
3590
3590
  * @internal
3591
3591
  */
@@ -3619,17 +3619,17 @@ export interface GetFlowAssociationResponse {
3619
3619
  * <p>The identifier of the resource.</p>
3620
3620
  * @public
3621
3621
  */
3622
- ResourceId?: string;
3622
+ ResourceId?: string | undefined;
3623
3623
  /**
3624
3624
  * <p>The identifier of the flow.</p>
3625
3625
  * @public
3626
3626
  */
3627
- FlowId?: string;
3627
+ FlowId?: string | undefined;
3628
3628
  /**
3629
3629
  * <p>A valid resource type.</p>
3630
3630
  * @public
3631
3631
  */
3632
- ResourceType?: FlowAssociationResourceType;
3632
+ ResourceType?: FlowAssociationResourceType | undefined;
3633
3633
  }
3634
3634
  /**
3635
3635
  * @public
@@ -3699,12 +3699,12 @@ export interface Threshold {
3699
3699
  * <p>The type of comparison. Only "less than" (LT) comparisons are supported.</p>
3700
3700
  * @public
3701
3701
  */
3702
- Comparison?: Comparison;
3702
+ Comparison?: Comparison | undefined;
3703
3703
  /**
3704
3704
  * <p>The threshold value to compare.</p>
3705
3705
  * @public
3706
3706
  */
3707
- ThresholdValue?: number;
3707
+ ThresholdValue?: number | undefined;
3708
3708
  }
3709
3709
  /**
3710
3710
  * <p>Contains information about a historical metric. For a description of each metric, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html">Historical Metrics Definitions</a> in the <i>Amazon Connect Administrator
@@ -3716,22 +3716,22 @@ export interface HistoricalMetric {
3716
3716
  * <p>The name of the metric.</p>
3717
3717
  * @public
3718
3718
  */
3719
- Name?: HistoricalMetricName;
3719
+ Name?: HistoricalMetricName | undefined;
3720
3720
  /**
3721
3721
  * <p>The threshold for the metric, used with service level metrics.</p>
3722
3722
  * @public
3723
3723
  */
3724
- Threshold?: Threshold;
3724
+ Threshold?: Threshold | undefined;
3725
3725
  /**
3726
3726
  * <p>The statistic for the metric.</p>
3727
3727
  * @public
3728
3728
  */
3729
- Statistic?: Statistic;
3729
+ Statistic?: Statistic | undefined;
3730
3730
  /**
3731
3731
  * <p>The unit for the metric.</p>
3732
3732
  * @public
3733
3733
  */
3734
- Unit?: Unit;
3734
+ Unit?: Unit | undefined;
3735
3735
  }
3736
3736
  /**
3737
3737
  * @public
@@ -3781,7 +3781,7 @@ export interface GetMetricDataRequest {
3781
3781
  * GetMetricDataV2 for more up-to-date features.</p>
3782
3782
  * @public
3783
3783
  */
3784
- Groupings?: Grouping[];
3784
+ Groupings?: Grouping[] | undefined;
3785
3785
  /**
3786
3786
  * <p>The metrics to retrieve. Specify the name, unit, and statistic for each metric. The
3787
3787
  * following historical metrics are available. For a description of each metric, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html">Historical Metrics Definitions</a> in the <i>Amazon Connect Administrator
@@ -3929,12 +3929,12 @@ export interface GetMetricDataRequest {
3929
3929
  * response in the next request to retrieve the next set of results.</p>
3930
3930
  * @public
3931
3931
  */
3932
- NextToken?: string;
3932
+ NextToken?: string | undefined;
3933
3933
  /**
3934
3934
  * <p>The maximum number of results to return per page.</p>
3935
3935
  * @public
3936
3936
  */
3937
- MaxResults?: number;
3937
+ MaxResults?: number | undefined;
3938
3938
  }
3939
3939
  /**
3940
3940
  * <p>Contains the data for a historical metric.</p>
@@ -3945,12 +3945,12 @@ export interface HistoricalMetricData {
3945
3945
  * <p>Information about the metric.</p>
3946
3946
  * @public
3947
3947
  */
3948
- Metric?: HistoricalMetric;
3948
+ Metric?: HistoricalMetric | undefined;
3949
3949
  /**
3950
3950
  * <p>The value of the metric.</p>
3951
3951
  * @public
3952
3952
  */
3953
- Value?: number;
3953
+ Value?: number | undefined;
3954
3954
  }
3955
3955
  /**
3956
3956
  * <p>Contains information about the historical metrics retrieved.</p>
@@ -3961,12 +3961,12 @@ export interface HistoricalMetricResult {
3961
3961
  * <p>The dimension for the metrics.</p>
3962
3962
  * @public
3963
3963
  */
3964
- Dimensions?: Dimensions;
3964
+ Dimensions?: Dimensions | undefined;
3965
3965
  /**
3966
3966
  * <p>The set of metrics.</p>
3967
3967
  * @public
3968
3968
  */
3969
- Collections?: HistoricalMetricData[];
3969
+ Collections?: HistoricalMetricData[] | undefined;
3970
3970
  }
3971
3971
  /**
3972
3972
  * @public
@@ -3978,13 +3978,13 @@ export interface GetMetricDataResponse {
3978
3978
  * the token must use the same request parameters as the request that generated the token.</p>
3979
3979
  * @public
3980
3980
  */
3981
- NextToken?: string;
3981
+ NextToken?: string | undefined;
3982
3982
  /**
3983
3983
  * <p>Information about the historical metrics.</p>
3984
3984
  * <p>If no grouping is specified, a summary of metric data is returned.</p>
3985
3985
  * @public
3986
3986
  */
3987
- MetricResults?: HistoricalMetricResult[];
3987
+ MetricResults?: HistoricalMetricResult[] | undefined;
3988
3988
  }
3989
3989
  /**
3990
3990
  * <p>Contains the filter to apply when retrieving metrics with the <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_GetMetricDataV2.html">GetMetricDataV2</a> API.</p>
@@ -3999,13 +3999,13 @@ export interface FilterV2 {
3999
3999
  * at least 1 key and a maximum 5 keys. </p>
4000
4000
  * @public
4001
4001
  */
4002
- FilterKey?: string;
4002
+ FilterKey?: string | undefined;
4003
4003
  /**
4004
4004
  * <p>The identifiers to use for filtering data. For example, if you have a filter key of
4005
4005
  * <code>QUEUE</code>, you would add queue IDs or ARNs in <code>FilterValues</code>. </p>
4006
4006
  * @public
4007
4007
  */
4008
- FilterValues?: string[];
4008
+ FilterValues?: string[] | undefined;
4009
4009
  }
4010
4010
  /**
4011
4011
  * @public
@@ -4032,7 +4032,7 @@ export interface IntervalDetails {
4032
4032
  * <p>The timezone applied to requested metrics.</p>
4033
4033
  * @public
4034
4034
  */
4035
- TimeZone?: string;
4035
+ TimeZone?: string | undefined;
4036
4036
  /**
4037
4037
  * <p>
4038
4038
  * <code>IntervalPeriod</code>: An aggregated grouping applied to request metrics. Valid
@@ -4078,7 +4078,7 @@ export interface IntervalDetails {
4078
4078
  * </ul>
4079
4079
  * @public
4080
4080
  */
4081
- IntervalPeriod?: IntervalPeriod;
4081
+ IntervalPeriod?: IntervalPeriod | undefined;
4082
4082
  }
4083
4083
  /**
4084
4084
  * <p>Contains information about the filter used when retrieving metrics.
@@ -4119,7 +4119,7 @@ export interface MetricFilterV2 {
4119
4119
  * </ul>
4120
4120
  * @public
4121
4121
  */
4122
- MetricFilterKey?: string;
4122
+ MetricFilterKey?: string | undefined;
4123
4123
  /**
4124
4124
  * <p>The values to use for filtering data. Values for metric-level filters can be either a fixed
4125
4125
  * set of values or a customized list, depending on the use case.</p>
@@ -4130,13 +4130,13 @@ export interface MetricFilterV2 {
4130
4130
  * Guide</i>.</p>
4131
4131
  * @public
4132
4132
  */
4133
- MetricFilterValues?: string[];
4133
+ MetricFilterValues?: string[] | undefined;
4134
4134
  /**
4135
4135
  * <p>If set to <code>true</code>, the API response contains results that filter out the results matched
4136
4136
  * by the metric-level filters condition. By default, <code>Negate</code> is set to <code>false</code>. </p>
4137
4137
  * @public
4138
4138
  */
4139
- Negate?: boolean;
4139
+ Negate?: boolean | undefined;
4140
4140
  }
4141
4141
  /**
4142
4142
  * <p>Contains information about the threshold for service level metrics.</p>
@@ -4148,12 +4148,12 @@ export interface ThresholdV2 {
4148
4148
  * than" (GT) comparisons are supported.</p>
4149
4149
  * @public
4150
4150
  */
4151
- Comparison?: string;
4151
+ Comparison?: string | undefined;
4152
4152
  /**
4153
4153
  * <p>The threshold value to compare.</p>
4154
4154
  * @public
4155
4155
  */
4156
- ThresholdValue?: number;
4156
+ ThresholdValue?: number | undefined;
4157
4157
  }
4158
4158
  /**
4159
4159
  * <p>Contains information about the metric.</p>
@@ -4167,17 +4167,17 @@ export interface MetricV2 {
4167
4167
  * </important>
4168
4168
  * @public
4169
4169
  */
4170
- Name?: string;
4170
+ Name?: string | undefined;
4171
4171
  /**
4172
4172
  * <p>Contains information about the threshold for service level metrics.</p>
4173
4173
  * @public
4174
4174
  */
4175
- Threshold?: ThresholdV2[];
4175
+ Threshold?: ThresholdV2[] | undefined;
4176
4176
  /**
4177
4177
  * <p>Contains the filters to be used when returning data.</p>
4178
4178
  * @public
4179
4179
  */
4180
- MetricFilters?: MetricFilterV2[];
4180
+ MetricFilters?: MetricFilterV2[] | undefined;
4181
4181
  }
4182
4182
  /**
4183
4183
  * @public
@@ -4258,7 +4258,7 @@ export interface GetMetricDataV2Request {
4258
4258
  * </ul>
4259
4259
  * @public
4260
4260
  */
4261
- Interval?: IntervalDetails;
4261
+ Interval?: IntervalDetails | undefined;
4262
4262
  /**
4263
4263
  * <p>The filters to apply to returned metrics. You can filter on the following resources:</p>
4264
4264
  * <ul>
@@ -4369,7 +4369,7 @@ export interface GetMetricDataV2Request {
4369
4369
  * </p>
4370
4370
  * @public
4371
4371
  */
4372
- Groupings?: string[];
4372
+ Groupings?: string[] | undefined;
4373
4373
  /**
4374
4374
  * <p>The metrics to retrieve. Specify the name, groupings, and filters for each metric. The
4375
4375
  * following historical metrics are available. For a description of each metric, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html">Historical metrics definitions</a> in the <i>Amazon Connect Administrator
@@ -5243,12 +5243,12 @@ export interface GetMetricDataV2Request {
5243
5243
  * response in the next request to retrieve the next set of results.</p>
5244
5244
  * @public
5245
5245
  */
5246
- NextToken?: string;
5246
+ NextToken?: string | undefined;
5247
5247
  /**
5248
5248
  * <p>The maximum number of results to return per page.</p>
5249
5249
  * @public
5250
5250
  */
5251
- MaxResults?: number;
5251
+ MaxResults?: number | undefined;
5252
5252
  }
5253
5253
  /**
5254
5254
  * <p>Contains the name, thresholds, and metric filters.</p>
@@ -5259,12 +5259,12 @@ export interface MetricDataV2 {
5259
5259
  * <p>The metric name, thresholds, and metric filters of the returned metric.</p>
5260
5260
  * @public
5261
5261
  */
5262
- Metric?: MetricV2;
5262
+ Metric?: MetricV2 | undefined;
5263
5263
  /**
5264
5264
  * <p>The corresponding value of the metric returned in the response.</p>
5265
5265
  * @public
5266
5266
  */
5267
- Value?: number;
5267
+ Value?: number | undefined;
5268
5268
  }
5269
5269
  /**
5270
5270
  * <p>The interval period with the start and end time for the metrics.</p>
@@ -5275,13 +5275,13 @@ export interface MetricInterval {
5275
5275
  * <p>The interval period provided in the API request. </p>
5276
5276
  * @public
5277
5277
  */
5278
- Interval?: IntervalPeriod;
5278
+ Interval?: IntervalPeriod | undefined;
5279
5279
  /**
5280
5280
  * <p>The timestamp, in UNIX Epoch time format. Start time is based on the interval period
5281
5281
  * selected. </p>
5282
5282
  * @public
5283
5283
  */
5284
- StartTime?: Date;
5284
+ StartTime?: Date | undefined;
5285
5285
  /**
5286
5286
  * <p>The timestamp, in UNIX Epoch time format. End time is based on the interval period selected.
5287
5287
  * For example, If <code>IntervalPeriod</code> is selected <code>THIRTY_MIN</code>,
@@ -5290,7 +5290,7 @@ export interface MetricInterval {
5290
5290
  * each <code>StartTime</code> and <code>EndTime</code> differing by 30 minutes. </p>
5291
5291
  * @public
5292
5292
  */
5293
- EndTime?: Date;
5293
+ EndTime?: Date | undefined;
5294
5294
  }
5295
5295
  /**
5296
5296
  * <p>Contains information about the metric results.</p>
@@ -5301,17 +5301,17 @@ export interface MetricResultV2 {
5301
5301
  * <p>The dimension for the metrics.</p>
5302
5302
  * @public
5303
5303
  */
5304
- Dimensions?: Record<string, string>;
5304
+ Dimensions?: Record<string, string> | undefined;
5305
5305
  /**
5306
5306
  * <p>The interval period with the start and end time for the metrics.</p>
5307
5307
  * @public
5308
5308
  */
5309
- MetricInterval?: MetricInterval;
5309
+ MetricInterval?: MetricInterval | undefined;
5310
5310
  /**
5311
5311
  * <p>The set of metrics.</p>
5312
5312
  * @public
5313
5313
  */
5314
- Collections?: MetricDataV2[];
5314
+ Collections?: MetricDataV2[] | undefined;
5315
5315
  }
5316
5316
  /**
5317
5317
  * @public
@@ -5321,13 +5321,13 @@ export interface GetMetricDataV2Response {
5321
5321
  * <p>If there are additional results, this is the token for the next set of results.</p>
5322
5322
  * @public
5323
5323
  */
5324
- NextToken?: string;
5324
+ NextToken?: string | undefined;
5325
5325
  /**
5326
5326
  * <p>Information about the metrics requested in the API request If no grouping is specified, a
5327
5327
  * summary of metric data is returned. </p>
5328
5328
  * @public
5329
5329
  */
5330
- MetricResults?: MetricResultV2[];
5330
+ MetricResults?: MetricResultV2[] | undefined;
5331
5331
  }
5332
5332
  /**
5333
5333
  * @public
@@ -5353,17 +5353,17 @@ export interface GetPromptFileResponse {
5353
5353
  * the prompt in S3.</p>
5354
5354
  * @public
5355
5355
  */
5356
- PromptPresignedUrl?: string;
5356
+ PromptPresignedUrl?: string | undefined;
5357
5357
  /**
5358
5358
  * <p>The timestamp when this resource was last modified.</p>
5359
5359
  * @public
5360
5360
  */
5361
- LastModifiedTime?: Date;
5361
+ LastModifiedTime?: Date | undefined;
5362
5362
  /**
5363
5363
  * <p>The Amazon Web Services Region where this resource was last modified.</p>
5364
5364
  * @public
5365
5365
  */
5366
- LastModifiedRegion?: string;
5366
+ LastModifiedRegion?: string | undefined;
5367
5367
  }
5368
5368
  /**
5369
5369
  * @public
@@ -5384,7 +5384,7 @@ export interface GetTaskTemplateRequest {
5384
5384
  * task is created.</p>
5385
5385
  * @public
5386
5386
  */
5387
- SnapshotVersion?: string;
5387
+ SnapshotVersion?: string | undefined;
5388
5388
  }
5389
5389
  /**
5390
5390
  * @public
@@ -5394,7 +5394,7 @@ export interface GetTaskTemplateResponse {
5394
5394
  * <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>
5395
5395
  * @public
5396
5396
  */
5397
- InstanceId?: string;
5397
+ InstanceId?: string | undefined;
5398
5398
  /**
5399
5399
  * <p>A unique identifier for the task template.</p>
5400
5400
  * @public
@@ -5414,49 +5414,49 @@ export interface GetTaskTemplateResponse {
5414
5414
  * <p>The description of the task template.</p>
5415
5415
  * @public
5416
5416
  */
5417
- Description?: string;
5417
+ Description?: string | undefined;
5418
5418
  /**
5419
5419
  * <p>The identifier of the flow that runs by default when a task is created by referencing this template.</p>
5420
5420
  * @public
5421
5421
  */
5422
- ContactFlowId?: string;
5422
+ ContactFlowId?: string | undefined;
5423
5423
  /**
5424
5424
  * <p>Constraints that are applicable to the fields listed.</p>
5425
5425
  * @public
5426
5426
  */
5427
- Constraints?: TaskTemplateConstraints;
5427
+ Constraints?: TaskTemplateConstraints | undefined;
5428
5428
  /**
5429
5429
  * <p>The default values for fields when a task is created by referencing this template.</p>
5430
5430
  * @public
5431
5431
  */
5432
- Defaults?: TaskTemplateDefaults;
5432
+ Defaults?: TaskTemplateDefaults | undefined;
5433
5433
  /**
5434
5434
  * <p>Fields that are part of the template.</p>
5435
5435
  * @public
5436
5436
  */
5437
- Fields?: TaskTemplateField[];
5437
+ Fields?: TaskTemplateField[] | undefined;
5438
5438
  /**
5439
5439
  * <p>Marks a template as <code>ACTIVE</code> or <code>INACTIVE</code> for a task to refer to it.
5440
5440
  * Tasks can only be created from <code>ACTIVE</code> templates.
5441
5441
  * If a template is marked as <code>INACTIVE</code>, then a task that refers to this template cannot be created.</p>
5442
5442
  * @public
5443
5443
  */
5444
- Status?: TaskTemplateStatus;
5444
+ Status?: TaskTemplateStatus | undefined;
5445
5445
  /**
5446
5446
  * <p>The timestamp when the task template was last modified.</p>
5447
5447
  * @public
5448
5448
  */
5449
- LastModifiedTime?: Date;
5449
+ LastModifiedTime?: Date | undefined;
5450
5450
  /**
5451
5451
  * <p>The timestamp when the task template was created.</p>
5452
5452
  * @public
5453
5453
  */
5454
- CreatedTime?: Date;
5454
+ CreatedTime?: Date | undefined;
5455
5455
  /**
5456
5456
  * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
5457
5457
  * @public
5458
5458
  */
5459
- Tags?: Record<string, string>;
5459
+ Tags?: Record<string, string> | undefined;
5460
5460
  }
5461
5461
  /**
5462
5462
  * @public
@@ -5517,30 +5517,30 @@ export interface GetTrafficDistributionResponse {
5517
5517
  * <p>The distribution of traffic between the instance and its replicas.</p>
5518
5518
  * @public
5519
5519
  */
5520
- TelephonyConfig?: TelephonyConfig;
5520
+ TelephonyConfig?: TelephonyConfig | undefined;
5521
5521
  /**
5522
5522
  * <p>The identifier of the traffic distribution group.
5523
5523
  * This can be the ID or the ARN if the API is being called in the Region where the traffic distribution group was created.
5524
5524
  * The ARN must be provided if the call is from the replicated Region.</p>
5525
5525
  * @public
5526
5526
  */
5527
- Id?: string;
5527
+ Id?: string | undefined;
5528
5528
  /**
5529
5529
  * <p>The Amazon Resource Name (ARN) of the traffic distribution group.</p>
5530
5530
  * @public
5531
5531
  */
5532
- Arn?: string;
5532
+ Arn?: string | undefined;
5533
5533
  /**
5534
5534
  * <p>The distribution that determines which Amazon Web Services Regions should be used to sign in
5535
5535
  * agents in to both the instance and its replica(s).</p>
5536
5536
  * @public
5537
5537
  */
5538
- SignInConfig?: SignInConfig;
5538
+ SignInConfig?: SignInConfig | undefined;
5539
5539
  /**
5540
5540
  * <p>The distribution of agents between the instance and its replica(s).</p>
5541
5541
  * @public
5542
5542
  */
5543
- AgentConfig?: AgentConfig;
5543
+ AgentConfig?: AgentConfig | undefined;
5544
5544
  }
5545
5545
  /**
5546
5546
  * @public
@@ -5561,12 +5561,12 @@ export interface ImportPhoneNumberRequest {
5561
5561
  * <p>The description of the phone number.</p>
5562
5562
  * @public
5563
5563
  */
5564
- PhoneNumberDescription?: string;
5564
+ PhoneNumberDescription?: string | undefined;
5565
5565
  /**
5566
5566
  * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
5567
5567
  * @public
5568
5568
  */
5569
- Tags?: Record<string, string>;
5569
+ Tags?: Record<string, string> | undefined;
5570
5570
  /**
5571
5571
  * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
5572
5572
  * request. If not provided, the Amazon Web Services
@@ -5574,7 +5574,7 @@ export interface ImportPhoneNumberRequest {
5574
5574
  * <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
5575
5575
  * @public
5576
5576
  */
5577
- ClientToken?: string;
5577
+ ClientToken?: string | undefined;
5578
5578
  }
5579
5579
  /**
5580
5580
  * @public
@@ -5584,12 +5584,12 @@ export interface ImportPhoneNumberResponse {
5584
5584
  * <p>A unique identifier for the phone number.</p>
5585
5585
  * @public
5586
5586
  */
5587
- PhoneNumberId?: string;
5587
+ PhoneNumberId?: string | undefined;
5588
5588
  /**
5589
5589
  * <p>The Amazon Resource Name (ARN) of the phone number.</p>
5590
5590
  * @public
5591
5591
  */
5592
- PhoneNumberArn?: string;
5592
+ PhoneNumberArn?: string | undefined;
5593
5593
  }
5594
5594
  /**
5595
5595
  * @public
@@ -5605,17 +5605,17 @@ export interface ListAgentStatusRequest {
5605
5605
  * response in the next request to retrieve the next set of results.</p>
5606
5606
  * @public
5607
5607
  */
5608
- NextToken?: string;
5608
+ NextToken?: string | undefined;
5609
5609
  /**
5610
5610
  * <p>The maximum number of results to return per page.</p>
5611
5611
  * @public
5612
5612
  */
5613
- MaxResults?: number;
5613
+ MaxResults?: number | undefined;
5614
5614
  /**
5615
5615
  * <p>Available agent status types.</p>
5616
5616
  * @public
5617
5617
  */
5618
- AgentStatusTypes?: AgentStatusType[];
5618
+ AgentStatusTypes?: AgentStatusType[] | undefined;
5619
5619
  }
5620
5620
  /**
5621
5621
  * @public
@@ -5625,12 +5625,12 @@ export interface ListAgentStatusResponse {
5625
5625
  * <p>If there are additional results, this is the token for the next set of results.</p>
5626
5626
  * @public
5627
5627
  */
5628
- NextToken?: string;
5628
+ NextToken?: string | undefined;
5629
5629
  /**
5630
5630
  * <p>A summary of agent statuses.</p>
5631
5631
  * @public
5632
5632
  */
5633
- AgentStatusSummaryList?: AgentStatusSummary[];
5633
+ AgentStatusSummaryList?: AgentStatusSummary[] | undefined;
5634
5634
  }
5635
5635
  /**
5636
5636
  * @public
@@ -5645,18 +5645,18 @@ export interface ListAnalyticsDataAssociationsRequest {
5645
5645
  * <p>The identifier of the dataset to get the association status.</p>
5646
5646
  * @public
5647
5647
  */
5648
- DataSetId?: string;
5648
+ DataSetId?: string | undefined;
5649
5649
  /**
5650
5650
  * <p>The token for the next set of results. Use the value returned in the previous
5651
5651
  * response in the next request to retrieve the next set of results.</p>
5652
5652
  * @public
5653
5653
  */
5654
- NextToken?: string;
5654
+ NextToken?: string | undefined;
5655
5655
  /**
5656
5656
  * <p>The maximum number of results to return per page.</p>
5657
5657
  * @public
5658
5658
  */
5659
- MaxResults?: number;
5659
+ MaxResults?: number | undefined;
5660
5660
  }
5661
5661
  /**
5662
5662
  * @public
@@ -5668,12 +5668,12 @@ export interface ListAnalyticsDataAssociationsResponse {
5668
5668
  * <code>nextToken</code> is given if there are more results to be returned.</p>
5669
5669
  * @public
5670
5670
  */
5671
- Results?: AnalyticsDataAssociationResult[];
5671
+ Results?: AnalyticsDataAssociationResult[] | undefined;
5672
5672
  /**
5673
5673
  * <p>If there are additional results, this is the token for the next set of results.</p>
5674
5674
  * @public
5675
5675
  */
5676
- NextToken?: string;
5676
+ NextToken?: string | undefined;
5677
5677
  }
5678
5678
  /**
5679
5679
  * @public
@@ -5689,12 +5689,12 @@ export interface ListApprovedOriginsRequest {
5689
5689
  * response in the next request to retrieve the next set of results.</p>
5690
5690
  * @public
5691
5691
  */
5692
- NextToken?: string;
5692
+ NextToken?: string | undefined;
5693
5693
  /**
5694
5694
  * <p>The maximum number of results to return per page.</p>
5695
5695
  * @public
5696
5696
  */
5697
- MaxResults?: number;
5697
+ MaxResults?: number | undefined;
5698
5698
  }
5699
5699
  /**
5700
5700
  * @public
@@ -5704,12 +5704,12 @@ export interface ListApprovedOriginsResponse {
5704
5704
  * <p>The approved origins.</p>
5705
5705
  * @public
5706
5706
  */
5707
- Origins?: string[];
5707
+ Origins?: string[] | undefined;
5708
5708
  /**
5709
5709
  * <p>If there are additional results, this is the token for the next set of results.</p>
5710
5710
  * @public
5711
5711
  */
5712
- NextToken?: string;
5712
+ NextToken?: string | undefined;
5713
5713
  }
5714
5714
  /**
5715
5715
  * @public
@@ -5724,13 +5724,13 @@ export interface ListAuthenticationProfilesRequest {
5724
5724
  * <p>The maximum number of results to return per page.</p>
5725
5725
  * @public
5726
5726
  */
5727
- MaxResults?: number;
5727
+ MaxResults?: number | undefined;
5728
5728
  /**
5729
5729
  * <p>The token for the next set of results. Use the value returned in the previous
5730
5730
  * response in the next request to retrieve the next set of results.</p>
5731
5731
  * @public
5732
5732
  */
5733
- NextToken?: string;
5733
+ NextToken?: string | undefined;
5734
5734
  }
5735
5735
  /**
5736
5736
  * <p>This API is in preview release for Amazon Connect and is subject to change. To
@@ -5743,35 +5743,35 @@ export interface AuthenticationProfileSummary {
5743
5743
  * <p>The unique identifier of the authentication profile.</p>
5744
5744
  * @public
5745
5745
  */
5746
- Id?: string;
5746
+ Id?: string | undefined;
5747
5747
  /**
5748
5748
  * <p>The Amazon Resource Name (ARN) of the authentication profile summary.</p>
5749
5749
  * @public
5750
5750
  */
5751
- Arn?: string;
5751
+ Arn?: string | undefined;
5752
5752
  /**
5753
5753
  * <p>The name of the authentication profile summary.</p>
5754
5754
  * @public
5755
5755
  */
5756
- Name?: string;
5756
+ Name?: string | undefined;
5757
5757
  /**
5758
5758
  * <p>Shows whether the authentication profile is the default authentication profile for the
5759
5759
  * Amazon Connect instance. The default authentication profile applies to all agents in an
5760
5760
  * Amazon Connect instance, unless overridden by another authentication profile.</p>
5761
5761
  * @public
5762
5762
  */
5763
- IsDefault?: boolean;
5763
+ IsDefault?: boolean | undefined;
5764
5764
  /**
5765
5765
  * <p>The timestamp when the authentication profile summary was last modified.</p>
5766
5766
  * @public
5767
5767
  */
5768
- LastModifiedTime?: Date;
5768
+ LastModifiedTime?: Date | undefined;
5769
5769
  /**
5770
5770
  * <p>The Amazon Web Services Region when the authentication profile summary was last
5771
5771
  * modified.</p>
5772
5772
  * @public
5773
5773
  */
5774
- LastModifiedRegion?: string;
5774
+ LastModifiedRegion?: string | undefined;
5775
5775
  }
5776
5776
  /**
5777
5777
  * @public
@@ -5781,12 +5781,12 @@ export interface ListAuthenticationProfilesResponse {
5781
5781
  * <p>A summary of a given authentication profile.</p>
5782
5782
  * @public
5783
5783
  */
5784
- AuthenticationProfileSummaryList?: AuthenticationProfileSummary[];
5784
+ AuthenticationProfileSummaryList?: AuthenticationProfileSummary[] | undefined;
5785
5785
  /**
5786
5786
  * <p>If there are additional results, this is the token for the next set of results.</p>
5787
5787
  * @public
5788
5788
  */
5789
- NextToken?: string;
5789
+ NextToken?: string | undefined;
5790
5790
  }
5791
5791
  /**
5792
5792
  * @public
@@ -5814,12 +5814,12 @@ export interface ListBotsRequest {
5814
5814
  * response in the next request to retrieve the next set of results.</p>
5815
5815
  * @public
5816
5816
  */
5817
- NextToken?: string;
5817
+ NextToken?: string | undefined;
5818
5818
  /**
5819
5819
  * <p>The maximum number of results to return per page.</p>
5820
5820
  * @public
5821
5821
  */
5822
- MaxResults?: number;
5822
+ MaxResults?: number | undefined;
5823
5823
  /**
5824
5824
  * <p>The version of Amazon Lex or Amazon Lex V2.</p>
5825
5825
  * @public
@@ -5835,12 +5835,12 @@ export interface LexBotConfig {
5835
5835
  * <p>Configuration information of an Amazon Lex bot.</p>
5836
5836
  * @public
5837
5837
  */
5838
- LexBot?: LexBot;
5838
+ LexBot?: LexBot | undefined;
5839
5839
  /**
5840
5840
  * <p>Configuration information of an Amazon Lex V2 bot.</p>
5841
5841
  * @public
5842
5842
  */
5843
- LexV2Bot?: LexV2Bot;
5843
+ LexV2Bot?: LexV2Bot | undefined;
5844
5844
  }
5845
5845
  /**
5846
5846
  * @public
@@ -5851,12 +5851,12 @@ export interface ListBotsResponse {
5851
5851
  * associated with the specified instance.</p>
5852
5852
  * @public
5853
5853
  */
5854
- LexBots?: LexBotConfig[];
5854
+ LexBots?: LexBotConfig[] | undefined;
5855
5855
  /**
5856
5856
  * <p>If there are additional results, this is the token for the next set of results.</p>
5857
5857
  * @public
5858
5858
  */
5859
- NextToken?: string;
5859
+ NextToken?: string | undefined;
5860
5860
  }
5861
5861
  /**
5862
5862
  * @public
@@ -5881,7 +5881,7 @@ export interface ListContactEvaluationsRequest {
5881
5881
  * </important>
5882
5882
  * @public
5883
5883
  */
5884
- NextToken?: string;
5884
+ NextToken?: string | undefined;
5885
5885
  }
5886
5886
  /**
5887
5887
  * <p>Summary information about a contact evaluation.</p>
@@ -5922,7 +5922,7 @@ export interface EvaluationSummary {
5922
5922
  * <p>The overall score of the contact evaluation.</p>
5923
5923
  * @public
5924
5924
  */
5925
- Score?: EvaluationScore;
5925
+ Score?: EvaluationScore | undefined;
5926
5926
  /**
5927
5927
  * <p>The timestamp for when the evaluation was created.</p>
5928
5928
  * @public
@@ -5950,7 +5950,7 @@ export interface ListContactEvaluationsResponse {
5950
5950
  * </important>
5951
5951
  * @public
5952
5952
  */
5953
- NextToken?: string;
5953
+ NextToken?: string | undefined;
5954
5954
  }
5955
5955
  /**
5956
5956
  * @public
@@ -5966,17 +5966,17 @@ export interface ListContactFlowModulesRequest {
5966
5966
  * response in the next request to retrieve the next set of results.</p>
5967
5967
  * @public
5968
5968
  */
5969
- NextToken?: string;
5969
+ NextToken?: string | undefined;
5970
5970
  /**
5971
5971
  * <p>The maximum number of results to return per page.</p>
5972
5972
  * @public
5973
5973
  */
5974
- MaxResults?: number;
5974
+ MaxResults?: number | undefined;
5975
5975
  /**
5976
5976
  * <p>The state of the flow module.</p>
5977
5977
  * @public
5978
5978
  */
5979
- ContactFlowModuleState?: ContactFlowModuleState;
5979
+ ContactFlowModuleState?: ContactFlowModuleState | undefined;
5980
5980
  }
5981
5981
  /**
5982
5982
  * <p>Contains summary information about a flow.</p>
@@ -5987,22 +5987,22 @@ export interface ContactFlowModuleSummary {
5987
5987
  * <p>The identifier of the flow module.</p>
5988
5988
  * @public
5989
5989
  */
5990
- Id?: string;
5990
+ Id?: string | undefined;
5991
5991
  /**
5992
5992
  * <p>The Amazon Resource Name (ARN) of the flow module.</p>
5993
5993
  * @public
5994
5994
  */
5995
- Arn?: string;
5995
+ Arn?: string | undefined;
5996
5996
  /**
5997
5997
  * <p>The name of the flow module.</p>
5998
5998
  * @public
5999
5999
  */
6000
- Name?: string;
6000
+ Name?: string | undefined;
6001
6001
  /**
6002
6002
  * <p>The type of flow module.</p>
6003
6003
  * @public
6004
6004
  */
6005
- State?: ContactFlowModuleState;
6005
+ State?: ContactFlowModuleState | undefined;
6006
6006
  }
6007
6007
  /**
6008
6008
  * @public
@@ -6012,12 +6012,12 @@ export interface ListContactFlowModulesResponse {
6012
6012
  * <p>Information about the flow module.</p>
6013
6013
  * @public
6014
6014
  */
6015
- ContactFlowModulesSummaryList?: ContactFlowModuleSummary[];
6015
+ ContactFlowModulesSummaryList?: ContactFlowModuleSummary[] | undefined;
6016
6016
  /**
6017
6017
  * <p>If there are additional results, this is the token for the next set of results.</p>
6018
6018
  * @public
6019
6019
  */
6020
- NextToken?: string;
6020
+ NextToken?: string | undefined;
6021
6021
  }
6022
6022
  /**
6023
6023
  * @public
@@ -6032,18 +6032,18 @@ export interface ListContactFlowsRequest {
6032
6032
  * <p>The type of flow.</p>
6033
6033
  * @public
6034
6034
  */
6035
- ContactFlowTypes?: ContactFlowType[];
6035
+ ContactFlowTypes?: ContactFlowType[] | undefined;
6036
6036
  /**
6037
6037
  * <p>The token for the next set of results. Use the value returned in the previous
6038
6038
  * response in the next request to retrieve the next set of results.</p>
6039
6039
  * @public
6040
6040
  */
6041
- NextToken?: string;
6041
+ NextToken?: string | undefined;
6042
6042
  /**
6043
6043
  * <p>The maximum number of results to return per page. The default MaxResult size is 100.</p>
6044
6044
  * @public
6045
6045
  */
6046
- MaxResults?: number;
6046
+ MaxResults?: number | undefined;
6047
6047
  }
6048
6048
  /**
6049
6049
  * <p>Contains summary information about a flow.</p>
@@ -6056,32 +6056,32 @@ export interface ContactFlowSummary {
6056
6056
  * <p>The identifier of the flow.</p>
6057
6057
  * @public
6058
6058
  */
6059
- Id?: string;
6059
+ Id?: string | undefined;
6060
6060
  /**
6061
6061
  * <p>The Amazon Resource Name (ARN) of the flow.</p>
6062
6062
  * @public
6063
6063
  */
6064
- Arn?: string;
6064
+ Arn?: string | undefined;
6065
6065
  /**
6066
6066
  * <p>The name of the flow.</p>
6067
6067
  * @public
6068
6068
  */
6069
- Name?: string;
6069
+ Name?: string | undefined;
6070
6070
  /**
6071
6071
  * <p>The type of flow.</p>
6072
6072
  * @public
6073
6073
  */
6074
- ContactFlowType?: ContactFlowType;
6074
+ ContactFlowType?: ContactFlowType | undefined;
6075
6075
  /**
6076
6076
  * <p>The type of flow.</p>
6077
6077
  * @public
6078
6078
  */
6079
- ContactFlowState?: ContactFlowState;
6079
+ ContactFlowState?: ContactFlowState | undefined;
6080
6080
  /**
6081
6081
  * <p>The status of the contact flow.</p>
6082
6082
  * @public
6083
6083
  */
6084
- ContactFlowStatus?: ContactFlowStatus;
6084
+ ContactFlowStatus?: ContactFlowStatus | undefined;
6085
6085
  }
6086
6086
  /**
6087
6087
  * @public
@@ -6091,12 +6091,12 @@ export interface ListContactFlowsResponse {
6091
6091
  * <p>Information about the flows.</p>
6092
6092
  * @public
6093
6093
  */
6094
- ContactFlowSummaryList?: ContactFlowSummary[];
6094
+ ContactFlowSummaryList?: ContactFlowSummary[] | undefined;
6095
6095
  /**
6096
6096
  * <p>If there are additional results, this is the token for the next set of results.</p>
6097
6097
  * @public
6098
6098
  */
6099
- NextToken?: string;
6099
+ NextToken?: string | undefined;
6100
6100
  }
6101
6101
  /**
6102
6102
  * @public
@@ -6126,7 +6126,7 @@ export interface ListContactReferencesRequest {
6126
6126
  * </important>
6127
6127
  * @public
6128
6128
  */
6129
- NextToken?: string;
6129
+ NextToken?: string | undefined;
6130
6130
  }
6131
6131
  /**
6132
6132
  * @public
@@ -6150,17 +6150,17 @@ export interface AttachmentReference {
6150
6150
  * <p>Identifier of the attachment reference.</p>
6151
6151
  * @public
6152
6152
  */
6153
- Name?: string;
6153
+ Name?: string | undefined;
6154
6154
  /**
6155
6155
  * <p>The location path of the attachment reference.</p>
6156
6156
  * @public
6157
6157
  */
6158
- Value?: string;
6158
+ Value?: string | undefined;
6159
6159
  /**
6160
6160
  * <p>Status of the attachment reference type.</p>
6161
6161
  * @public
6162
6162
  */
6163
- Status?: ReferenceStatus;
6163
+ Status?: ReferenceStatus | undefined;
6164
6164
  }
6165
6165
  /**
6166
6166
  * <p>Information about a reference when the <code>referenceType</code> is <code>DATE</code>.
@@ -6172,12 +6172,12 @@ export interface DateReference {
6172
6172
  * <p>Identifier of the date reference.</p>
6173
6173
  * @public
6174
6174
  */
6175
- Name?: string;
6175
+ Name?: string | undefined;
6176
6176
  /**
6177
6177
  * <p>A valid date.</p>
6178
6178
  * @public
6179
6179
  */
6180
- Value?: string;
6180
+ Value?: string | undefined;
6181
6181
  }
6182
6182
  /**
6183
6183
  * <p>Information about a reference when the <code>referenceType</code> is <code>EMAIL</code>.
@@ -6189,12 +6189,12 @@ export interface EmailReference {
6189
6189
  * <p>Identifier of the email reference.</p>
6190
6190
  * @public
6191
6191
  */
6192
- Name?: string;
6192
+ Name?: string | undefined;
6193
6193
  /**
6194
6194
  * <p>A valid email address.</p>
6195
6195
  * @public
6196
6196
  */
6197
- Value?: string;
6197
+ Value?: string | undefined;
6198
6198
  }
6199
6199
  /**
6200
6200
  * <p>Information about a reference when the <code>referenceType</code> is <code>NUMBER</code>.
@@ -6206,12 +6206,12 @@ export interface NumberReference {
6206
6206
  * <p>Identifier of the number reference.</p>
6207
6207
  * @public
6208
6208
  */
6209
- Name?: string;
6209
+ Name?: string | undefined;
6210
6210
  /**
6211
6211
  * <p>A valid number.</p>
6212
6212
  * @public
6213
6213
  */
6214
- Value?: string;
6214
+ Value?: string | undefined;
6215
6215
  }
6216
6216
  /**
6217
6217
  * <p>Information about a reference when the <code>referenceType</code> is <code>STRING</code>.
@@ -6223,12 +6223,12 @@ export interface StringReference {
6223
6223
  * <p>Identifier of the string reference.</p>
6224
6224
  * @public
6225
6225
  */
6226
- Name?: string;
6226
+ Name?: string | undefined;
6227
6227
  /**
6228
6228
  * <p>A valid string.</p>
6229
6229
  * @public
6230
6230
  */
6231
- Value?: string;
6231
+ Value?: string | undefined;
6232
6232
  }
6233
6233
  /**
6234
6234
  * <p>The URL reference.</p>
@@ -6239,12 +6239,12 @@ export interface UrlReference {
6239
6239
  * <p>Identifier of the URL reference.</p>
6240
6240
  * @public
6241
6241
  */
6242
- Name?: string;
6242
+ Name?: string | undefined;
6243
6243
  /**
6244
6244
  * <p>A valid URL.</p>
6245
6245
  * @public
6246
6246
  */
6247
- Value?: string;
6247
+ Value?: string | undefined;
6248
6248
  }
6249
6249
  /**
6250
6250
  * <p>Contains summary information about a reference. <code>ReferenceSummary</code> contains only
@@ -6371,7 +6371,7 @@ export interface ListContactReferencesResponse {
6371
6371
  * <p>Information about the flows.</p>
6372
6372
  * @public
6373
6373
  */
6374
- ReferenceSummaryList?: ReferenceSummary[];
6374
+ ReferenceSummaryList?: ReferenceSummary[] | undefined;
6375
6375
  /**
6376
6376
  * <p>If there are additional results, this is the token for the next set of results.</p>
6377
6377
  * <important>
@@ -6379,7 +6379,7 @@ export interface ListContactReferencesResponse {
6379
6379
  * </important>
6380
6380
  * @public
6381
6381
  */
6382
- NextToken?: string;
6382
+ NextToken?: string | undefined;
6383
6383
  }
6384
6384
  /**
6385
6385
  * @public
@@ -6396,18 +6396,18 @@ export interface ListDefaultVocabulariesRequest {
6396
6396
  * </p>
6397
6397
  * @public
6398
6398
  */
6399
- LanguageCode?: VocabularyLanguageCode;
6399
+ LanguageCode?: VocabularyLanguageCode | undefined;
6400
6400
  /**
6401
6401
  * <p>The maximum number of results to return per page.</p>
6402
6402
  * @public
6403
6403
  */
6404
- MaxResults?: number;
6404
+ MaxResults?: number | undefined;
6405
6405
  /**
6406
6406
  * <p>The token for the next set of results. Use the value returned in the previous
6407
6407
  * response in the next request to retrieve the next set of results.</p>
6408
6408
  * @public
6409
6409
  */
6410
- NextToken?: string;
6410
+ NextToken?: string | undefined;
6411
6411
  }
6412
6412
  /**
6413
6413
  * <p>Contains information about a default vocabulary.</p>
@@ -6450,7 +6450,7 @@ export interface ListDefaultVocabulariesResponse {
6450
6450
  * <p>If there are additional results, this is the token for the next set of results.</p>
6451
6451
  * @public
6452
6452
  */
6453
- NextToken?: string;
6453
+ NextToken?: string | undefined;
6454
6454
  }
6455
6455
  /**
6456
6456
  * @public
@@ -6465,13 +6465,13 @@ export interface ListEvaluationFormsRequest {
6465
6465
  * <p>The maximum number of results to return per page.</p>
6466
6466
  * @public
6467
6467
  */
6468
- MaxResults?: number;
6468
+ MaxResults?: number | undefined;
6469
6469
  /**
6470
6470
  * <p>The token for the next set of results. Use the value returned in the previous
6471
6471
  * response in the next request to retrieve the next set of results.</p>
6472
6472
  * @public
6473
6473
  */
6474
- NextToken?: string;
6474
+ NextToken?: string | undefined;
6475
6475
  }
6476
6476
  /**
6477
6477
  * <p>Summary information about an evaluation form.</p>
@@ -6517,12 +6517,12 @@ export interface EvaluationFormSummary {
6517
6517
  * <p>The timestamp for when the evaluation form was last activated.</p>
6518
6518
  * @public
6519
6519
  */
6520
- LastActivatedTime?: Date;
6520
+ LastActivatedTime?: Date | undefined;
6521
6521
  /**
6522
6522
  * <p> The Amazon Resource Name (ARN) of the user who last activated the evaluation form.</p>
6523
6523
  * @public
6524
6524
  */
6525
- LastActivatedBy?: string;
6525
+ LastActivatedBy?: string | undefined;
6526
6526
  /**
6527
6527
  * <p>The version number of the latest evaluation form version.</p>
6528
6528
  * @public
@@ -6532,7 +6532,7 @@ export interface EvaluationFormSummary {
6532
6532
  * <p>The version of the active evaluation form version.</p>
6533
6533
  * @public
6534
6534
  */
6535
- ActiveVersion?: number;
6535
+ ActiveVersion?: number | undefined;
6536
6536
  }
6537
6537
  /**
6538
6538
  * @public
@@ -6547,7 +6547,7 @@ export interface ListEvaluationFormsResponse {
6547
6547
  * <p>If there are additional results, this is the token for the next set of results.</p>
6548
6548
  * @public
6549
6549
  */
6550
- NextToken?: string;
6550
+ NextToken?: string | undefined;
6551
6551
  }
6552
6552
  /**
6553
6553
  * @public
@@ -6567,13 +6567,13 @@ export interface ListEvaluationFormVersionsRequest {
6567
6567
  * <p>The maximum number of results to return per page.</p>
6568
6568
  * @public
6569
6569
  */
6570
- MaxResults?: number;
6570
+ MaxResults?: number | undefined;
6571
6571
  /**
6572
6572
  * <p>The token for the next set of results. Use the value returned in the previous
6573
6573
  * response in the next request to retrieve the next set of results.</p>
6574
6574
  * @public
6575
6575
  */
6576
- NextToken?: string;
6576
+ NextToken?: string | undefined;
6577
6577
  }
6578
6578
  /**
6579
6579
  * <p>Summary information about an evaluation form.</p>
@@ -6639,7 +6639,7 @@ export interface ListEvaluationFormVersionsResponse {
6639
6639
  * <p>If there are additional results, this is the token for the next set of results.</p>
6640
6640
  * @public
6641
6641
  */
6642
- NextToken?: string;
6642
+ NextToken?: string | undefined;
6643
6643
  }
6644
6644
  /**
6645
6645
  * @public
@@ -6654,18 +6654,18 @@ export interface ListFlowAssociationsRequest {
6654
6654
  * <p>A valid resource type.</p>
6655
6655
  * @public
6656
6656
  */
6657
- ResourceType?: ListFlowAssociationResourceType;
6657
+ ResourceType?: ListFlowAssociationResourceType | undefined;
6658
6658
  /**
6659
6659
  * <p>The token for the next set of results. Use the value returned in the previous
6660
6660
  * response in the next request to retrieve the next set of results.</p>
6661
6661
  * @public
6662
6662
  */
6663
- NextToken?: string;
6663
+ NextToken?: string | undefined;
6664
6664
  /**
6665
6665
  * <p>The maximum number of results to return per page.</p>
6666
6666
  * @public
6667
6667
  */
6668
- MaxResults?: number;
6668
+ MaxResults?: number | undefined;
6669
6669
  }
6670
6670
  /**
6671
6671
  * @public
@@ -6675,12 +6675,12 @@ export interface ListFlowAssociationsResponse {
6675
6675
  * <p>Summary of flow associations.</p>
6676
6676
  * @public
6677
6677
  */
6678
- FlowAssociationSummaryList?: FlowAssociationSummary[];
6678
+ FlowAssociationSummaryList?: FlowAssociationSummary[] | undefined;
6679
6679
  /**
6680
6680
  * <p>If there are additional results, this is the token for the next set of results.</p>
6681
6681
  * @public
6682
6682
  */
6683
- NextToken?: string;
6683
+ NextToken?: string | undefined;
6684
6684
  }
6685
6685
  /**
6686
6686
  * @public
@@ -6696,12 +6696,12 @@ export interface ListHoursOfOperationsRequest {
6696
6696
  * response in the next request to retrieve the next set of results.</p>
6697
6697
  * @public
6698
6698
  */
6699
- NextToken?: string;
6699
+ NextToken?: string | undefined;
6700
6700
  /**
6701
6701
  * <p>The maximum number of results to return per page. The default MaxResult size is 100.</p>
6702
6702
  * @public
6703
6703
  */
6704
- MaxResults?: number;
6704
+ MaxResults?: number | undefined;
6705
6705
  }
6706
6706
  /**
6707
6707
  * <p>Contains summary information about hours of operation for a contact center.</p>
@@ -6712,27 +6712,27 @@ export interface HoursOfOperationSummary {
6712
6712
  * <p>The identifier of the hours of operation.</p>
6713
6713
  * @public
6714
6714
  */
6715
- Id?: string;
6715
+ Id?: string | undefined;
6716
6716
  /**
6717
6717
  * <p>The Amazon Resource Name (ARN) of the hours of operation.</p>
6718
6718
  * @public
6719
6719
  */
6720
- Arn?: string;
6720
+ Arn?: string | undefined;
6721
6721
  /**
6722
6722
  * <p>The name of the hours of operation.</p>
6723
6723
  * @public
6724
6724
  */
6725
- Name?: string;
6725
+ Name?: string | undefined;
6726
6726
  /**
6727
6727
  * <p>The timestamp when this resource was last modified.</p>
6728
6728
  * @public
6729
6729
  */
6730
- LastModifiedTime?: Date;
6730
+ LastModifiedTime?: Date | undefined;
6731
6731
  /**
6732
6732
  * <p>The Amazon Web Services Region where this resource was last modified.</p>
6733
6733
  * @public
6734
6734
  */
6735
- LastModifiedRegion?: string;
6735
+ LastModifiedRegion?: string | undefined;
6736
6736
  }
6737
6737
  /**
6738
6738
  * @public
@@ -6742,12 +6742,12 @@ export interface ListHoursOfOperationsResponse {
6742
6742
  * <p>Information about the hours of operation.</p>
6743
6743
  * @public
6744
6744
  */
6745
- HoursOfOperationSummaryList?: HoursOfOperationSummary[];
6745
+ HoursOfOperationSummaryList?: HoursOfOperationSummary[] | undefined;
6746
6746
  /**
6747
6747
  * <p>If there are additional results, this is the token for the next set of results.</p>
6748
6748
  * @public
6749
6749
  */
6750
- NextToken?: string;
6750
+ NextToken?: string | undefined;
6751
6751
  }
6752
6752
  /**
6753
6753
  * @public
@@ -6763,12 +6763,12 @@ export interface ListInstanceAttributesRequest {
6763
6763
  * response in the next request to retrieve the next set of results.</p>
6764
6764
  * @public
6765
6765
  */
6766
- NextToken?: string;
6766
+ NextToken?: string | undefined;
6767
6767
  /**
6768
6768
  * <p>The maximum number of results to return per page.</p>
6769
6769
  * @public
6770
6770
  */
6771
- MaxResults?: number;
6771
+ MaxResults?: number | undefined;
6772
6772
  }
6773
6773
  /**
6774
6774
  * @public
@@ -6778,12 +6778,12 @@ export interface ListInstanceAttributesResponse {
6778
6778
  * <p>The attribute types.</p>
6779
6779
  * @public
6780
6780
  */
6781
- Attributes?: Attribute[];
6781
+ Attributes?: Attribute[] | undefined;
6782
6782
  /**
6783
6783
  * <p>If there are additional results, this is the token for the next set of results.</p>
6784
6784
  * @public
6785
6785
  */
6786
- NextToken?: string;
6786
+ NextToken?: string | undefined;
6787
6787
  }
6788
6788
  /**
6789
6789
  * @public
@@ -6794,12 +6794,12 @@ export interface ListInstancesRequest {
6794
6794
  * response in the next request to retrieve the next set of results.</p>
6795
6795
  * @public
6796
6796
  */
6797
- NextToken?: string;
6797
+ NextToken?: string | undefined;
6798
6798
  /**
6799
6799
  * <p>The maximum number of results to return per page.</p>
6800
6800
  * @public
6801
6801
  */
6802
- MaxResults?: number;
6802
+ MaxResults?: number | undefined;
6803
6803
  }
6804
6804
  /**
6805
6805
  * <p>Information about the instance.</p>
@@ -6810,52 +6810,52 @@ export interface InstanceSummary {
6810
6810
  * <p>The identifier of the instance.</p>
6811
6811
  * @public
6812
6812
  */
6813
- Id?: string;
6813
+ Id?: string | undefined;
6814
6814
  /**
6815
6815
  * <p>The Amazon Resource Name (ARN) of the instance.</p>
6816
6816
  * @public
6817
6817
  */
6818
- Arn?: string;
6818
+ Arn?: string | undefined;
6819
6819
  /**
6820
6820
  * <p>The identity management type of the instance.</p>
6821
6821
  * @public
6822
6822
  */
6823
- IdentityManagementType?: DirectoryType;
6823
+ IdentityManagementType?: DirectoryType | undefined;
6824
6824
  /**
6825
6825
  * <p>The alias of the instance.</p>
6826
6826
  * @public
6827
6827
  */
6828
- InstanceAlias?: string;
6828
+ InstanceAlias?: string | undefined;
6829
6829
  /**
6830
6830
  * <p>When the instance was created.</p>
6831
6831
  * @public
6832
6832
  */
6833
- CreatedTime?: Date;
6833
+ CreatedTime?: Date | undefined;
6834
6834
  /**
6835
6835
  * <p>The service role of the instance.</p>
6836
6836
  * @public
6837
6837
  */
6838
- ServiceRole?: string;
6838
+ ServiceRole?: string | undefined;
6839
6839
  /**
6840
6840
  * <p>The state of the instance.</p>
6841
6841
  * @public
6842
6842
  */
6843
- InstanceStatus?: InstanceStatus;
6843
+ InstanceStatus?: InstanceStatus | undefined;
6844
6844
  /**
6845
6845
  * <p>Whether inbound calls are enabled.</p>
6846
6846
  * @public
6847
6847
  */
6848
- InboundCallsEnabled?: boolean;
6848
+ InboundCallsEnabled?: boolean | undefined;
6849
6849
  /**
6850
6850
  * <p>Whether outbound calls are enabled.</p>
6851
6851
  * @public
6852
6852
  */
6853
- OutboundCallsEnabled?: boolean;
6853
+ OutboundCallsEnabled?: boolean | undefined;
6854
6854
  /**
6855
6855
  * <p>This URL allows contact center users to access the Amazon Connect admin website.</p>
6856
6856
  * @public
6857
6857
  */
6858
- InstanceAccessUrl?: string;
6858
+ InstanceAccessUrl?: string | undefined;
6859
6859
  }
6860
6860
  /**
6861
6861
  * @public
@@ -6865,12 +6865,12 @@ export interface ListInstancesResponse {
6865
6865
  * <p>Information about the instances.</p>
6866
6866
  * @public
6867
6867
  */
6868
- InstanceSummaryList?: InstanceSummary[];
6868
+ InstanceSummaryList?: InstanceSummary[] | undefined;
6869
6869
  /**
6870
6870
  * <p>If there are additional results, this is the token for the next set of results.</p>
6871
6871
  * @public
6872
6872
  */
6873
- NextToken?: string;
6873
+ NextToken?: string | undefined;
6874
6874
  }
6875
6875
  /**
6876
6876
  * @public
@@ -6891,12 +6891,12 @@ export interface ListInstanceStorageConfigsRequest {
6891
6891
  * response in the next request to retrieve the next set of results.</p>
6892
6892
  * @public
6893
6893
  */
6894
- NextToken?: string;
6894
+ NextToken?: string | undefined;
6895
6895
  /**
6896
6896
  * <p>The maximum number of results to return per page.</p>
6897
6897
  * @public
6898
6898
  */
6899
- MaxResults?: number;
6899
+ MaxResults?: number | undefined;
6900
6900
  }
6901
6901
  /**
6902
6902
  * @public
@@ -6906,12 +6906,12 @@ export interface ListInstanceStorageConfigsResponse {
6906
6906
  * <p>A valid storage type.</p>
6907
6907
  * @public
6908
6908
  */
6909
- StorageConfigs?: InstanceStorageConfig[];
6909
+ StorageConfigs?: InstanceStorageConfig[] | undefined;
6910
6910
  /**
6911
6911
  * <p>If there are additional results, this is the token for the next set of results.</p>
6912
6912
  * @public
6913
6913
  */
6914
- NextToken?: string;
6914
+ NextToken?: string | undefined;
6915
6915
  }
6916
6916
  /**
6917
6917
  * @public
@@ -6926,23 +6926,23 @@ export interface ListIntegrationAssociationsRequest {
6926
6926
  * <p>The integration type.</p>
6927
6927
  * @public
6928
6928
  */
6929
- IntegrationType?: IntegrationType;
6929
+ IntegrationType?: IntegrationType | undefined;
6930
6930
  /**
6931
6931
  * <p>The token for the next set of results. Use the value returned in the previous
6932
6932
  * response in the next request to retrieve the next set of results.</p>
6933
6933
  * @public
6934
6934
  */
6935
- NextToken?: string;
6935
+ NextToken?: string | undefined;
6936
6936
  /**
6937
6937
  * <p>The maximum number of results to return per page.</p>
6938
6938
  * @public
6939
6939
  */
6940
- MaxResults?: number;
6940
+ MaxResults?: number | undefined;
6941
6941
  /**
6942
6942
  * <p>The Amazon Resource Name (ARN) of the integration.</p>
6943
6943
  * @public
6944
6944
  */
6945
- IntegrationArn?: string;
6945
+ IntegrationArn?: string | undefined;
6946
6946
  }
6947
6947
  /**
6948
6948
  * <p>Contains summary information about the associated AppIntegrations.</p>
@@ -6953,42 +6953,42 @@ export interface IntegrationAssociationSummary {
6953
6953
  * <p>The identifier for the AppIntegration association.</p>
6954
6954
  * @public
6955
6955
  */
6956
- IntegrationAssociationId?: string;
6956
+ IntegrationAssociationId?: string | undefined;
6957
6957
  /**
6958
6958
  * <p>The Amazon Resource Name (ARN) for the AppIntegration association.</p>
6959
6959
  * @public
6960
6960
  */
6961
- IntegrationAssociationArn?: string;
6961
+ IntegrationAssociationArn?: string | undefined;
6962
6962
  /**
6963
6963
  * <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>
6964
6964
  * @public
6965
6965
  */
6966
- InstanceId?: string;
6966
+ InstanceId?: string | undefined;
6967
6967
  /**
6968
6968
  * <p>The integration type.</p>
6969
6969
  * @public
6970
6970
  */
6971
- IntegrationType?: IntegrationType;
6971
+ IntegrationType?: IntegrationType | undefined;
6972
6972
  /**
6973
6973
  * <p>The Amazon Resource Name (ARN) for the AppIntegration.</p>
6974
6974
  * @public
6975
6975
  */
6976
- IntegrationArn?: string;
6976
+ IntegrationArn?: string | undefined;
6977
6977
  /**
6978
6978
  * <p>The URL for the external application.</p>
6979
6979
  * @public
6980
6980
  */
6981
- SourceApplicationUrl?: string;
6981
+ SourceApplicationUrl?: string | undefined;
6982
6982
  /**
6983
6983
  * <p>The user-provided, friendly name for the external application.</p>
6984
6984
  * @public
6985
6985
  */
6986
- SourceApplicationName?: string;
6986
+ SourceApplicationName?: string | undefined;
6987
6987
  /**
6988
6988
  * <p>The name of the source.</p>
6989
6989
  * @public
6990
6990
  */
6991
- SourceType?: SourceType;
6991
+ SourceType?: SourceType | undefined;
6992
6992
  }
6993
6993
  /**
6994
6994
  * @public
@@ -6998,12 +6998,12 @@ export interface ListIntegrationAssociationsResponse {
6998
6998
  * <p>The associations.</p>
6999
6999
  * @public
7000
7000
  */
7001
- IntegrationAssociationSummaryList?: IntegrationAssociationSummary[];
7001
+ IntegrationAssociationSummaryList?: IntegrationAssociationSummary[] | undefined;
7002
7002
  /**
7003
7003
  * <p>If there are additional results, this is the token for the next set of results.</p>
7004
7004
  * @public
7005
7005
  */
7006
- NextToken?: string;
7006
+ NextToken?: string | undefined;
7007
7007
  }
7008
7008
  /**
7009
7009
  * @public
@@ -7019,12 +7019,12 @@ export interface ListLambdaFunctionsRequest {
7019
7019
  * response in the next request to retrieve the next set of results.</p>
7020
7020
  * @public
7021
7021
  */
7022
- NextToken?: string;
7022
+ NextToken?: string | undefined;
7023
7023
  /**
7024
7024
  * <p>The maximum number of results to return per page.</p>
7025
7025
  * @public
7026
7026
  */
7027
- MaxResults?: number;
7027
+ MaxResults?: number | undefined;
7028
7028
  }
7029
7029
  /**
7030
7030
  * @public
@@ -7034,12 +7034,12 @@ export interface ListLambdaFunctionsResponse {
7034
7034
  * <p>The Lambdafunction ARNs associated with the specified instance.</p>
7035
7035
  * @public
7036
7036
  */
7037
- LambdaFunctions?: string[];
7037
+ LambdaFunctions?: string[] | undefined;
7038
7038
  /**
7039
7039
  * <p>If there are additional results, this is the token for the next set of results.</p>
7040
7040
  * @public
7041
7041
  */
7042
- NextToken?: string;
7042
+ NextToken?: string | undefined;
7043
7043
  }
7044
7044
  /**
7045
7045
  * @public
@@ -7055,13 +7055,13 @@ export interface ListLexBotsRequest {
7055
7055
  * response in the next request to retrieve the next set of results.</p>
7056
7056
  * @public
7057
7057
  */
7058
- NextToken?: string;
7058
+ NextToken?: string | undefined;
7059
7059
  /**
7060
7060
  * <p>The maximum number of results to return per page. If no value is specified, the default is 10.
7061
7061
  * </p>
7062
7062
  * @public
7063
7063
  */
7064
- MaxResults?: number;
7064
+ MaxResults?: number | undefined;
7065
7065
  }
7066
7066
  /**
7067
7067
  * @public
@@ -7072,12 +7072,12 @@ export interface ListLexBotsResponse {
7072
7072
  * specified instance.</p>
7073
7073
  * @public
7074
7074
  */
7075
- LexBots?: LexBot[];
7075
+ LexBots?: LexBot[] | undefined;
7076
7076
  /**
7077
7077
  * <p>If there are additional results, this is the token for the next set of results.</p>
7078
7078
  * @public
7079
7079
  */
7080
- NextToken?: string;
7080
+ NextToken?: string | undefined;
7081
7081
  }
7082
7082
  /**
7083
7083
  * @public
@@ -7098,23 +7098,23 @@ export interface ListPhoneNumbersRequest {
7098
7098
  * </note>
7099
7099
  * @public
7100
7100
  */
7101
- PhoneNumberTypes?: PhoneNumberType[];
7101
+ PhoneNumberTypes?: PhoneNumberType[] | undefined;
7102
7102
  /**
7103
7103
  * <p>The ISO country code.</p>
7104
7104
  * @public
7105
7105
  */
7106
- PhoneNumberCountryCodes?: PhoneNumberCountryCode[];
7106
+ PhoneNumberCountryCodes?: PhoneNumberCountryCode[] | undefined;
7107
7107
  /**
7108
7108
  * <p>The token for the next set of results. Use the value returned in the previous
7109
7109
  * response in the next request to retrieve the next set of results.</p>
7110
7110
  * @public
7111
7111
  */
7112
- NextToken?: string;
7112
+ NextToken?: string | undefined;
7113
7113
  /**
7114
7114
  * <p>The maximum number of results to return per page. The default MaxResult size is 100.</p>
7115
7115
  * @public
7116
7116
  */
7117
- MaxResults?: number;
7117
+ MaxResults?: number | undefined;
7118
7118
  }
7119
7119
  /**
7120
7120
  * <p>Contains summary information about a phone number for a contact center.</p>
@@ -7125,27 +7125,27 @@ export interface PhoneNumberSummary {
7125
7125
  * <p>The identifier of the phone number.</p>
7126
7126
  * @public
7127
7127
  */
7128
- Id?: string;
7128
+ Id?: string | undefined;
7129
7129
  /**
7130
7130
  * <p>The Amazon Resource Name (ARN) of the phone number.</p>
7131
7131
  * @public
7132
7132
  */
7133
- Arn?: string;
7133
+ Arn?: string | undefined;
7134
7134
  /**
7135
7135
  * <p>The phone number.</p>
7136
7136
  * @public
7137
7137
  */
7138
- PhoneNumber?: string;
7138
+ PhoneNumber?: string | undefined;
7139
7139
  /**
7140
7140
  * <p>The type of phone number.</p>
7141
7141
  * @public
7142
7142
  */
7143
- PhoneNumberType?: PhoneNumberType;
7143
+ PhoneNumberType?: PhoneNumberType | undefined;
7144
7144
  /**
7145
7145
  * <p>The ISO country code.</p>
7146
7146
  * @public
7147
7147
  */
7148
- PhoneNumberCountryCode?: PhoneNumberCountryCode;
7148
+ PhoneNumberCountryCode?: PhoneNumberCountryCode | undefined;
7149
7149
  }
7150
7150
  /**
7151
7151
  * @public
@@ -7155,12 +7155,12 @@ export interface ListPhoneNumbersResponse {
7155
7155
  * <p>Information about the phone numbers.</p>
7156
7156
  * @public
7157
7157
  */
7158
- PhoneNumberSummaryList?: PhoneNumberSummary[];
7158
+ PhoneNumberSummaryList?: PhoneNumberSummary[] | undefined;
7159
7159
  /**
7160
7160
  * <p>If there are additional results, this is the token for the next set of results.</p>
7161
7161
  * @public
7162
7162
  */
7163
- NextToken?: string;
7163
+ NextToken?: string | undefined;
7164
7164
  }
7165
7165
  /**
7166
7166
  * @public
@@ -7172,7 +7172,7 @@ export interface ListPhoneNumbersV2Request {
7172
7172
  * your account in the same Amazon Web Services Region as the request.</p>
7173
7173
  * @public
7174
7174
  */
7175
- TargetArn?: string;
7175
+ TargetArn?: string | undefined;
7176
7176
  /**
7177
7177
  * <p>The identifier of the Amazon Connect instance that phone numbers are claimed to. You
7178
7178
  * can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the
@@ -7181,33 +7181,33 @@ export interface ListPhoneNumbersV2Request {
7181
7181
  * the same AWS Region as the request.</p>
7182
7182
  * @public
7183
7183
  */
7184
- InstanceId?: string;
7184
+ InstanceId?: string | undefined;
7185
7185
  /**
7186
7186
  * <p>The maximum number of results to return per page.</p>
7187
7187
  * @public
7188
7188
  */
7189
- MaxResults?: number;
7189
+ MaxResults?: number | undefined;
7190
7190
  /**
7191
7191
  * <p>The token for the next set of results. Use the value returned in the previous
7192
7192
  * response in the next request to retrieve the next set of results.</p>
7193
7193
  * @public
7194
7194
  */
7195
- NextToken?: string;
7195
+ NextToken?: string | undefined;
7196
7196
  /**
7197
7197
  * <p>The ISO country code.</p>
7198
7198
  * @public
7199
7199
  */
7200
- PhoneNumberCountryCodes?: PhoneNumberCountryCode[];
7200
+ PhoneNumberCountryCodes?: PhoneNumberCountryCode[] | undefined;
7201
7201
  /**
7202
7202
  * <p>The type of phone number.</p>
7203
7203
  * @public
7204
7204
  */
7205
- PhoneNumberTypes?: PhoneNumberType[];
7205
+ PhoneNumberTypes?: PhoneNumberType[] | undefined;
7206
7206
  /**
7207
7207
  * <p>The prefix of the phone number. If provided, it must contain <code>+</code> as part of the country code.</p>
7208
7208
  * @public
7209
7209
  */
7210
- PhoneNumberPrefix?: string;
7210
+ PhoneNumberPrefix?: string | undefined;
7211
7211
  }
7212
7212
  /**
7213
7213
  * <p>Information about phone numbers that have been claimed to your Amazon Connect instance
@@ -7219,51 +7219,51 @@ export interface ListPhoneNumbersSummary {
7219
7219
  * <p>A unique identifier for the phone number.</p>
7220
7220
  * @public
7221
7221
  */
7222
- PhoneNumberId?: string;
7222
+ PhoneNumberId?: string | undefined;
7223
7223
  /**
7224
7224
  * <p>The Amazon Resource Name (ARN) of the phone number.</p>
7225
7225
  * @public
7226
7226
  */
7227
- PhoneNumberArn?: string;
7227
+ PhoneNumberArn?: string | undefined;
7228
7228
  /**
7229
7229
  * <p>The phone number. Phone numbers are formatted <code>[+] [country code] [subscriber number including area code]</code>.</p>
7230
7230
  * @public
7231
7231
  */
7232
- PhoneNumber?: string;
7232
+ PhoneNumber?: string | undefined;
7233
7233
  /**
7234
7234
  * <p>The ISO country code.</p>
7235
7235
  * @public
7236
7236
  */
7237
- PhoneNumberCountryCode?: PhoneNumberCountryCode;
7237
+ PhoneNumberCountryCode?: PhoneNumberCountryCode | undefined;
7238
7238
  /**
7239
7239
  * <p>The type of phone number.</p>
7240
7240
  * @public
7241
7241
  */
7242
- PhoneNumberType?: PhoneNumberType;
7242
+ PhoneNumberType?: PhoneNumberType | undefined;
7243
7243
  /**
7244
7244
  * <p>The Amazon Resource Name (ARN) for Amazon Connect instances or traffic distribution groups that phone number inbound traffic is routed through.</p>
7245
7245
  * @public
7246
7246
  */
7247
- TargetArn?: string;
7247
+ TargetArn?: string | undefined;
7248
7248
  /**
7249
7249
  * <p>The identifier of the Amazon Connect instance that phone numbers are claimed to. You
7250
7250
  * can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the
7251
7251
  * instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
7252
7252
  * @public
7253
7253
  */
7254
- InstanceId?: string;
7254
+ InstanceId?: string | undefined;
7255
7255
  /**
7256
7256
  * <p>The description of the phone number.</p>
7257
7257
  * @public
7258
7258
  */
7259
- PhoneNumberDescription?: string;
7259
+ PhoneNumberDescription?: string | undefined;
7260
7260
  /**
7261
7261
  * <p>The claimed phone number ARN that was previously imported from the external service, such as
7262
7262
  * Amazon Pinpoint. If it is from Amazon Pinpoint, it looks like the ARN of the phone number
7263
7263
  * that was imported from Amazon Pinpoint.</p>
7264
7264
  * @public
7265
7265
  */
7266
- SourcePhoneNumberArn?: string;
7266
+ SourcePhoneNumberArn?: string | undefined;
7267
7267
  }
7268
7268
  /**
7269
7269
  * @public
@@ -7273,13 +7273,13 @@ export interface ListPhoneNumbersV2Response {
7273
7273
  * <p>If there are additional results, this is the token for the next set of results.</p>
7274
7274
  * @public
7275
7275
  */
7276
- NextToken?: string;
7276
+ NextToken?: string | undefined;
7277
7277
  /**
7278
7278
  * <p>Information about phone numbers that have been claimed to your Amazon Connect instances
7279
7279
  * or traffic distribution groups.</p>
7280
7280
  * @public
7281
7281
  */
7282
- ListPhoneNumbersSummaryList?: ListPhoneNumbersSummary[];
7282
+ ListPhoneNumbersSummaryList?: ListPhoneNumbersSummary[] | undefined;
7283
7283
  }
7284
7284
  /**
7285
7285
  * @public
@@ -7296,12 +7296,12 @@ export interface ListPredefinedAttributesRequest {
7296
7296
  * the next request to retrieve the next set of results.</p>
7297
7297
  * @public
7298
7298
  */
7299
- NextToken?: string;
7299
+ NextToken?: string | undefined;
7300
7300
  /**
7301
7301
  * <p>The maximum number of results to return per page. </p>
7302
7302
  * @public
7303
7303
  */
7304
- MaxResults?: number;
7304
+ MaxResults?: number | undefined;
7305
7305
  }
7306
7306
  /**
7307
7307
  * <p>Summary of a predefined attribute.</p>
@@ -7312,17 +7312,17 @@ export interface PredefinedAttributeSummary {
7312
7312
  * <p>The name of the predefined attribute.</p>
7313
7313
  * @public
7314
7314
  */
7315
- Name?: string;
7315
+ Name?: string | undefined;
7316
7316
  /**
7317
7317
  * <p>Last modified time.</p>
7318
7318
  * @public
7319
7319
  */
7320
- LastModifiedTime?: Date;
7320
+ LastModifiedTime?: Date | undefined;
7321
7321
  /**
7322
7322
  * <p>Last modified region.</p>
7323
7323
  * @public
7324
7324
  */
7325
- LastModifiedRegion?: string;
7325
+ LastModifiedRegion?: string | undefined;
7326
7326
  }
7327
7327
  /**
7328
7328
  * @public
@@ -7332,12 +7332,12 @@ export interface ListPredefinedAttributesResponse {
7332
7332
  * <p>If there are additional results, this is the token for the next set of results.</p>
7333
7333
  * @public
7334
7334
  */
7335
- NextToken?: string;
7335
+ NextToken?: string | undefined;
7336
7336
  /**
7337
7337
  * <p>Summary of the predefined attributes.</p>
7338
7338
  * @public
7339
7339
  */
7340
- PredefinedAttributeSummaryList?: PredefinedAttributeSummary[];
7340
+ PredefinedAttributeSummaryList?: PredefinedAttributeSummary[] | undefined;
7341
7341
  }
7342
7342
  /**
7343
7343
  * @public
@@ -7353,12 +7353,12 @@ export interface ListPromptsRequest {
7353
7353
  * the next request to retrieve the next set of results.</p>
7354
7354
  * @public
7355
7355
  */
7356
- NextToken?: string;
7356
+ NextToken?: string | undefined;
7357
7357
  /**
7358
7358
  * <p>The maximum number of results to return per page. The default MaxResult size is 100.</p>
7359
7359
  * @public
7360
7360
  */
7361
- MaxResults?: number;
7361
+ MaxResults?: number | undefined;
7362
7362
  }
7363
7363
  /**
7364
7364
  * <p>Contains information about the prompt.</p>
@@ -7369,27 +7369,27 @@ export interface PromptSummary {
7369
7369
  * <p>The identifier of the prompt.</p>
7370
7370
  * @public
7371
7371
  */
7372
- Id?: string;
7372
+ Id?: string | undefined;
7373
7373
  /**
7374
7374
  * <p>The Amazon Resource Name (ARN) of the prompt.</p>
7375
7375
  * @public
7376
7376
  */
7377
- Arn?: string;
7377
+ Arn?: string | undefined;
7378
7378
  /**
7379
7379
  * <p>The name of the prompt.</p>
7380
7380
  * @public
7381
7381
  */
7382
- Name?: string;
7382
+ Name?: string | undefined;
7383
7383
  /**
7384
7384
  * <p>The timestamp when this resource was last modified.</p>
7385
7385
  * @public
7386
7386
  */
7387
- LastModifiedTime?: Date;
7387
+ LastModifiedTime?: Date | undefined;
7388
7388
  /**
7389
7389
  * <p>The Amazon Web Services Region where this resource was last modified.</p>
7390
7390
  * @public
7391
7391
  */
7392
- LastModifiedRegion?: string;
7392
+ LastModifiedRegion?: string | undefined;
7393
7393
  }
7394
7394
  /**
7395
7395
  * @public
@@ -7399,12 +7399,12 @@ export interface ListPromptsResponse {
7399
7399
  * <p>Information about the prompts.</p>
7400
7400
  * @public
7401
7401
  */
7402
- PromptSummaryList?: PromptSummary[];
7402
+ PromptSummaryList?: PromptSummary[] | undefined;
7403
7403
  /**
7404
7404
  * <p>If there are additional results, this is the token for the next set of results.</p>
7405
7405
  * @public
7406
7406
  */
7407
- NextToken?: string;
7407
+ NextToken?: string | undefined;
7408
7408
  }
7409
7409
  /**
7410
7410
  * @public
@@ -7425,12 +7425,12 @@ export interface ListQueueQuickConnectsRequest {
7425
7425
  * response in the next request to retrieve the next set of results.</p>
7426
7426
  * @public
7427
7427
  */
7428
- NextToken?: string;
7428
+ NextToken?: string | undefined;
7429
7429
  /**
7430
7430
  * <p>The maximum number of results to return per page. The default MaxResult size is 100.</p>
7431
7431
  * @public
7432
7432
  */
7433
- MaxResults?: number;
7433
+ MaxResults?: number | undefined;
7434
7434
  }
7435
7435
  /**
7436
7436
  * <p>Contains summary information about a quick connect.</p>
@@ -7441,33 +7441,33 @@ export interface QuickConnectSummary {
7441
7441
  * <p>The identifier for the quick connect.</p>
7442
7442
  * @public
7443
7443
  */
7444
- Id?: string;
7444
+ Id?: string | undefined;
7445
7445
  /**
7446
7446
  * <p>The Amazon Resource Name (ARN) of the quick connect.</p>
7447
7447
  * @public
7448
7448
  */
7449
- Arn?: string;
7449
+ Arn?: string | undefined;
7450
7450
  /**
7451
7451
  * <p>The name of the quick connect.</p>
7452
7452
  * @public
7453
7453
  */
7454
- Name?: string;
7454
+ Name?: string | undefined;
7455
7455
  /**
7456
7456
  * <p>The type of quick connect. In the Amazon Connect admin website, when you create a quick connect, you are
7457
7457
  * prompted to assign one of the following types: Agent (USER), External (PHONE_NUMBER), or Queue (QUEUE).</p>
7458
7458
  * @public
7459
7459
  */
7460
- QuickConnectType?: QuickConnectType;
7460
+ QuickConnectType?: QuickConnectType | undefined;
7461
7461
  /**
7462
7462
  * <p>The timestamp when this resource was last modified.</p>
7463
7463
  * @public
7464
7464
  */
7465
- LastModifiedTime?: Date;
7465
+ LastModifiedTime?: Date | undefined;
7466
7466
  /**
7467
7467
  * <p>The Amazon Web Services Region where this resource was last modified.</p>
7468
7468
  * @public
7469
7469
  */
7470
- LastModifiedRegion?: string;
7470
+ LastModifiedRegion?: string | undefined;
7471
7471
  }
7472
7472
  /**
7473
7473
  * @public
@@ -7477,22 +7477,22 @@ export interface ListQueueQuickConnectsResponse {
7477
7477
  * <p>If there are additional results, this is the token for the next set of results.</p>
7478
7478
  * @public
7479
7479
  */
7480
- NextToken?: string;
7480
+ NextToken?: string | undefined;
7481
7481
  /**
7482
7482
  * <p>Information about the quick connects.</p>
7483
7483
  * @public
7484
7484
  */
7485
- QuickConnectSummaryList?: QuickConnectSummary[];
7485
+ QuickConnectSummaryList?: QuickConnectSummary[] | undefined;
7486
7486
  /**
7487
7487
  * <p>The timestamp when this resource was last modified.</p>
7488
7488
  * @public
7489
7489
  */
7490
- LastModifiedTime?: Date;
7490
+ LastModifiedTime?: Date | undefined;
7491
7491
  /**
7492
7492
  * <p>The Amazon Web Services Region where this resource was last modified.</p>
7493
7493
  * @public
7494
7494
  */
7495
- LastModifiedRegion?: string;
7495
+ LastModifiedRegion?: string | undefined;
7496
7496
  }
7497
7497
  /**
7498
7498
  * @public
@@ -7519,18 +7519,18 @@ export interface ListQueuesRequest {
7519
7519
  * <p>The type of queue.</p>
7520
7520
  * @public
7521
7521
  */
7522
- QueueTypes?: QueueType[];
7522
+ QueueTypes?: QueueType[] | undefined;
7523
7523
  /**
7524
7524
  * <p>The token for the next set of results. Use the value returned in the previous
7525
7525
  * response in the next request to retrieve the next set of results.</p>
7526
7526
  * @public
7527
7527
  */
7528
- NextToken?: string;
7528
+ NextToken?: string | undefined;
7529
7529
  /**
7530
7530
  * <p>The maximum number of results to return per page. The default MaxResult size is 100.</p>
7531
7531
  * @public
7532
7532
  */
7533
- MaxResults?: number;
7533
+ MaxResults?: number | undefined;
7534
7534
  }
7535
7535
  /**
7536
7536
  * <p>Contains summary information about a queue.</p>
@@ -7541,32 +7541,32 @@ export interface QueueSummary {
7541
7541
  * <p>The identifier of the queue.</p>
7542
7542
  * @public
7543
7543
  */
7544
- Id?: string;
7544
+ Id?: string | undefined;
7545
7545
  /**
7546
7546
  * <p>The Amazon Resource Name (ARN) of the queue.</p>
7547
7547
  * @public
7548
7548
  */
7549
- Arn?: string;
7549
+ Arn?: string | undefined;
7550
7550
  /**
7551
7551
  * <p>The name of the queue.</p>
7552
7552
  * @public
7553
7553
  */
7554
- Name?: string;
7554
+ Name?: string | undefined;
7555
7555
  /**
7556
7556
  * <p>The type of queue.</p>
7557
7557
  * @public
7558
7558
  */
7559
- QueueType?: QueueType;
7559
+ QueueType?: QueueType | undefined;
7560
7560
  /**
7561
7561
  * <p>The timestamp when this resource was last modified.</p>
7562
7562
  * @public
7563
7563
  */
7564
- LastModifiedTime?: Date;
7564
+ LastModifiedTime?: Date | undefined;
7565
7565
  /**
7566
7566
  * <p>The Amazon Web Services Region where this resource was last modified.</p>
7567
7567
  * @public
7568
7568
  */
7569
- LastModifiedRegion?: string;
7569
+ LastModifiedRegion?: string | undefined;
7570
7570
  }
7571
7571
  /**
7572
7572
  * @public
@@ -7576,12 +7576,12 @@ export interface ListQueuesResponse {
7576
7576
  * <p>Information about the queues.</p>
7577
7577
  * @public
7578
7578
  */
7579
- QueueSummaryList?: QueueSummary[];
7579
+ QueueSummaryList?: QueueSummary[] | undefined;
7580
7580
  /**
7581
7581
  * <p>If there are additional results, this is the token for the next set of results.</p>
7582
7582
  * @public
7583
7583
  */
7584
- NextToken?: string;
7584
+ NextToken?: string | undefined;
7585
7585
  }
7586
7586
  /**
7587
7587
  * @public
@@ -7597,18 +7597,18 @@ export interface ListQuickConnectsRequest {
7597
7597
  * response in the next request to retrieve the next set of results.</p>
7598
7598
  * @public
7599
7599
  */
7600
- NextToken?: string;
7600
+ NextToken?: string | undefined;
7601
7601
  /**
7602
7602
  * <p>The maximum number of results to return per page. The default MaxResult size is 100.</p>
7603
7603
  * @public
7604
7604
  */
7605
- MaxResults?: number;
7605
+ MaxResults?: number | undefined;
7606
7606
  /**
7607
7607
  * <p>The type of quick connect. In the Amazon Connect admin website, when you create a quick connect, you are
7608
7608
  * prompted to assign one of the following types: Agent (USER), External (PHONE_NUMBER), or Queue (QUEUE).</p>
7609
7609
  * @public
7610
7610
  */
7611
- QuickConnectTypes?: QuickConnectType[];
7611
+ QuickConnectTypes?: QuickConnectType[] | undefined;
7612
7612
  }
7613
7613
  /**
7614
7614
  * @public
@@ -7618,12 +7618,12 @@ export interface ListQuickConnectsResponse {
7618
7618
  * <p>Information about the quick connects.</p>
7619
7619
  * @public
7620
7620
  */
7621
- QuickConnectSummaryList?: QuickConnectSummary[];
7621
+ QuickConnectSummaryList?: QuickConnectSummary[] | undefined;
7622
7622
  /**
7623
7623
  * <p>If there are additional results, this is the token for the next set of results.</p>
7624
7624
  * @public
7625
7625
  */
7626
- NextToken?: string;
7626
+ NextToken?: string | undefined;
7627
7627
  }
7628
7628
  /**
7629
7629
  * @public
@@ -7671,13 +7671,13 @@ export interface ListRealtimeContactAnalysisSegmentsV2Request {
7671
7671
  * <p>The maximum number of results to return per page.</p>
7672
7672
  * @public
7673
7673
  */
7674
- MaxResults?: number;
7674
+ MaxResults?: number | undefined;
7675
7675
  /**
7676
7676
  * <p>The token for the next set of results. Use the value returned in the previous
7677
7677
  * response in the next request to retrieve the next set of results.</p>
7678
7678
  * @public
7679
7679
  */
7680
- NextToken?: string;
7680
+ NextToken?: string | undefined;
7681
7681
  /**
7682
7682
  * <p>The Contact Lens output type to be returned.</p>
7683
7683
  * @public
@@ -7733,7 +7733,7 @@ export interface RealTimeContactAnalysisAttachment {
7733
7733
  * Guide</i>.</p>
7734
7734
  * @public
7735
7735
  */
7736
- ContentType?: string;
7736
+ ContentType?: string | undefined;
7737
7737
  /**
7738
7738
  * <p>A unique identifier for the attachment.</p>
7739
7739
  * @public
@@ -7743,7 +7743,7 @@ export interface RealTimeContactAnalysisAttachment {
7743
7743
  * <p>Status of the attachment.</p>
7744
7744
  * @public
7745
7745
  */
7746
- Status?: ArtifactStatus;
7746
+ Status?: ArtifactStatus | undefined;
7747
7747
  }
7748
7748
  /**
7749
7749
  * <p>Object describing time with which the segment is associated. It can have different
@@ -7801,7 +7801,7 @@ export interface RealTimeContactAnalysisSegmentAttachments {
7801
7801
  * <p>The display name of the participant. Can be redacted. </p>
7802
7802
  * @public
7803
7803
  */
7804
- DisplayName?: string;
7804
+ DisplayName?: string | undefined;
7805
7805
  /**
7806
7806
  * <p>List of objects describing an individual attachment.</p>
7807
7807
  * @public
@@ -7846,7 +7846,7 @@ export interface RealTimeContactAnalysisTranscriptItemWithCharacterOffsets {
7846
7846
  * <p>List of character intervals within transcript content/text.</p>
7847
7847
  * @public
7848
7848
  */
7849
- CharacterOffsets?: RealTimeContactAnalysisCharacterInterval;
7849
+ CharacterOffsets?: RealTimeContactAnalysisCharacterInterval | undefined;
7850
7850
  }
7851
7851
  /**
7852
7852
  * <p>The section of the contact transcript segment that category rule was detected.</p>
@@ -7858,7 +7858,7 @@ export interface RealTimeContactAnalysisPointOfInterest {
7858
7858
  * </p>
7859
7859
  * @public
7860
7860
  */
7861
- TranscriptItems?: RealTimeContactAnalysisTranscriptItemWithCharacterOffsets[];
7861
+ TranscriptItems?: RealTimeContactAnalysisTranscriptItemWithCharacterOffsets[] | undefined;
7862
7862
  }
7863
7863
  /**
7864
7864
  * <p>Provides information about the category rule that was matched.</p>
@@ -7896,17 +7896,17 @@ export interface RealTimeContactAnalysisSegmentEvent {
7896
7896
  * <p>The identifier of the participant.</p>
7897
7897
  * @public
7898
7898
  */
7899
- ParticipantId?: string;
7899
+ ParticipantId?: string | undefined;
7900
7900
  /**
7901
7901
  * <p>The role of the participant. For example, is it a customer, agent, or system.</p>
7902
7902
  * @public
7903
7903
  */
7904
- ParticipantRole?: ParticipantRole;
7904
+ ParticipantRole?: ParticipantRole | undefined;
7905
7905
  /**
7906
7906
  * <p>The display name of the participant. Can be redacted.</p>
7907
7907
  * @public
7908
7908
  */
7909
- DisplayName?: string;
7909
+ DisplayName?: string | undefined;
7910
7910
  /**
7911
7911
  * <p>Type of the event. For example,
7912
7912
  * <code>application/vnd.amazonaws.connect.event.participant.left</code>.</p>
@@ -7931,7 +7931,7 @@ export interface RealTimeContactAnalysisTranscriptItemWithContent {
7931
7931
  * <p>Part of the transcript content that contains identified issue. Can be redacted</p>
7932
7932
  * @public
7933
7933
  */
7934
- Content?: string;
7934
+ Content?: string | undefined;
7935
7935
  /**
7936
7936
  * <p>Transcript identifier. Matches the identifier from one of the TranscriptSegments.</p>
7937
7937
  * @public
@@ -7941,7 +7941,7 @@ export interface RealTimeContactAnalysisTranscriptItemWithContent {
7941
7941
  * <p>Begin and end offsets for a part of text.</p>
7942
7942
  * @public
7943
7943
  */
7944
- CharacterOffsets?: RealTimeContactAnalysisCharacterInterval;
7944
+ CharacterOffsets?: RealTimeContactAnalysisCharacterInterval | undefined;
7945
7945
  }
7946
7946
  /**
7947
7947
  * <p>Potential issues that are detected based on an artificial intelligence analysis of each turn
@@ -8002,7 +8002,7 @@ export interface RealTimeContactAnalysisSegmentPostContactSummary {
8002
8002
  * <p>The content of the summary.</p>
8003
8003
  * @public
8004
8004
  */
8005
- Content?: string;
8005
+ Content?: string | undefined;
8006
8006
  /**
8007
8007
  * <p>Whether the summary was successfully COMPLETED or FAILED to be generated.</p>
8008
8008
  * @public
@@ -8039,7 +8039,7 @@ export interface RealTimeContactAnalysisSegmentPostContactSummary {
8039
8039
  * </ul>
8040
8040
  * @public
8041
8041
  */
8042
- FailureCode?: RealTimeContactAnalysisPostContactSummaryFailureCode;
8042
+ FailureCode?: RealTimeContactAnalysisPostContactSummaryFailureCode | undefined;
8043
8043
  }
8044
8044
  /**
8045
8045
  * <p>Object describing redaction applied to the segment.</p>
@@ -8052,7 +8052,7 @@ export interface RealTimeContactAnalysisTranscriptItemRedaction {
8052
8052
  * For <code> OutputType.Redacted</code>, part of the string with redaction tag.</p>
8053
8053
  * @public
8054
8054
  */
8055
- CharacterOffsets?: RealTimeContactAnalysisCharacterInterval[];
8055
+ CharacterOffsets?: RealTimeContactAnalysisCharacterInterval[] | undefined;
8056
8056
  }
8057
8057
  /**
8058
8058
  * @public
@@ -8091,7 +8091,7 @@ export interface RealTimeContactAnalysisSegmentTranscript {
8091
8091
  * <p>The display name of the participant.</p>
8092
8092
  * @public
8093
8093
  */
8094
- DisplayName?: string;
8094
+ DisplayName?: string | undefined;
8095
8095
  /**
8096
8096
  * <p>The content of the transcript. Can be redacted.</p>
8097
8097
  * @public
@@ -8101,7 +8101,7 @@ export interface RealTimeContactAnalysisSegmentTranscript {
8101
8101
  * <p>The type of content of the item. For example, <code>text/plain</code>.</p>
8102
8102
  * @public
8103
8103
  */
8104
- ContentType?: string;
8104
+ ContentType?: string | undefined;
8105
8105
  /**
8106
8106
  * <p>Field describing the time of the event. It can have different representations of time.</p>
8107
8107
  * @public
@@ -8112,12 +8112,12 @@ export interface RealTimeContactAnalysisSegmentTranscript {
8112
8112
  * it means part of the transcript was redacted.</p>
8113
8113
  * @public
8114
8114
  */
8115
- Redaction?: RealTimeContactAnalysisTranscriptItemRedaction;
8115
+ Redaction?: RealTimeContactAnalysisTranscriptItemRedaction | undefined;
8116
8116
  /**
8117
8117
  * <p>The sentiment detected for this piece of transcript.</p>
8118
8118
  * @public
8119
8119
  */
8120
- Sentiment?: RealTimeContactAnalysisSentimentLabel;
8120
+ Sentiment?: RealTimeContactAnalysisSentimentLabel | undefined;
8121
8121
  }
8122
8122
  /**
8123
8123
  * <p>An analyzed segment for a real-time analysis session.</p>
@@ -8265,7 +8265,7 @@ export interface ListRealtimeContactAnalysisSegmentsV2Response {
8265
8265
  * <p>If there are additional results, this is the token for the next set of results.</p>
8266
8266
  * @public
8267
8267
  */
8268
- NextToken?: string;
8268
+ NextToken?: string | undefined;
8269
8269
  }
8270
8270
  /**
8271
8271
  * <p>Thrown for analyzed content when requested OutputType was not enabled for a given contact.
@@ -8276,7 +8276,7 @@ export interface ListRealtimeContactAnalysisSegmentsV2Response {
8276
8276
  export declare class OutputTypeNotFoundException extends __BaseException {
8277
8277
  readonly name: "OutputTypeNotFoundException";
8278
8278
  readonly $fault: "client";
8279
- Message?: string;
8279
+ Message?: string | undefined;
8280
8280
  /**
8281
8281
  * @internal
8282
8282
  */
@@ -8301,12 +8301,12 @@ export interface ListRoutingProfileQueuesRequest {
8301
8301
  * response in the next request to retrieve the next set of results.</p>
8302
8302
  * @public
8303
8303
  */
8304
- NextToken?: string;
8304
+ NextToken?: string | undefined;
8305
8305
  /**
8306
8306
  * <p>The maximum number of results to return per page. The default MaxResult size is 100.</p>
8307
8307
  * @public
8308
8308
  */
8309
- MaxResults?: number;
8309
+ MaxResults?: number | undefined;
8310
8310
  }
8311
8311
  /**
8312
8312
  * <p>Contains summary information about a routing profile queue.</p>
@@ -8356,22 +8356,22 @@ export interface ListRoutingProfileQueuesResponse {
8356
8356
  * <p>If there are additional results, this is the token for the next set of results.</p>
8357
8357
  * @public
8358
8358
  */
8359
- NextToken?: string;
8359
+ NextToken?: string | undefined;
8360
8360
  /**
8361
8361
  * <p>Information about the routing profiles.</p>
8362
8362
  * @public
8363
8363
  */
8364
- RoutingProfileQueueConfigSummaryList?: RoutingProfileQueueConfigSummary[];
8364
+ RoutingProfileQueueConfigSummaryList?: RoutingProfileQueueConfigSummary[] | undefined;
8365
8365
  /**
8366
8366
  * <p>The timestamp when this resource was last modified.</p>
8367
8367
  * @public
8368
8368
  */
8369
- LastModifiedTime?: Date;
8369
+ LastModifiedTime?: Date | undefined;
8370
8370
  /**
8371
8371
  * <p>The Amazon Web Services Region where this resource was last modified.</p>
8372
8372
  * @public
8373
8373
  */
8374
- LastModifiedRegion?: string;
8374
+ LastModifiedRegion?: string | undefined;
8375
8375
  }
8376
8376
  /**
8377
8377
  * @public
@@ -8387,12 +8387,12 @@ export interface ListRoutingProfilesRequest {
8387
8387
  * response in the next request to retrieve the next set of results.</p>
8388
8388
  * @public
8389
8389
  */
8390
- NextToken?: string;
8390
+ NextToken?: string | undefined;
8391
8391
  /**
8392
8392
  * <p>The maximum number of results to return per page. The default MaxResult size is 100.</p>
8393
8393
  * @public
8394
8394
  */
8395
- MaxResults?: number;
8395
+ MaxResults?: number | undefined;
8396
8396
  }
8397
8397
  /**
8398
8398
  * <p>Contains summary information about a routing profile.</p>
@@ -8403,27 +8403,27 @@ export interface RoutingProfileSummary {
8403
8403
  * <p>The identifier of the routing profile.</p>
8404
8404
  * @public
8405
8405
  */
8406
- Id?: string;
8406
+ Id?: string | undefined;
8407
8407
  /**
8408
8408
  * <p>The Amazon Resource Name (ARN) of the routing profile.</p>
8409
8409
  * @public
8410
8410
  */
8411
- Arn?: string;
8411
+ Arn?: string | undefined;
8412
8412
  /**
8413
8413
  * <p>The name of the routing profile.</p>
8414
8414
  * @public
8415
8415
  */
8416
- Name?: string;
8416
+ Name?: string | undefined;
8417
8417
  /**
8418
8418
  * <p>The timestamp when this resource was last modified.</p>
8419
8419
  * @public
8420
8420
  */
8421
- LastModifiedTime?: Date;
8421
+ LastModifiedTime?: Date | undefined;
8422
8422
  /**
8423
8423
  * <p>The Amazon Web Services Region where this resource was last modified.</p>
8424
8424
  * @public
8425
8425
  */
8426
- LastModifiedRegion?: string;
8426
+ LastModifiedRegion?: string | undefined;
8427
8427
  }
8428
8428
  /**
8429
8429
  * @public
@@ -8433,12 +8433,12 @@ export interface ListRoutingProfilesResponse {
8433
8433
  * <p>Information about the routing profiles.</p>
8434
8434
  * @public
8435
8435
  */
8436
- RoutingProfileSummaryList?: RoutingProfileSummary[];
8436
+ RoutingProfileSummaryList?: RoutingProfileSummary[] | undefined;
8437
8437
  /**
8438
8438
  * <p>If there are additional results, this is the token for the next set of results.</p>
8439
8439
  * @public
8440
8440
  */
8441
- NextToken?: string;
8441
+ NextToken?: string | undefined;
8442
8442
  }
8443
8443
  /**
8444
8444
  * @public
@@ -8453,23 +8453,23 @@ export interface ListRulesRequest {
8453
8453
  * <p>The publish status of the rule.</p>
8454
8454
  * @public
8455
8455
  */
8456
- PublishStatus?: RulePublishStatus;
8456
+ PublishStatus?: RulePublishStatus | undefined;
8457
8457
  /**
8458
8458
  * <p>The name of the event source.</p>
8459
8459
  * @public
8460
8460
  */
8461
- EventSourceName?: EventSourceName;
8461
+ EventSourceName?: EventSourceName | undefined;
8462
8462
  /**
8463
8463
  * <p>The maximum number of results to return per page.</p>
8464
8464
  * @public
8465
8465
  */
8466
- MaxResults?: number;
8466
+ MaxResults?: number | undefined;
8467
8467
  /**
8468
8468
  * <p>The token for the next set of results. Use the value returned in the previous
8469
8469
  * response in the next request to retrieve the next set of results.</p>
8470
8470
  * @public
8471
8471
  */
8472
- NextToken?: string;
8472
+ NextToken?: string | undefined;
8473
8473
  }
8474
8474
  /**
8475
8475
  * <p>A list of <code>ActionTypes</code> associated with a rule. </p>
@@ -8530,7 +8530,7 @@ export interface ListRulesResponse {
8530
8530
  * <p>If there are additional results, this is the token for the next set of results.</p>
8531
8531
  * @public
8532
8532
  */
8533
- NextToken?: string;
8533
+ NextToken?: string | undefined;
8534
8534
  }
8535
8535
  /**
8536
8536
  * @public
@@ -8546,12 +8546,12 @@ export interface ListSecurityKeysRequest {
8546
8546
  * response in the next request to retrieve the next set of results.</p>
8547
8547
  * @public
8548
8548
  */
8549
- NextToken?: string;
8549
+ NextToken?: string | undefined;
8550
8550
  /**
8551
8551
  * <p>The maximum number of results to return per page.</p>
8552
8552
  * @public
8553
8553
  */
8554
- MaxResults?: number;
8554
+ MaxResults?: number | undefined;
8555
8555
  }
8556
8556
  /**
8557
8557
  * <p>Configuration information of the security key.</p>
@@ -8562,17 +8562,17 @@ export interface SecurityKey {
8562
8562
  * <p>The existing association identifier that uniquely identifies the resource type and storage config for the given instance ID.</p>
8563
8563
  * @public
8564
8564
  */
8565
- AssociationId?: string;
8565
+ AssociationId?: string | undefined;
8566
8566
  /**
8567
8567
  * <p>The key of the security key.</p>
8568
8568
  * @public
8569
8569
  */
8570
- Key?: string;
8570
+ Key?: string | undefined;
8571
8571
  /**
8572
8572
  * <p>When the security key was created.</p>
8573
8573
  * @public
8574
8574
  */
8575
- CreationTime?: Date;
8575
+ CreationTime?: Date | undefined;
8576
8576
  }
8577
8577
  /**
8578
8578
  * @public
@@ -8582,12 +8582,12 @@ export interface ListSecurityKeysResponse {
8582
8582
  * <p>The security keys.</p>
8583
8583
  * @public
8584
8584
  */
8585
- SecurityKeys?: SecurityKey[];
8585
+ SecurityKeys?: SecurityKey[] | undefined;
8586
8586
  /**
8587
8587
  * <p>If there are additional results, this is the token for the next set of results.</p>
8588
8588
  * @public
8589
8589
  */
8590
- NextToken?: string;
8590
+ NextToken?: string | undefined;
8591
8591
  }
8592
8592
  /**
8593
8593
  * @public
@@ -8608,12 +8608,12 @@ export interface ListSecurityProfileApplicationsRequest {
8608
8608
  * response in the next request to retrieve the next set of results.</p>
8609
8609
  * @public
8610
8610
  */
8611
- NextToken?: string;
8611
+ NextToken?: string | undefined;
8612
8612
  /**
8613
8613
  * <p>The maximum number of results to return per page.</p>
8614
8614
  * @public
8615
8615
  */
8616
- MaxResults?: number;
8616
+ MaxResults?: number | undefined;
8617
8617
  }
8618
8618
  /**
8619
8619
  * @public
@@ -8623,22 +8623,22 @@ export interface ListSecurityProfileApplicationsResponse {
8623
8623
  * <p>A list of the third-party application's metadata.</p>
8624
8624
  * @public
8625
8625
  */
8626
- Applications?: Application[];
8626
+ Applications?: Application[] | undefined;
8627
8627
  /**
8628
8628
  * <p>If there are additional results, this is the token for the next set of results.</p>
8629
8629
  * @public
8630
8630
  */
8631
- NextToken?: string;
8631
+ NextToken?: string | undefined;
8632
8632
  /**
8633
8633
  * <p>The timestamp when this resource was last modified.</p>
8634
8634
  * @public
8635
8635
  */
8636
- LastModifiedTime?: Date;
8636
+ LastModifiedTime?: Date | undefined;
8637
8637
  /**
8638
8638
  * <p>The Amazon Web Services Region where this resource was last modified.</p>
8639
8639
  * @public
8640
8640
  */
8641
- LastModifiedRegion?: string;
8641
+ LastModifiedRegion?: string | undefined;
8642
8642
  }
8643
8643
  /**
8644
8644
  * @public
@@ -8659,12 +8659,12 @@ export interface ListSecurityProfilePermissionsRequest {
8659
8659
  * response in the next request to retrieve the next set of results.</p>
8660
8660
  * @public
8661
8661
  */
8662
- NextToken?: string;
8662
+ NextToken?: string | undefined;
8663
8663
  /**
8664
8664
  * <p>The maximum number of results to return per page.</p>
8665
8665
  * @public
8666
8666
  */
8667
- MaxResults?: number;
8667
+ MaxResults?: number | undefined;
8668
8668
  }
8669
8669
  /**
8670
8670
  * @public
@@ -8676,22 +8676,22 @@ export interface ListSecurityProfilePermissionsResponse {
8676
8676
  * of security profile permissions</a>.</p>
8677
8677
  * @public
8678
8678
  */
8679
- Permissions?: string[];
8679
+ Permissions?: string[] | undefined;
8680
8680
  /**
8681
8681
  * <p>If there are additional results, this is the token for the next set of results.</p>
8682
8682
  * @public
8683
8683
  */
8684
- NextToken?: string;
8684
+ NextToken?: string | undefined;
8685
8685
  /**
8686
8686
  * <p>The timestamp when this resource was last modified.</p>
8687
8687
  * @public
8688
8688
  */
8689
- LastModifiedTime?: Date;
8689
+ LastModifiedTime?: Date | undefined;
8690
8690
  /**
8691
8691
  * <p>The Amazon Web Services Region where this resource was last modified.</p>
8692
8692
  * @public
8693
8693
  */
8694
- LastModifiedRegion?: string;
8694
+ LastModifiedRegion?: string | undefined;
8695
8695
  }
8696
8696
  /**
8697
8697
  * @public
@@ -8707,12 +8707,12 @@ export interface ListSecurityProfilesRequest {
8707
8707
  * response in the next request to retrieve the next set of results.</p>
8708
8708
  * @public
8709
8709
  */
8710
- NextToken?: string;
8710
+ NextToken?: string | undefined;
8711
8711
  /**
8712
8712
  * <p>The maximum number of results to return per page. The default MaxResult size is 100.</p>
8713
8713
  * @public
8714
8714
  */
8715
- MaxResults?: number;
8715
+ MaxResults?: number | undefined;
8716
8716
  }
8717
8717
  /**
8718
8718
  * <p>Contains information about a security profile.</p>
@@ -8723,27 +8723,27 @@ export interface SecurityProfileSummary {
8723
8723
  * <p>The identifier of the security profile.</p>
8724
8724
  * @public
8725
8725
  */
8726
- Id?: string;
8726
+ Id?: string | undefined;
8727
8727
  /**
8728
8728
  * <p>The Amazon Resource Name (ARN) of the security profile.</p>
8729
8729
  * @public
8730
8730
  */
8731
- Arn?: string;
8731
+ Arn?: string | undefined;
8732
8732
  /**
8733
8733
  * <p>The name of the security profile.</p>
8734
8734
  * @public
8735
8735
  */
8736
- Name?: string;
8736
+ Name?: string | undefined;
8737
8737
  /**
8738
8738
  * <p>The timestamp when this resource was last modified.</p>
8739
8739
  * @public
8740
8740
  */
8741
- LastModifiedTime?: Date;
8741
+ LastModifiedTime?: Date | undefined;
8742
8742
  /**
8743
8743
  * <p>The Amazon Web Services Region where this resource was last modified.</p>
8744
8744
  * @public
8745
8745
  */
8746
- LastModifiedRegion?: string;
8746
+ LastModifiedRegion?: string | undefined;
8747
8747
  }
8748
8748
  /**
8749
8749
  * @public
@@ -8753,12 +8753,12 @@ export interface ListSecurityProfilesResponse {
8753
8753
  * <p>Information about the security profiles.</p>
8754
8754
  * @public
8755
8755
  */
8756
- SecurityProfileSummaryList?: SecurityProfileSummary[];
8756
+ SecurityProfileSummaryList?: SecurityProfileSummary[] | undefined;
8757
8757
  /**
8758
8758
  * <p>If there are additional results, this is the token for the next set of results.</p>
8759
8759
  * @public
8760
8760
  */
8761
- NextToken?: string;
8761
+ NextToken?: string | undefined;
8762
8762
  }
8763
8763
  /**
8764
8764
  * @public