@aws-sdk/client-connect 3.428.0 → 3.429.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.
@@ -42,12 +42,12 @@ export interface Vocabulary {
42
42
  * <a href="https://docs.aws.amazon.com/transcribe/latest/dg/transcribe-whatis.html">What is Amazon Transcribe?</a>
43
43
  * </p>
44
44
  */
45
- LanguageCode: VocabularyLanguageCode | string | undefined;
45
+ LanguageCode: VocabularyLanguageCode | undefined;
46
46
  /**
47
47
  * @public
48
48
  * <p>The current state of the custom vocabulary.</p>
49
49
  */
50
- State: VocabularyState | string | undefined;
50
+ State: VocabularyState | undefined;
51
51
  /**
52
52
  * @public
53
53
  * <p>The timestamp when the custom vocabulary was last modified.</p>
@@ -138,7 +138,7 @@ export interface DisassociateInstanceStorageConfigRequest {
138
138
  * @public
139
139
  * <p>A valid resource type.</p>
140
140
  */
141
- ResourceType: InstanceStorageResourceType | string | undefined;
141
+ ResourceType: InstanceStorageResourceType | undefined;
142
142
  }
143
143
  /**
144
144
  * @public
@@ -369,12 +369,12 @@ export interface CurrentMetric {
369
369
  * @public
370
370
  * <p>The name of the metric.</p>
371
371
  */
372
- Name?: CurrentMetricName | string;
372
+ Name?: CurrentMetricName;
373
373
  /**
374
374
  * @public
375
375
  * <p>The unit for the metric.</p>
376
376
  */
377
- Unit?: Unit | string;
377
+ Unit?: Unit;
378
378
  }
379
379
  /**
380
380
  * @public
@@ -392,7 +392,7 @@ export interface Filters {
392
392
  * @public
393
393
  * <p>The channel to use to filter the metrics.</p>
394
394
  */
395
- Channels?: (Channel | string)[];
395
+ Channels?: Channel[];
396
396
  /**
397
397
  * @public
398
398
  * <p>A list of up to 100 routing profile IDs or ARNs.</p>
@@ -435,12 +435,12 @@ export interface CurrentMetricSortCriteria {
435
435
  * @public
436
436
  * <p>The current metric names.</p>
437
437
  */
438
- SortByMetric?: CurrentMetricName | string;
438
+ SortByMetric?: CurrentMetricName;
439
439
  /**
440
440
  * @public
441
441
  * <p>The way to sort.</p>
442
442
  */
443
- SortOrder?: SortOrder | string;
443
+ SortOrder?: SortOrder;
444
444
  }
445
445
  /**
446
446
  * @public
@@ -493,7 +493,7 @@ export interface GetCurrentMetricDataRequest {
493
493
  * </li>
494
494
  * </ul>
495
495
  */
496
- Groupings?: (Grouping | string)[];
496
+ Groupings?: Grouping[];
497
497
  /**
498
498
  * @public
499
499
  * <p>The metrics to retrieve. Specify the name and unit for each metric. The following metrics
@@ -665,7 +665,7 @@ export interface Dimensions {
665
665
  * @public
666
666
  * <p>The channel used for grouping and filters.</p>
667
667
  */
668
- Channel?: Channel | string;
668
+ Channel?: Channel;
669
669
  /**
670
670
  * @public
671
671
  * <p>Information about the routing profile assigned to the user.</p>
@@ -725,7 +725,7 @@ export interface ContactFilter {
725
725
  * @public
726
726
  * <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>
727
727
  */
728
- ContactStates?: (ContactState | string)[];
728
+ ContactStates?: ContactState[];
729
729
  }
730
730
  /**
731
731
  * @public
@@ -901,20 +901,20 @@ export interface UserData {
901
901
  * <p>A map of available slots by channel. The key is a channel name. The value is an integer: the
902
902
  * available number of slots. </p>
903
903
  */
904
- AvailableSlotsByChannel?: Record<string, number>;
904
+ AvailableSlotsByChannel?: Record<Channel, number>;
905
905
  /**
906
906
  * @public
907
907
  * <p>A map of maximum slots by channel. The key is a channel name. The value is an integer: the
908
908
  * 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
909
909
  * <code>RoutingProfile</code> assigned to the agent. </p>
910
910
  */
911
- MaxSlotsByChannel?: Record<string, number>;
911
+ MaxSlotsByChannel?: Record<Channel, number>;
912
912
  /**
913
913
  * @public
914
914
  * <p> A map of active slots by channel. The key is a channel name. The value is an integer: the
915
915
  * number of active slots. </p>
916
916
  */
917
- ActiveSlotsByChannel?: Record<string, number>;
917
+ ActiveSlotsByChannel?: Record<Channel, number>;
918
918
  /**
919
919
  * @public
920
920
  * <p>A list of contact reference information.</p>
@@ -1088,7 +1088,7 @@ export interface Threshold {
1088
1088
  * @public
1089
1089
  * <p>The type of comparison. Only "less than" (LT) comparisons are supported.</p>
1090
1090
  */
1091
- Comparison?: Comparison | string;
1091
+ Comparison?: Comparison;
1092
1092
  /**
1093
1093
  * @public
1094
1094
  * <p>The threshold value to compare.</p>
@@ -1105,7 +1105,7 @@ export interface HistoricalMetric {
1105
1105
  * @public
1106
1106
  * <p>The name of the metric.</p>
1107
1107
  */
1108
- Name?: HistoricalMetricName | string;
1108
+ Name?: HistoricalMetricName;
1109
1109
  /**
1110
1110
  * @public
1111
1111
  * <p>The threshold for the metric, used with service level metrics.</p>
@@ -1115,12 +1115,12 @@ export interface HistoricalMetric {
1115
1115
  * @public
1116
1116
  * <p>The statistic for the metric.</p>
1117
1117
  */
1118
- Statistic?: Statistic | string;
1118
+ Statistic?: Statistic;
1119
1119
  /**
1120
1120
  * @public
1121
1121
  * <p>The unit for the metric.</p>
1122
1122
  */
1123
- Unit?: Unit | string;
1123
+ Unit?: Unit;
1124
1124
  }
1125
1125
  /**
1126
1126
  * @public
@@ -1166,7 +1166,7 @@ export interface GetMetricDataRequest {
1166
1166
  * each queue rather than aggregated for all queues.</p>
1167
1167
  * <p>If no grouping is specified, a summary of metrics for all queues is returned.</p>
1168
1168
  */
1169
- Groupings?: (Grouping | string)[];
1169
+ Groupings?: Grouping[];
1170
1170
  /**
1171
1171
  * @public
1172
1172
  * <p>The metrics to retrieve. Specify the name, unit, and statistic for each metric. The
@@ -1464,7 +1464,7 @@ export interface IntervalDetails {
1464
1464
  * </li>
1465
1465
  * </ul>
1466
1466
  */
1467
- IntervalPeriod?: IntervalPeriod | string;
1467
+ IntervalPeriod?: IntervalPeriod;
1468
1468
  }
1469
1469
  /**
1470
1470
  * @public
@@ -2025,7 +2025,7 @@ export interface MetricInterval {
2025
2025
  * @public
2026
2026
  * <p>The interval period provided in the API request. </p>
2027
2027
  */
2028
- Interval?: IntervalPeriod | string;
2028
+ Interval?: IntervalPeriod;
2029
2029
  /**
2030
2030
  * @public
2031
2031
  * <p>The timestamp, in UNIX Epoch time format. Start time is based on the interval period
@@ -2181,7 +2181,7 @@ export interface GetTaskTemplateResponse {
2181
2181
  * Tasks can only be created from <code>ACTIVE</code> templates.
2182
2182
  * If a template is marked as <code>INACTIVE</code>, then a task that refers to this template cannot be created.</p>
2183
2183
  */
2184
- Status?: TaskTemplateStatus | string;
2184
+ Status?: TaskTemplateStatus;
2185
2185
  /**
2186
2186
  * @public
2187
2187
  * <p>The timestamp when the task template was last modified.</p>
@@ -2302,7 +2302,7 @@ export interface ListAgentStatusRequest {
2302
2302
  * @public
2303
2303
  * <p>Available agent status types.</p>
2304
2304
  */
2305
- AgentStatusTypes?: (AgentStatusType | string)[];
2305
+ AgentStatusTypes?: AgentStatusType[];
2306
2306
  }
2307
2307
  /**
2308
2308
  * @public
@@ -2391,7 +2391,7 @@ export interface ListBotsRequest {
2391
2391
  * @public
2392
2392
  * <p>The version of Amazon Lex or Amazon Lex V2.</p>
2393
2393
  */
2394
- LexVersion: LexVersion | string | undefined;
2394
+ LexVersion: LexVersion | undefined;
2395
2395
  }
2396
2396
  /**
2397
2397
  * @public
@@ -2479,7 +2479,7 @@ export interface EvaluationSummary {
2479
2479
  * @public
2480
2480
  * <p>The status of the contact evaluation.</p>
2481
2481
  */
2482
- Status: EvaluationStatus | string | undefined;
2482
+ Status: EvaluationStatus | undefined;
2483
2483
  /**
2484
2484
  * @public
2485
2485
  * <p>The Amazon Resource Name (ARN) of the user who last updated the evaluation.</p>
@@ -2543,7 +2543,7 @@ export interface ListContactFlowModulesRequest {
2543
2543
  * @public
2544
2544
  * <p>The state of the flow module.</p>
2545
2545
  */
2546
- ContactFlowModuleState?: ContactFlowModuleState | string;
2546
+ ContactFlowModuleState?: ContactFlowModuleState;
2547
2547
  }
2548
2548
  /**
2549
2549
  * @public
@@ -2569,7 +2569,7 @@ export interface ContactFlowModuleSummary {
2569
2569
  * @public
2570
2570
  * <p>The type of flow module.</p>
2571
2571
  */
2572
- State?: ContactFlowModuleState | string;
2572
+ State?: ContactFlowModuleState;
2573
2573
  }
2574
2574
  /**
2575
2575
  * @public
@@ -2599,7 +2599,7 @@ export interface ListContactFlowsRequest {
2599
2599
  * @public
2600
2600
  * <p>The type of flow.</p>
2601
2601
  */
2602
- ContactFlowTypes?: (ContactFlowType | string)[];
2602
+ ContactFlowTypes?: ContactFlowType[];
2603
2603
  /**
2604
2604
  * @public
2605
2605
  * <p>The token for the next set of results. Use the value returned in the previous
@@ -2638,12 +2638,12 @@ export interface ContactFlowSummary {
2638
2638
  * @public
2639
2639
  * <p>The type of flow.</p>
2640
2640
  */
2641
- ContactFlowType?: ContactFlowType | string;
2641
+ ContactFlowType?: ContactFlowType;
2642
2642
  /**
2643
2643
  * @public
2644
2644
  * <p>The type of flow.</p>
2645
2645
  */
2646
- ContactFlowState?: ContactFlowState | string;
2646
+ ContactFlowState?: ContactFlowState;
2647
2647
  }
2648
2648
  /**
2649
2649
  * @public
@@ -2678,7 +2678,7 @@ export interface ListContactReferencesRequest {
2678
2678
  * @public
2679
2679
  * <p>The type of reference.</p>
2680
2680
  */
2681
- ReferenceTypes: (ReferenceType | string)[] | undefined;
2681
+ ReferenceTypes: ReferenceType[] | undefined;
2682
2682
  /**
2683
2683
  * @public
2684
2684
  * <p>The token for the next set of results. Use the value returned in the previous
@@ -2722,7 +2722,7 @@ export interface AttachmentReference {
2722
2722
  * @public
2723
2723
  * <p>Status of the attachment reference type.</p>
2724
2724
  */
2725
- Status?: ReferenceStatus | string;
2725
+ Status?: ReferenceStatus;
2726
2726
  }
2727
2727
  /**
2728
2728
  * @public
@@ -2958,7 +2958,7 @@ export interface ListDefaultVocabulariesRequest {
2958
2958
  * <a href="https://docs.aws.amazon.com/transcribe/latest/dg/transcribe-whatis.html">What is Amazon Transcribe?</a>
2959
2959
  * </p>
2960
2960
  */
2961
- LanguageCode?: VocabularyLanguageCode | string;
2961
+ LanguageCode?: VocabularyLanguageCode;
2962
2962
  /**
2963
2963
  * @public
2964
2964
  * <p>The maximum number of results to return per page.</p>
@@ -2987,7 +2987,7 @@ export interface DefaultVocabulary {
2987
2987
  * <a href="https://docs.aws.amazon.com/transcribe/latest/dg/transcribe-whatis.html">What is Amazon Transcribe?</a>
2988
2988
  * </p>
2989
2989
  */
2990
- LanguageCode: VocabularyLanguageCode | string | undefined;
2990
+ LanguageCode: VocabularyLanguageCode | undefined;
2991
2991
  /**
2992
2992
  * @public
2993
2993
  * <p>The identifier of the custom vocabulary.</p>
@@ -3166,7 +3166,7 @@ export interface EvaluationFormVersionSummary {
3166
3166
  * @public
3167
3167
  * <p>The status of the evaluation form.</p>
3168
3168
  */
3169
- Status: EvaluationFormVersionStatus | string | undefined;
3169
+ Status: EvaluationFormVersionStatus | undefined;
3170
3170
  /**
3171
3171
  * @public
3172
3172
  * <p>The timestamp for when the evaluation form was created.</p>
@@ -3331,7 +3331,7 @@ export interface InstanceSummary {
3331
3331
  * @public
3332
3332
  * <p>The identity management type of the instance.</p>
3333
3333
  */
3334
- IdentityManagementType?: DirectoryType | string;
3334
+ IdentityManagementType?: DirectoryType;
3335
3335
  /**
3336
3336
  * @public
3337
3337
  * <p>The alias of the instance.</p>
@@ -3351,7 +3351,7 @@ export interface InstanceSummary {
3351
3351
  * @public
3352
3352
  * <p>The state of the instance.</p>
3353
3353
  */
3354
- InstanceStatus?: InstanceStatus | string;
3354
+ InstanceStatus?: InstanceStatus;
3355
3355
  /**
3356
3356
  * @public
3357
3357
  * <p>Whether inbound calls are enabled.</p>
@@ -3396,7 +3396,7 @@ export interface ListInstanceStorageConfigsRequest {
3396
3396
  * @public
3397
3397
  * <p>A valid resource type.</p>
3398
3398
  */
3399
- ResourceType: InstanceStorageResourceType | string | undefined;
3399
+ ResourceType: InstanceStorageResourceType | undefined;
3400
3400
  /**
3401
3401
  * @public
3402
3402
  * <p>The token for the next set of results. Use the value returned in the previous
@@ -3437,7 +3437,7 @@ export interface ListIntegrationAssociationsRequest {
3437
3437
  * @public
3438
3438
  * <p>The integration type.</p>
3439
3439
  */
3440
- IntegrationType?: IntegrationType | string;
3440
+ IntegrationType?: IntegrationType;
3441
3441
  /**
3442
3442
  * @public
3443
3443
  * <p>The token for the next set of results. Use the value returned in the previous
@@ -3474,7 +3474,7 @@ export interface IntegrationAssociationSummary {
3474
3474
  * @public
3475
3475
  * <p>The integration type.</p>
3476
3476
  */
3477
- IntegrationType?: IntegrationType | string;
3477
+ IntegrationType?: IntegrationType;
3478
3478
  /**
3479
3479
  * @public
3480
3480
  * <p>The Amazon Resource Name (ARN) for the AppIntegration.</p>
@@ -3494,7 +3494,7 @@ export interface IntegrationAssociationSummary {
3494
3494
  * @public
3495
3495
  * <p>The name of the source.</p>
3496
3496
  */
3497
- SourceType?: SourceType | string;
3497
+ SourceType?: SourceType;
3498
3498
  }
3499
3499
  /**
3500
3500
  * @public
@@ -3604,12 +3604,12 @@ export interface ListPhoneNumbersRequest {
3604
3604
  * incorrectly lists them as <code>TOLL_FREE</code> or <code>DID</code>. </p>
3605
3605
  * </note>
3606
3606
  */
3607
- PhoneNumberTypes?: (PhoneNumberType | string)[];
3607
+ PhoneNumberTypes?: PhoneNumberType[];
3608
3608
  /**
3609
3609
  * @public
3610
3610
  * <p>The ISO country code.</p>
3611
3611
  */
3612
- PhoneNumberCountryCodes?: (PhoneNumberCountryCode | string)[];
3612
+ PhoneNumberCountryCodes?: PhoneNumberCountryCode[];
3613
3613
  /**
3614
3614
  * @public
3615
3615
  * <p>The token for the next set of results. Use the value returned in the previous
@@ -3646,12 +3646,12 @@ export interface PhoneNumberSummary {
3646
3646
  * @public
3647
3647
  * <p>The type of phone number.</p>
3648
3648
  */
3649
- PhoneNumberType?: PhoneNumberType | string;
3649
+ PhoneNumberType?: PhoneNumberType;
3650
3650
  /**
3651
3651
  * @public
3652
3652
  * <p>The ISO country code.</p>
3653
3653
  */
3654
- PhoneNumberCountryCode?: PhoneNumberCountryCode | string;
3654
+ PhoneNumberCountryCode?: PhoneNumberCountryCode;
3655
3655
  }
3656
3656
  /**
3657
3657
  * @public
@@ -3693,12 +3693,12 @@ export interface ListPhoneNumbersV2Request {
3693
3693
  * @public
3694
3694
  * <p>The ISO country code.</p>
3695
3695
  */
3696
- PhoneNumberCountryCodes?: (PhoneNumberCountryCode | string)[];
3696
+ PhoneNumberCountryCodes?: PhoneNumberCountryCode[];
3697
3697
  /**
3698
3698
  * @public
3699
3699
  * <p>The type of phone number.</p>
3700
3700
  */
3701
- PhoneNumberTypes?: (PhoneNumberType | string)[];
3701
+ PhoneNumberTypes?: PhoneNumberType[];
3702
3702
  /**
3703
3703
  * @public
3704
3704
  * <p>The prefix of the phone number. If provided, it must contain <code>+</code> as part of the country code.</p>
@@ -3730,12 +3730,12 @@ export interface ListPhoneNumbersSummary {
3730
3730
  * @public
3731
3731
  * <p>The ISO country code.</p>
3732
3732
  */
3733
- PhoneNumberCountryCode?: PhoneNumberCountryCode | string;
3733
+ PhoneNumberCountryCode?: PhoneNumberCountryCode;
3734
3734
  /**
3735
3735
  * @public
3736
3736
  * <p>The type of phone number.</p>
3737
3737
  */
3738
- PhoneNumberType?: PhoneNumberType | string;
3738
+ PhoneNumberType?: PhoneNumberType;
3739
3739
  /**
3740
3740
  * @public
3741
3741
  * <p>The Amazon Resource Name (ARN) for Amazon Connect instances or traffic distribution groups that phone numbers are claimed to.</p>
@@ -3866,7 +3866,7 @@ export interface QuickConnectSummary {
3866
3866
  * <p>The type of quick connect. In the Amazon Connect console, when you create a quick connect, you are
3867
3867
  * prompted to assign one of the following types: Agent (USER), External (PHONE_NUMBER), or Queue (QUEUE).</p>
3868
3868
  */
3869
- QuickConnectType?: QuickConnectType | string;
3869
+ QuickConnectType?: QuickConnectType;
3870
3870
  }
3871
3871
  /**
3872
3872
  * @public
@@ -3908,7 +3908,7 @@ export interface ListQueuesRequest {
3908
3908
  * @public
3909
3909
  * <p>The type of queue.</p>
3910
3910
  */
3911
- QueueTypes?: (QueueType | string)[];
3911
+ QueueTypes?: QueueType[];
3912
3912
  /**
3913
3913
  * @public
3914
3914
  * <p>The token for the next set of results. Use the value returned in the previous
@@ -3945,7 +3945,7 @@ export interface QueueSummary {
3945
3945
  * @public
3946
3946
  * <p>The type of queue.</p>
3947
3947
  */
3948
- QueueType?: QueueType | string;
3948
+ QueueType?: QueueType;
3949
3949
  }
3950
3950
  /**
3951
3951
  * @public
@@ -3987,7 +3987,7 @@ export interface ListQuickConnectsRequest {
3987
3987
  * <p>The type of quick connect. In the Amazon Connect console, when you create a quick connect, you are
3988
3988
  * prompted to assign one of the following types: Agent (USER), External (PHONE_NUMBER), or Queue (QUEUE).</p>
3989
3989
  */
3990
- QuickConnectTypes?: (QuickConnectType | string)[];
3990
+ QuickConnectTypes?: QuickConnectType[];
3991
3991
  }
3992
3992
  /**
3993
3993
  * @public
@@ -4068,7 +4068,7 @@ export interface RoutingProfileQueueConfigSummary {
4068
4068
  * @public
4069
4069
  * <p>The channels this queue supports.</p>
4070
4070
  */
4071
- Channel: Channel | string | undefined;
4071
+ Channel: Channel | undefined;
4072
4072
  }
4073
4073
  /**
4074
4074
  * @public
@@ -4155,12 +4155,12 @@ export interface ListRulesRequest {
4155
4155
  * @public
4156
4156
  * <p>The publish status of the rule.</p>
4157
4157
  */
4158
- PublishStatus?: RulePublishStatus | string;
4158
+ PublishStatus?: RulePublishStatus;
4159
4159
  /**
4160
4160
  * @public
4161
4161
  * <p>The name of the event source.</p>
4162
4162
  */
4163
- EventSourceName?: EventSourceName | string;
4163
+ EventSourceName?: EventSourceName;
4164
4164
  /**
4165
4165
  * @public
4166
4166
  * <p>The maximum number of results to return per page.</p>
@@ -4197,12 +4197,12 @@ export interface RuleSummary {
4197
4197
  * @public
4198
4198
  * <p>The name of the event source.</p>
4199
4199
  */
4200
- EventSourceName: EventSourceName | string | undefined;
4200
+ EventSourceName: EventSourceName | undefined;
4201
4201
  /**
4202
4202
  * @public
4203
4203
  * <p>The publish status of the rule.</p>
4204
4204
  */
4205
- PublishStatus: RulePublishStatus | string | undefined;
4205
+ PublishStatus: RulePublishStatus | undefined;
4206
4206
  /**
4207
4207
  * @public
4208
4208
  * <p>A list of ActionTypes associated with a rule. </p>
@@ -4488,7 +4488,7 @@ export interface ListTaskTemplatesRequest {
4488
4488
  * Tasks can only be created from <code>ACTIVE</code> templates.
4489
4489
  * If a template is marked as <code>INACTIVE</code>, then a task that refers to this template cannot be created.</p>
4490
4490
  */
4491
- Status?: TaskTemplateStatus | string;
4491
+ Status?: TaskTemplateStatus;
4492
4492
  /**
4493
4493
  * @public
4494
4494
  * <p>The name of the task template.</p>
@@ -4526,7 +4526,7 @@ export interface TaskTemplateMetadata {
4526
4526
  * Tasks can only be created from <code>ACTIVE</code> templates.
4527
4527
  * If a template is marked as <code>INACTIVE</code>, then a task that refers to this template cannot be created.</p>
4528
4528
  */
4529
- Status?: TaskTemplateStatus | string;
4529
+ Status?: TaskTemplateStatus;
4530
4530
  /**
4531
4531
  * @public
4532
4532
  * <p>The timestamp when the task template was last modified.</p>
@@ -4637,7 +4637,7 @@ export interface TrafficDistributionGroupSummary {
4637
4637
  * </li>
4638
4638
  * </ul>
4639
4639
  */
4640
- Status?: TrafficDistributionGroupStatus | string;
4640
+ Status?: TrafficDistributionGroupStatus;
4641
4641
  /**
4642
4642
  * @public
4643
4643
  * <p>Whether this is the default traffic distribution group created during instance
@@ -4761,7 +4761,7 @@ export interface UseCase {
4761
4761
  * <p>The type of use case to associate to the integration association. Each integration
4762
4762
  * association can have only one of each use case type.</p>
4763
4763
  */
4764
- UseCaseType?: UseCaseType | string;
4764
+ UseCaseType?: UseCaseType;
4765
4765
  }
4766
4766
  /**
4767
4767
  * @public
@@ -4885,7 +4885,7 @@ export interface ListViewsRequest {
4885
4885
  * @public
4886
4886
  * <p>The type of the view.</p>
4887
4887
  */
4888
- Type?: ViewType | string;
4888
+ Type?: ViewType;
4889
4889
  /**
4890
4890
  * @public
4891
4891
  * <p>The token for the next set of results. Use the value returned in the previous response in
@@ -4922,13 +4922,13 @@ export interface ViewSummary {
4922
4922
  * @public
4923
4923
  * <p>The type of the view.</p>
4924
4924
  */
4925
- Type?: ViewType | string;
4925
+ Type?: ViewType;
4926
4926
  /**
4927
4927
  * @public
4928
4928
  * <p>Indicates the view status as either <code>SAVED</code> or <code>PUBLISHED</code>. The
4929
4929
  * <code>PUBLISHED</code> status will initiate validation on the content.</p>
4930
4930
  */
4931
- Status?: ViewStatus | string;
4931
+ Status?: ViewStatus;
4932
4932
  /**
4933
4933
  * @public
4934
4934
  * <p>The description of the view.</p>
@@ -5008,7 +5008,7 @@ export interface ViewVersionSummary {
5008
5008
  * @public
5009
5009
  * <p>The type of the view version.</p>
5010
5010
  */
5011
- Type?: ViewType | string;
5011
+ Type?: ViewType;
5012
5012
  /**
5013
5013
  * @public
5014
5014
  * <p>The sequentially incremented version of the view version.</p>
@@ -5061,7 +5061,7 @@ export interface MonitorContactRequest {
5061
5061
  * <p>Specify which monitoring actions the user is allowed to take. For example, whether the user
5062
5062
  * is allowed to escalate from silent monitoring to barge.</p>
5063
5063
  */
5064
- AllowedMonitorCapabilities?: (MonitorCapability | string)[];
5064
+ AllowedMonitorCapabilities?: MonitorCapability[];
5065
5065
  /**
5066
5066
  * @public
5067
5067
  * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
@@ -5213,12 +5213,12 @@ export interface SearchAvailablePhoneNumbersRequest {
5213
5213
  * @public
5214
5214
  * <p>The ISO country code.</p>
5215
5215
  */
5216
- PhoneNumberCountryCode: PhoneNumberCountryCode | string | undefined;
5216
+ PhoneNumberCountryCode: PhoneNumberCountryCode | undefined;
5217
5217
  /**
5218
5218
  * @public
5219
5219
  * <p>The type of phone number.</p>
5220
5220
  */
5221
- PhoneNumberType: PhoneNumberType | string | undefined;
5221
+ PhoneNumberType: PhoneNumberType | undefined;
5222
5222
  /**
5223
5223
  * @public
5224
5224
  * <p>The prefix of the phone number. If provided, it must contain <code>+</code> as part of the country code.</p>
@@ -5250,12 +5250,12 @@ export interface AvailableNumberSummary {
5250
5250
  * @public
5251
5251
  * <p>The ISO country code.</p>
5252
5252
  */
5253
- PhoneNumberCountryCode?: PhoneNumberCountryCode | string;
5253
+ PhoneNumberCountryCode?: PhoneNumberCountryCode;
5254
5254
  /**
5255
5255
  * @public
5256
5256
  * <p>The type of phone number.</p>
5257
5257
  */
5258
- PhoneNumberType?: PhoneNumberType | string;
5258
+ PhoneNumberType?: PhoneNumberType;
5259
5259
  }
5260
5260
  /**
5261
5261
  * @public
@@ -5304,7 +5304,7 @@ export interface StringCondition {
5304
5304
  * @public
5305
5305
  * <p>The type of comparison to be made when evaluating the string condition.</p>
5306
5306
  */
5307
- ComparisonType?: StringComparisonType | string;
5307
+ ComparisonType?: StringComparisonType;
5308
5308
  }
5309
5309
  /**
5310
5310
  * @public
@@ -5570,13 +5570,13 @@ export interface TagSearchCondition {
5570
5570
  * <p>The type of comparison to be made when evaluating the tag key in tag search
5571
5571
  * condition.</p>
5572
5572
  */
5573
- tagKeyComparisonType?: StringComparisonType | string;
5573
+ tagKeyComparisonType?: StringComparisonType;
5574
5574
  /**
5575
5575
  * @public
5576
5576
  * <p>The type of comparison to be made when evaluating the tag value in tag search
5577
5577
  * condition.</p>
5578
5578
  */
5579
- tagValueComparisonType?: StringComparisonType | string;
5579
+ tagValueComparisonType?: StringComparisonType;
5580
5580
  }
5581
5581
  /**
5582
5582
  * @public
@@ -5799,7 +5799,7 @@ export interface HierarchyGroupCondition {
5799
5799
  * @public
5800
5800
  * <p>The type of hierarchy group match.</p>
5801
5801
  */
5802
- HierarchyGroupMatchType?: HierarchyGroupMatchType | string;
5802
+ HierarchyGroupMatchType?: HierarchyGroupMatchType;
5803
5803
  }
5804
5804
  /**
5805
5805
  * @public
@@ -5939,7 +5939,7 @@ export interface SearchVocabulariesRequest {
5939
5939
  * @public
5940
5940
  * <p>The current state of the custom vocabulary.</p>
5941
5941
  */
5942
- State?: VocabularyState | string;
5942
+ State?: VocabularyState;
5943
5943
  /**
5944
5944
  * @public
5945
5945
  * <p>The starting pattern of the name of the vocabulary.</p>
@@ -5951,7 +5951,7 @@ export interface SearchVocabulariesRequest {
5951
5951
  * <a href="https://docs.aws.amazon.com/transcribe/latest/dg/transcribe-whatis.html">What is Amazon Transcribe?</a>
5952
5952
  * </p>
5953
5953
  */
5954
- LanguageCode?: VocabularyLanguageCode | string;
5954
+ LanguageCode?: VocabularyLanguageCode;
5955
5955
  }
5956
5956
  /**
5957
5957
  * @public
@@ -5979,12 +5979,12 @@ export interface VocabularySummary {
5979
5979
  * <a href="https://docs.aws.amazon.com/transcribe/latest/dg/transcribe-whatis.html">What is Amazon Transcribe?</a>
5980
5980
  * </p>
5981
5981
  */
5982
- LanguageCode: VocabularyLanguageCode | string | undefined;
5982
+ LanguageCode: VocabularyLanguageCode | undefined;
5983
5983
  /**
5984
5984
  * @public
5985
5985
  * <p>The current state of the custom vocabulary.</p>
5986
5986
  */
5987
- State: VocabularyState | string | undefined;
5987
+ State: VocabularyState | undefined;
5988
5988
  /**
5989
5989
  * @public
5990
5990
  * <p>The timestamp when the custom vocabulary was last modified.</p>
@@ -6094,7 +6094,7 @@ export interface PersistentChat {
6094
6094
  * </ul>
6095
6095
  * <p>The actual contactId used for rehydration is provided in the response of this API. </p>
6096
6096
  */
6097
- RehydrationType?: RehydrationType | string;
6097
+ RehydrationType?: RehydrationType;
6098
6098
  /**
6099
6099
  * @public
6100
6100
  * <p>The contactId from which a persistent chat session must be started.</p>
@@ -6282,7 +6282,7 @@ export interface VoiceRecordingConfiguration {
6282
6282
  * @public
6283
6283
  * <p>Identifies which track is being recorded.</p>
6284
6284
  */
6285
- VoiceRecordingTrack?: VoiceRecordingTrack | string;
6285
+ VoiceRecordingTrack?: VoiceRecordingTrack;
6286
6286
  }
6287
6287
  /**
6288
6288
  * @public
@@ -6503,7 +6503,7 @@ export interface StartOutboundVoiceContactRequest {
6503
6503
  * <code>EnableAnswerMachineDetection</code> is set to <code>true</code>. For all other cases, use
6504
6504
  * <code>GENERAL</code>. </p>
6505
6505
  */
6506
- TrafficType?: TrafficType | string;
6506
+ TrafficType?: TrafficType;
6507
6507
  }
6508
6508
  /**
6509
6509
  * @public
@@ -6878,7 +6878,7 @@ export interface UpdateAgentStatusRequest {
6878
6878
  * @public
6879
6879
  * <p>The state of the agent status.</p>
6880
6880
  */
6881
- State?: AgentStatusState | string;
6881
+ State?: AgentStatusState;
6882
6882
  /**
6883
6883
  * @public
6884
6884
  * <p>The display order of the agent status.</p>
@@ -7050,7 +7050,7 @@ export interface UpdateContactFlowMetadataRequest {
7050
7050
  * @public
7051
7051
  * <p>The state of flow.</p>
7052
7052
  */
7053
- ContactFlowState?: ContactFlowState | string;
7053
+ ContactFlowState?: ContactFlowState;
7054
7054
  }
7055
7055
  /**
7056
7056
  * @public
@@ -7111,7 +7111,7 @@ export interface UpdateContactFlowModuleMetadataRequest {
7111
7111
  * @public
7112
7112
  * <p>The state of flow module.</p>
7113
7113
  */
7114
- State?: ContactFlowModuleState | string;
7114
+ State?: ContactFlowModuleState;
7115
7115
  }
7116
7116
  /**
7117
7117
  * @public
@@ -7245,7 +7245,7 @@ export interface UpdateInstanceAttributeRequest {
7245
7245
  * contact Amazon Web Services Support for allowlisting.</p>
7246
7246
  * </note>
7247
7247
  */
7248
- AttributeType: InstanceAttributeType | string | undefined;
7248
+ AttributeType: InstanceAttributeType | undefined;
7249
7249
  /**
7250
7250
  * @public
7251
7251
  * <p>The value for the attribute. Maximum character limit is 100. </p>
@@ -7270,7 +7270,7 @@ export interface UpdateInstanceStorageConfigRequest {
7270
7270
  * @public
7271
7271
  * <p>A valid resource type.</p>
7272
7272
  */
7273
- ResourceType: InstanceStorageResourceType | string | undefined;
7273
+ ResourceType: InstanceStorageResourceType | undefined;
7274
7274
  /**
7275
7275
  * @public
7276
7276
  * <p>The storage configuration for the instance.</p>
@@ -7330,7 +7330,7 @@ export declare namespace ParticipantTimerValue {
7330
7330
  * timer.</p>
7331
7331
  */
7332
7332
  interface ParticipantTimerActionMember {
7333
- ParticipantTimerAction: ParticipantTimerAction | string;
7333
+ ParticipantTimerAction: ParticipantTimerAction;
7334
7334
  ParticipantTimerDurationInMinutes?: never;
7335
7335
  $unknown?: never;
7336
7336
  }
@@ -7352,7 +7352,7 @@ export declare namespace ParticipantTimerValue {
7352
7352
  $unknown: [string, any];
7353
7353
  }
7354
7354
  interface Visitor<T> {
7355
- ParticipantTimerAction: (value: ParticipantTimerAction | string) => T;
7355
+ ParticipantTimerAction: (value: ParticipantTimerAction) => T;
7356
7356
  ParticipantTimerDurationInMinutes: (value: number) => T;
7357
7357
  _: (name: string, value: any) => T;
7358
7358
  }
@@ -7371,14 +7371,14 @@ export interface ParticipantTimerConfiguration {
7371
7371
  * @public
7372
7372
  * <p>The role of the participant in the chat conversation.</p>
7373
7373
  */
7374
- ParticipantRole: TimerEligibleParticipantRoles | string | undefined;
7374
+ ParticipantRole: TimerEligibleParticipantRoles | undefined;
7375
7375
  /**
7376
7376
  * @public
7377
7377
  * <p>The type of timer. <code>IDLE</code> indicates the timer applies for considering a human
7378
7378
  * chat participant as idle. <code>DISCONNECT_NONCUSTOMER</code> indicates the timer applies to
7379
7379
  * automatically disconnecting a chat participant due to idleness.</p>
7380
7380
  */
7381
- TimerType: ParticipantTimerType | string | undefined;
7381
+ TimerType: ParticipantTimerType | undefined;
7382
7382
  /**
7383
7383
  * @public
7384
7384
  * <p>The value of the timer. Either the timer action (Unset to delete the timer), or the duration