@aws-sdk/client-connect 3.427.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.
@@ -67,8 +67,8 @@ export interface Vocabulary {
67
67
  Name: string | undefined;
68
68
  Id: string | undefined;
69
69
  Arn: string | undefined;
70
- LanguageCode: VocabularyLanguageCode | string | undefined;
71
- State: VocabularyState | string | undefined;
70
+ LanguageCode: VocabularyLanguageCode | undefined;
71
+ State: VocabularyState | undefined;
72
72
  LastModifiedTime: Date | undefined;
73
73
  FailureReason?: string;
74
74
  Content?: string;
@@ -89,7 +89,7 @@ export interface DisassociateBotRequest {
89
89
  export interface DisassociateInstanceStorageConfigRequest {
90
90
  InstanceId: string | undefined;
91
91
  AssociationId: string | undefined;
92
- ResourceType: InstanceStorageResourceType | string | undefined;
92
+ ResourceType: InstanceStorageResourceType | undefined;
93
93
  }
94
94
  export interface DisassociateLambdaFunctionRequest {
95
95
  InstanceId: string | undefined;
@@ -161,12 +161,12 @@ export declare const Unit: {
161
161
  };
162
162
  export type Unit = (typeof Unit)[keyof typeof Unit];
163
163
  export interface CurrentMetric {
164
- Name?: CurrentMetricName | string;
165
- Unit?: Unit | string;
164
+ Name?: CurrentMetricName;
165
+ Unit?: Unit;
166
166
  }
167
167
  export interface Filters {
168
168
  Queues?: string[];
169
- Channels?: (Channel | string)[];
169
+ Channels?: Channel[];
170
170
  RoutingProfiles?: string[];
171
171
  }
172
172
  export declare const Grouping: {
@@ -181,13 +181,13 @@ export declare const SortOrder: {
181
181
  };
182
182
  export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
183
183
  export interface CurrentMetricSortCriteria {
184
- SortByMetric?: CurrentMetricName | string;
185
- SortOrder?: SortOrder | string;
184
+ SortByMetric?: CurrentMetricName;
185
+ SortOrder?: SortOrder;
186
186
  }
187
187
  export interface GetCurrentMetricDataRequest {
188
188
  InstanceId: string | undefined;
189
189
  Filters: Filters | undefined;
190
- Groupings?: (Grouping | string)[];
190
+ Groupings?: Grouping[];
191
191
  CurrentMetrics: CurrentMetric[] | undefined;
192
192
  NextToken?: string;
193
193
  MaxResults?: number;
@@ -203,7 +203,7 @@ export interface RoutingProfileReference {
203
203
  }
204
204
  export interface Dimensions {
205
205
  Queue?: QueueReference;
206
- Channel?: Channel | string;
206
+ Channel?: Channel;
207
207
  RoutingProfile?: RoutingProfileReference;
208
208
  }
209
209
  export interface CurrentMetricResult {
@@ -217,7 +217,7 @@ export interface GetCurrentMetricDataResponse {
217
217
  ApproximateTotalCount?: number;
218
218
  }
219
219
  export interface ContactFilter {
220
- ContactStates?: (ContactState | string)[];
220
+ ContactStates?: ContactState[];
221
221
  }
222
222
  export interface UserDataFilters {
223
223
  Queues?: string[];
@@ -252,9 +252,9 @@ export interface UserData {
252
252
  RoutingProfile?: RoutingProfileReference;
253
253
  HierarchyPath?: HierarchyPathReference;
254
254
  Status?: AgentStatusReference;
255
- AvailableSlotsByChannel?: Record<string, number>;
256
- MaxSlotsByChannel?: Record<string, number>;
257
- ActiveSlotsByChannel?: Record<string, number>;
255
+ AvailableSlotsByChannel?: Record<Channel, number>;
256
+ MaxSlotsByChannel?: Record<Channel, number>;
257
+ ActiveSlotsByChannel?: Record<Channel, number>;
258
258
  Contacts?: AgentContactReference[];
259
259
  NextStatus?: string;
260
260
  }
@@ -326,21 +326,21 @@ export declare const Comparison: {
326
326
  };
327
327
  export type Comparison = (typeof Comparison)[keyof typeof Comparison];
328
328
  export interface Threshold {
329
- Comparison?: Comparison | string;
329
+ Comparison?: Comparison;
330
330
  ThresholdValue?: number;
331
331
  }
332
332
  export interface HistoricalMetric {
333
- Name?: HistoricalMetricName | string;
333
+ Name?: HistoricalMetricName;
334
334
  Threshold?: Threshold;
335
- Statistic?: Statistic | string;
336
- Unit?: Unit | string;
335
+ Statistic?: Statistic;
336
+ Unit?: Unit;
337
337
  }
338
338
  export interface GetMetricDataRequest {
339
339
  InstanceId: string | undefined;
340
340
  StartTime: Date | undefined;
341
341
  EndTime: Date | undefined;
342
342
  Filters: Filters | undefined;
343
- Groupings?: (Grouping | string)[];
343
+ Groupings?: Grouping[];
344
344
  HistoricalMetrics: HistoricalMetric[] | undefined;
345
345
  NextToken?: string;
346
346
  MaxResults?: number;
@@ -373,7 +373,7 @@ export type IntervalPeriod =
373
373
  (typeof IntervalPeriod)[keyof typeof IntervalPeriod];
374
374
  export interface IntervalDetails {
375
375
  TimeZone?: string;
376
- IntervalPeriod?: IntervalPeriod | string;
376
+ IntervalPeriod?: IntervalPeriod;
377
377
  }
378
378
  export interface MetricFilterV2 {
379
379
  MetricFilterKey?: string;
@@ -405,7 +405,7 @@ export interface MetricDataV2 {
405
405
  Value?: number;
406
406
  }
407
407
  export interface MetricInterval {
408
- Interval?: IntervalPeriod | string;
408
+ Interval?: IntervalPeriod;
409
409
  StartTime?: Date;
410
410
  EndTime?: Date;
411
411
  }
@@ -440,7 +440,7 @@ export interface GetTaskTemplateResponse {
440
440
  Constraints?: TaskTemplateConstraints;
441
441
  Defaults?: TaskTemplateDefaults;
442
442
  Fields?: TaskTemplateField[];
443
- Status?: TaskTemplateStatus | string;
443
+ Status?: TaskTemplateStatus;
444
444
  LastModifiedTime?: Date;
445
445
  CreatedTime?: Date;
446
446
  Tags?: Record<string, string>;
@@ -469,7 +469,7 @@ export interface ListAgentStatusRequest {
469
469
  InstanceId: string | undefined;
470
470
  NextToken?: string;
471
471
  MaxResults?: number;
472
- AgentStatusTypes?: (AgentStatusType | string)[];
472
+ AgentStatusTypes?: AgentStatusType[];
473
473
  }
474
474
  export interface ListAgentStatusResponse {
475
475
  NextToken?: string;
@@ -493,7 +493,7 @@ export interface ListBotsRequest {
493
493
  InstanceId: string | undefined;
494
494
  NextToken?: string;
495
495
  MaxResults?: number;
496
- LexVersion: LexVersion | string | undefined;
496
+ LexVersion: LexVersion | undefined;
497
497
  }
498
498
  export interface LexBotConfig {
499
499
  LexBot?: LexBot;
@@ -513,7 +513,7 @@ export interface EvaluationSummary {
513
513
  EvaluationArn: string | undefined;
514
514
  EvaluationFormTitle: string | undefined;
515
515
  EvaluationFormId: string | undefined;
516
- Status: EvaluationStatus | string | undefined;
516
+ Status: EvaluationStatus | undefined;
517
517
  EvaluatorArn: string | undefined;
518
518
  Score?: EvaluationScore;
519
519
  CreatedTime: Date | undefined;
@@ -527,13 +527,13 @@ export interface ListContactFlowModulesRequest {
527
527
  InstanceId: string | undefined;
528
528
  NextToken?: string;
529
529
  MaxResults?: number;
530
- ContactFlowModuleState?: ContactFlowModuleState | string;
530
+ ContactFlowModuleState?: ContactFlowModuleState;
531
531
  }
532
532
  export interface ContactFlowModuleSummary {
533
533
  Id?: string;
534
534
  Arn?: string;
535
535
  Name?: string;
536
- State?: ContactFlowModuleState | string;
536
+ State?: ContactFlowModuleState;
537
537
  }
538
538
  export interface ListContactFlowModulesResponse {
539
539
  ContactFlowModulesSummaryList?: ContactFlowModuleSummary[];
@@ -541,7 +541,7 @@ export interface ListContactFlowModulesResponse {
541
541
  }
542
542
  export interface ListContactFlowsRequest {
543
543
  InstanceId: string | undefined;
544
- ContactFlowTypes?: (ContactFlowType | string)[];
544
+ ContactFlowTypes?: ContactFlowType[];
545
545
  NextToken?: string;
546
546
  MaxResults?: number;
547
547
  }
@@ -549,8 +549,8 @@ export interface ContactFlowSummary {
549
549
  Id?: string;
550
550
  Arn?: string;
551
551
  Name?: string;
552
- ContactFlowType?: ContactFlowType | string;
553
- ContactFlowState?: ContactFlowState | string;
552
+ ContactFlowType?: ContactFlowType;
553
+ ContactFlowState?: ContactFlowState;
554
554
  }
555
555
  export interface ListContactFlowsResponse {
556
556
  ContactFlowSummaryList?: ContactFlowSummary[];
@@ -559,7 +559,7 @@ export interface ListContactFlowsResponse {
559
559
  export interface ListContactReferencesRequest {
560
560
  InstanceId: string | undefined;
561
561
  ContactId: string | undefined;
562
- ReferenceTypes: (ReferenceType | string)[] | undefined;
562
+ ReferenceTypes: ReferenceType[] | undefined;
563
563
  NextToken?: string;
564
564
  }
565
565
  export declare const ReferenceStatus: {
@@ -571,7 +571,7 @@ export type ReferenceStatus =
571
571
  export interface AttachmentReference {
572
572
  Name?: string;
573
573
  Value?: string;
574
- Status?: ReferenceStatus | string;
574
+ Status?: ReferenceStatus;
575
575
  }
576
576
  export interface DateReference {
577
577
  Name?: string;
@@ -682,13 +682,13 @@ export interface ListContactReferencesResponse {
682
682
  }
683
683
  export interface ListDefaultVocabulariesRequest {
684
684
  InstanceId: string | undefined;
685
- LanguageCode?: VocabularyLanguageCode | string;
685
+ LanguageCode?: VocabularyLanguageCode;
686
686
  MaxResults?: number;
687
687
  NextToken?: string;
688
688
  }
689
689
  export interface DefaultVocabulary {
690
690
  InstanceId: string | undefined;
691
- LanguageCode: VocabularyLanguageCode | string | undefined;
691
+ LanguageCode: VocabularyLanguageCode | undefined;
692
692
  VocabularyId: string | undefined;
693
693
  VocabularyName: string | undefined;
694
694
  }
@@ -729,7 +729,7 @@ export interface EvaluationFormVersionSummary {
729
729
  EvaluationFormId: string | undefined;
730
730
  EvaluationFormVersion: number | undefined;
731
731
  Locked: boolean | undefined;
732
- Status: EvaluationFormVersionStatus | string | undefined;
732
+ Status: EvaluationFormVersionStatus | undefined;
733
733
  CreatedTime: Date | undefined;
734
734
  CreatedBy: string | undefined;
735
735
  LastModifiedTime: Date | undefined;
@@ -769,11 +769,11 @@ export interface ListInstancesRequest {
769
769
  export interface InstanceSummary {
770
770
  Id?: string;
771
771
  Arn?: string;
772
- IdentityManagementType?: DirectoryType | string;
772
+ IdentityManagementType?: DirectoryType;
773
773
  InstanceAlias?: string;
774
774
  CreatedTime?: Date;
775
775
  ServiceRole?: string;
776
- InstanceStatus?: InstanceStatus | string;
776
+ InstanceStatus?: InstanceStatus;
777
777
  InboundCallsEnabled?: boolean;
778
778
  OutboundCallsEnabled?: boolean;
779
779
  InstanceAccessUrl?: string;
@@ -784,7 +784,7 @@ export interface ListInstancesResponse {
784
784
  }
785
785
  export interface ListInstanceStorageConfigsRequest {
786
786
  InstanceId: string | undefined;
787
- ResourceType: InstanceStorageResourceType | string | undefined;
787
+ ResourceType: InstanceStorageResourceType | undefined;
788
788
  NextToken?: string;
789
789
  MaxResults?: number;
790
790
  }
@@ -794,7 +794,7 @@ export interface ListInstanceStorageConfigsResponse {
794
794
  }
795
795
  export interface ListIntegrationAssociationsRequest {
796
796
  InstanceId: string | undefined;
797
- IntegrationType?: IntegrationType | string;
797
+ IntegrationType?: IntegrationType;
798
798
  NextToken?: string;
799
799
  MaxResults?: number;
800
800
  }
@@ -802,11 +802,11 @@ export interface IntegrationAssociationSummary {
802
802
  IntegrationAssociationId?: string;
803
803
  IntegrationAssociationArn?: string;
804
804
  InstanceId?: string;
805
- IntegrationType?: IntegrationType | string;
805
+ IntegrationType?: IntegrationType;
806
806
  IntegrationArn?: string;
807
807
  SourceApplicationUrl?: string;
808
808
  SourceApplicationName?: string;
809
- SourceType?: SourceType | string;
809
+ SourceType?: SourceType;
810
810
  }
811
811
  export interface ListIntegrationAssociationsResponse {
812
812
  IntegrationAssociationSummaryList?: IntegrationAssociationSummary[];
@@ -832,8 +832,8 @@ export interface ListLexBotsResponse {
832
832
  }
833
833
  export interface ListPhoneNumbersRequest {
834
834
  InstanceId: string | undefined;
835
- PhoneNumberTypes?: (PhoneNumberType | string)[];
836
- PhoneNumberCountryCodes?: (PhoneNumberCountryCode | string)[];
835
+ PhoneNumberTypes?: PhoneNumberType[];
836
+ PhoneNumberCountryCodes?: PhoneNumberCountryCode[];
837
837
  NextToken?: string;
838
838
  MaxResults?: number;
839
839
  }
@@ -841,8 +841,8 @@ export interface PhoneNumberSummary {
841
841
  Id?: string;
842
842
  Arn?: string;
843
843
  PhoneNumber?: string;
844
- PhoneNumberType?: PhoneNumberType | string;
845
- PhoneNumberCountryCode?: PhoneNumberCountryCode | string;
844
+ PhoneNumberType?: PhoneNumberType;
845
+ PhoneNumberCountryCode?: PhoneNumberCountryCode;
846
846
  }
847
847
  export interface ListPhoneNumbersResponse {
848
848
  PhoneNumberSummaryList?: PhoneNumberSummary[];
@@ -852,16 +852,16 @@ export interface ListPhoneNumbersV2Request {
852
852
  TargetArn?: string;
853
853
  MaxResults?: number;
854
854
  NextToken?: string;
855
- PhoneNumberCountryCodes?: (PhoneNumberCountryCode | string)[];
856
- PhoneNumberTypes?: (PhoneNumberType | string)[];
855
+ PhoneNumberCountryCodes?: PhoneNumberCountryCode[];
856
+ PhoneNumberTypes?: PhoneNumberType[];
857
857
  PhoneNumberPrefix?: string;
858
858
  }
859
859
  export interface ListPhoneNumbersSummary {
860
860
  PhoneNumberId?: string;
861
861
  PhoneNumberArn?: string;
862
862
  PhoneNumber?: string;
863
- PhoneNumberCountryCode?: PhoneNumberCountryCode | string;
864
- PhoneNumberType?: PhoneNumberType | string;
863
+ PhoneNumberCountryCode?: PhoneNumberCountryCode;
864
+ PhoneNumberType?: PhoneNumberType;
865
865
  TargetArn?: string;
866
866
  }
867
867
  export interface ListPhoneNumbersV2Response {
@@ -892,7 +892,7 @@ export interface QuickConnectSummary {
892
892
  Id?: string;
893
893
  Arn?: string;
894
894
  Name?: string;
895
- QuickConnectType?: QuickConnectType | string;
895
+ QuickConnectType?: QuickConnectType;
896
896
  }
897
897
  export interface ListQueueQuickConnectsResponse {
898
898
  NextToken?: string;
@@ -905,7 +905,7 @@ export declare const QueueType: {
905
905
  export type QueueType = (typeof QueueType)[keyof typeof QueueType];
906
906
  export interface ListQueuesRequest {
907
907
  InstanceId: string | undefined;
908
- QueueTypes?: (QueueType | string)[];
908
+ QueueTypes?: QueueType[];
909
909
  NextToken?: string;
910
910
  MaxResults?: number;
911
911
  }
@@ -913,7 +913,7 @@ export interface QueueSummary {
913
913
  Id?: string;
914
914
  Arn?: string;
915
915
  Name?: string;
916
- QueueType?: QueueType | string;
916
+ QueueType?: QueueType;
917
917
  }
918
918
  export interface ListQueuesResponse {
919
919
  QueueSummaryList?: QueueSummary[];
@@ -923,7 +923,7 @@ export interface ListQuickConnectsRequest {
923
923
  InstanceId: string | undefined;
924
924
  NextToken?: string;
925
925
  MaxResults?: number;
926
- QuickConnectTypes?: (QuickConnectType | string)[];
926
+ QuickConnectTypes?: QuickConnectType[];
927
927
  }
928
928
  export interface ListQuickConnectsResponse {
929
929
  QuickConnectSummaryList?: QuickConnectSummary[];
@@ -941,7 +941,7 @@ export interface RoutingProfileQueueConfigSummary {
941
941
  QueueName: string | undefined;
942
942
  Priority: number | undefined;
943
943
  Delay: number | undefined;
944
- Channel: Channel | string | undefined;
944
+ Channel: Channel | undefined;
945
945
  }
946
946
  export interface ListRoutingProfileQueuesResponse {
947
947
  NextToken?: string;
@@ -963,8 +963,8 @@ export interface ListRoutingProfilesResponse {
963
963
  }
964
964
  export interface ListRulesRequest {
965
965
  InstanceId: string | undefined;
966
- PublishStatus?: RulePublishStatus | string;
967
- EventSourceName?: EventSourceName | string;
966
+ PublishStatus?: RulePublishStatus;
967
+ EventSourceName?: EventSourceName;
968
968
  MaxResults?: number;
969
969
  NextToken?: string;
970
970
  }
@@ -972,8 +972,8 @@ export interface RuleSummary {
972
972
  Name: string | undefined;
973
973
  RuleId: string | undefined;
974
974
  RuleArn: string | undefined;
975
- EventSourceName: EventSourceName | string | undefined;
976
- PublishStatus: RulePublishStatus | string | undefined;
975
+ EventSourceName: EventSourceName | undefined;
976
+ PublishStatus: RulePublishStatus | undefined;
977
977
  ActionSummaries: ActionSummary[] | undefined;
978
978
  CreatedTime: Date | undefined;
979
979
  LastUpdatedTime: Date | undefined;
@@ -1040,7 +1040,7 @@ export interface ListTaskTemplatesRequest {
1040
1040
  InstanceId: string | undefined;
1041
1041
  NextToken?: string;
1042
1042
  MaxResults?: number;
1043
- Status?: TaskTemplateStatus | string;
1043
+ Status?: TaskTemplateStatus;
1044
1044
  Name?: string;
1045
1045
  }
1046
1046
  export interface TaskTemplateMetadata {
@@ -1048,7 +1048,7 @@ export interface TaskTemplateMetadata {
1048
1048
  Arn?: string;
1049
1049
  Name?: string;
1050
1050
  Description?: string;
1051
- Status?: TaskTemplateStatus | string;
1051
+ Status?: TaskTemplateStatus;
1052
1052
  LastModifiedTime?: Date;
1053
1053
  CreatedTime?: Date;
1054
1054
  }
@@ -1066,7 +1066,7 @@ export interface TrafficDistributionGroupSummary {
1066
1066
  Arn?: string;
1067
1067
  Name?: string;
1068
1068
  InstanceArn?: string;
1069
- Status?: TrafficDistributionGroupStatus | string;
1069
+ Status?: TrafficDistributionGroupStatus;
1070
1070
  IsDefault?: boolean;
1071
1071
  }
1072
1072
  export interface ListTrafficDistributionGroupsResponse {
@@ -1094,7 +1094,7 @@ export interface ListUseCasesRequest {
1094
1094
  export interface UseCase {
1095
1095
  UseCaseId?: string;
1096
1096
  UseCaseArn?: string;
1097
- UseCaseType?: UseCaseType | string;
1097
+ UseCaseType?: UseCaseType;
1098
1098
  }
1099
1099
  export interface ListUseCasesResponse {
1100
1100
  UseCaseSummaryList?: UseCase[];
@@ -1125,7 +1125,7 @@ export interface ListUsersResponse {
1125
1125
  }
1126
1126
  export interface ListViewsRequest {
1127
1127
  InstanceId: string | undefined;
1128
- Type?: ViewType | string;
1128
+ Type?: ViewType;
1129
1129
  NextToken?: string;
1130
1130
  MaxResults?: number;
1131
1131
  }
@@ -1133,8 +1133,8 @@ export interface ViewSummary {
1133
1133
  Id?: string;
1134
1134
  Arn?: string;
1135
1135
  Name?: string;
1136
- Type?: ViewType | string;
1137
- Status?: ViewStatus | string;
1136
+ Type?: ViewType;
1137
+ Status?: ViewStatus;
1138
1138
  Description?: string;
1139
1139
  }
1140
1140
  export interface ListViewsResponse {
@@ -1152,7 +1152,7 @@ export interface ViewVersionSummary {
1152
1152
  Arn?: string;
1153
1153
  Description?: string;
1154
1154
  Name?: string;
1155
- Type?: ViewType | string;
1155
+ Type?: ViewType;
1156
1156
  Version?: number;
1157
1157
  VersionDescription?: string;
1158
1158
  }
@@ -1164,7 +1164,7 @@ export interface MonitorContactRequest {
1164
1164
  InstanceId: string | undefined;
1165
1165
  ContactId: string | undefined;
1166
1166
  UserId: string | undefined;
1167
- AllowedMonitorCapabilities?: (MonitorCapability | string)[];
1167
+ AllowedMonitorCapabilities?: MonitorCapability[];
1168
1168
  ClientToken?: string;
1169
1169
  }
1170
1170
  export interface MonitorContactResponse {
@@ -1199,16 +1199,16 @@ export interface ResumeContactRecordingRequest {
1199
1199
  export interface ResumeContactRecordingResponse {}
1200
1200
  export interface SearchAvailablePhoneNumbersRequest {
1201
1201
  TargetArn: string | undefined;
1202
- PhoneNumberCountryCode: PhoneNumberCountryCode | string | undefined;
1203
- PhoneNumberType: PhoneNumberType | string | undefined;
1202
+ PhoneNumberCountryCode: PhoneNumberCountryCode | undefined;
1203
+ PhoneNumberType: PhoneNumberType | undefined;
1204
1204
  PhoneNumberPrefix?: string;
1205
1205
  MaxResults?: number;
1206
1206
  NextToken?: string;
1207
1207
  }
1208
1208
  export interface AvailableNumberSummary {
1209
1209
  PhoneNumber?: string;
1210
- PhoneNumberCountryCode?: PhoneNumberCountryCode | string;
1211
- PhoneNumberType?: PhoneNumberType | string;
1210
+ PhoneNumberCountryCode?: PhoneNumberCountryCode;
1211
+ PhoneNumberType?: PhoneNumberType;
1212
1212
  }
1213
1213
  export interface SearchAvailablePhoneNumbersResponse {
1214
1214
  NextToken?: string;
@@ -1224,7 +1224,7 @@ export type StringComparisonType =
1224
1224
  export interface StringCondition {
1225
1225
  FieldName?: string;
1226
1226
  Value?: string;
1227
- ComparisonType?: StringComparisonType | string;
1227
+ ComparisonType?: StringComparisonType;
1228
1228
  }
1229
1229
  export interface TagCondition {
1230
1230
  TagKey?: string;
@@ -1283,8 +1283,8 @@ export declare class MaximumResultReturnedException extends __BaseException {
1283
1283
  export interface TagSearchCondition {
1284
1284
  tagKey?: string;
1285
1285
  tagValue?: string;
1286
- tagKeyComparisonType?: StringComparisonType | string;
1287
- tagValueComparisonType?: StringComparisonType | string;
1286
+ tagKeyComparisonType?: StringComparisonType;
1287
+ tagValueComparisonType?: StringComparisonType;
1288
1288
  }
1289
1289
  export interface ResourceTagsSearchCriteria {
1290
1290
  TagSearchCondition?: TagSearchCondition;
@@ -1336,7 +1336,7 @@ export type HierarchyGroupMatchType =
1336
1336
  (typeof HierarchyGroupMatchType)[keyof typeof HierarchyGroupMatchType];
1337
1337
  export interface HierarchyGroupCondition {
1338
1338
  Value?: string;
1339
- HierarchyGroupMatchType?: HierarchyGroupMatchType | string;
1339
+ HierarchyGroupMatchType?: HierarchyGroupMatchType;
1340
1340
  }
1341
1341
  export interface UserSearchFilter {
1342
1342
  TagFilter?: ControlPlaneTagFilter;
@@ -1366,16 +1366,16 @@ export interface SearchVocabulariesRequest {
1366
1366
  InstanceId: string | undefined;
1367
1367
  MaxResults?: number;
1368
1368
  NextToken?: string;
1369
- State?: VocabularyState | string;
1369
+ State?: VocabularyState;
1370
1370
  NameStartsWith?: string;
1371
- LanguageCode?: VocabularyLanguageCode | string;
1371
+ LanguageCode?: VocabularyLanguageCode;
1372
1372
  }
1373
1373
  export interface VocabularySummary {
1374
1374
  Name: string | undefined;
1375
1375
  Id: string | undefined;
1376
1376
  Arn: string | undefined;
1377
- LanguageCode: VocabularyLanguageCode | string | undefined;
1378
- State: VocabularyState | string | undefined;
1377
+ LanguageCode: VocabularyLanguageCode | undefined;
1378
+ State: VocabularyState | undefined;
1379
1379
  LastModifiedTime: Date | undefined;
1380
1380
  FailureReason?: string;
1381
1381
  }
@@ -1397,7 +1397,7 @@ export declare const RehydrationType: {
1397
1397
  export type RehydrationType =
1398
1398
  (typeof RehydrationType)[keyof typeof RehydrationType];
1399
1399
  export interface PersistentChat {
1400
- RehydrationType?: RehydrationType | string;
1400
+ RehydrationType?: RehydrationType;
1401
1401
  SourceContactId?: string;
1402
1402
  }
1403
1403
  export interface StartChatContactRequest {
@@ -1436,7 +1436,7 @@ export declare const VoiceRecordingTrack: {
1436
1436
  export type VoiceRecordingTrack =
1437
1437
  (typeof VoiceRecordingTrack)[keyof typeof VoiceRecordingTrack];
1438
1438
  export interface VoiceRecordingConfiguration {
1439
- VoiceRecordingTrack?: VoiceRecordingTrack | string;
1439
+ VoiceRecordingTrack?: VoiceRecordingTrack;
1440
1440
  }
1441
1441
  export interface StartContactRecordingRequest {
1442
1442
  InstanceId: string | undefined;
@@ -1495,7 +1495,7 @@ export interface StartOutboundVoiceContactRequest {
1495
1495
  Attributes?: Record<string, string>;
1496
1496
  AnswerMachineDetectionConfig?: AnswerMachineDetectionConfig;
1497
1497
  CampaignId?: string;
1498
- TrafficType?: TrafficType | string;
1498
+ TrafficType?: TrafficType;
1499
1499
  }
1500
1500
  export interface StartOutboundVoiceContactResponse {
1501
1501
  ContactId?: string;
@@ -1586,7 +1586,7 @@ export interface UpdateAgentStatusRequest {
1586
1586
  AgentStatusId: string | undefined;
1587
1587
  Name?: string;
1588
1588
  Description?: string;
1589
- State?: AgentStatusState | string;
1589
+ State?: AgentStatusState;
1590
1590
  DisplayOrder?: number;
1591
1591
  ResetOrderNumber?: boolean;
1592
1592
  }
@@ -1625,7 +1625,7 @@ export interface UpdateContactFlowMetadataRequest {
1625
1625
  ContactFlowId: string | undefined;
1626
1626
  Name?: string;
1627
1627
  Description?: string;
1628
- ContactFlowState?: ContactFlowState | string;
1628
+ ContactFlowState?: ContactFlowState;
1629
1629
  }
1630
1630
  export interface UpdateContactFlowMetadataResponse {}
1631
1631
  export interface UpdateContactFlowModuleContentRequest {
@@ -1639,7 +1639,7 @@ export interface UpdateContactFlowModuleMetadataRequest {
1639
1639
  ContactFlowModuleId: string | undefined;
1640
1640
  Name?: string;
1641
1641
  Description?: string;
1642
- State?: ContactFlowModuleState | string;
1642
+ State?: ContactFlowModuleState;
1643
1643
  }
1644
1644
  export interface UpdateContactFlowModuleMetadataResponse {}
1645
1645
  export interface UpdateContactFlowNameRequest {
@@ -1670,13 +1670,13 @@ export interface UpdateHoursOfOperationRequest {
1670
1670
  }
1671
1671
  export interface UpdateInstanceAttributeRequest {
1672
1672
  InstanceId: string | undefined;
1673
- AttributeType: InstanceAttributeType | string | undefined;
1673
+ AttributeType: InstanceAttributeType | undefined;
1674
1674
  Value: string | undefined;
1675
1675
  }
1676
1676
  export interface UpdateInstanceStorageConfigRequest {
1677
1677
  InstanceId: string | undefined;
1678
1678
  AssociationId: string | undefined;
1679
- ResourceType: InstanceStorageResourceType | string | undefined;
1679
+ ResourceType: InstanceStorageResourceType | undefined;
1680
1680
  StorageConfig: InstanceStorageConfig | undefined;
1681
1681
  }
1682
1682
  export declare const TimerEligibleParticipantRoles: {
@@ -1702,7 +1702,7 @@ export type ParticipantTimerValue =
1702
1702
  | ParticipantTimerValue.$UnknownMember;
1703
1703
  export declare namespace ParticipantTimerValue {
1704
1704
  interface ParticipantTimerActionMember {
1705
- ParticipantTimerAction: ParticipantTimerAction | string;
1705
+ ParticipantTimerAction: ParticipantTimerAction;
1706
1706
  ParticipantTimerDurationInMinutes?: never;
1707
1707
  $unknown?: never;
1708
1708
  }
@@ -1717,15 +1717,15 @@ export declare namespace ParticipantTimerValue {
1717
1717
  $unknown: [string, any];
1718
1718
  }
1719
1719
  interface Visitor<T> {
1720
- ParticipantTimerAction: (value: ParticipantTimerAction | string) => T;
1720
+ ParticipantTimerAction: (value: ParticipantTimerAction) => T;
1721
1721
  ParticipantTimerDurationInMinutes: (value: number) => T;
1722
1722
  _: (name: string, value: any) => T;
1723
1723
  }
1724
1724
  const visit: <T>(value: ParticipantTimerValue, visitor: Visitor<T>) => T;
1725
1725
  }
1726
1726
  export interface ParticipantTimerConfiguration {
1727
- ParticipantRole: TimerEligibleParticipantRoles | string | undefined;
1728
- TimerType: ParticipantTimerType | string | undefined;
1727
+ ParticipantRole: TimerEligibleParticipantRoles | undefined;
1728
+ TimerType: ParticipantTimerType | undefined;
1729
1729
  TimerValue: ParticipantTimerValue | undefined;
1730
1730
  }
1731
1731
  export interface ChatParticipantRoleConfig {
@@ -109,7 +109,7 @@ export interface UpdateQueueOutboundCallerConfigRequest {
109
109
  export interface UpdateQueueStatusRequest {
110
110
  InstanceId: string | undefined;
111
111
  QueueId: string | undefined;
112
- Status: QueueStatus | string | undefined;
112
+ Status: QueueStatus | undefined;
113
113
  }
114
114
  export interface UpdateQuickConnectConfigRequest {
115
115
  InstanceId: string | undefined;
@@ -125,7 +125,7 @@ export interface UpdateQuickConnectNameRequest {
125
125
  export interface UpdateRoutingProfileAgentAvailabilityTimerRequest {
126
126
  InstanceId: string | undefined;
127
127
  RoutingProfileId: string | undefined;
128
- AgentAvailabilityTimer: AgentAvailabilityTimer | string | undefined;
128
+ AgentAvailabilityTimer: AgentAvailabilityTimer | undefined;
129
129
  }
130
130
  export interface UpdateRoutingProfileConcurrencyRequest {
131
131
  InstanceId: string | undefined;
@@ -154,7 +154,7 @@ export interface UpdateRuleRequest {
154
154
  Name: string | undefined;
155
155
  Function: string | undefined;
156
156
  Actions: RuleAction[] | undefined;
157
- PublishStatus: RulePublishStatus | string | undefined;
157
+ PublishStatus: RulePublishStatus | undefined;
158
158
  }
159
159
  export interface UpdateSecurityProfileRequest {
160
160
  Description?: string;
@@ -173,7 +173,7 @@ export interface UpdateTaskTemplateRequest {
173
173
  ContactFlowId?: string;
174
174
  Constraints?: TaskTemplateConstraints;
175
175
  Defaults?: TaskTemplateDefaults;
176
- Status?: TaskTemplateStatus | string;
176
+ Status?: TaskTemplateStatus;
177
177
  Fields?: TaskTemplateField[];
178
178
  }
179
179
  export interface UpdateTaskTemplateResponse {
@@ -186,7 +186,7 @@ export interface UpdateTaskTemplateResponse {
186
186
  Constraints?: TaskTemplateConstraints;
187
187
  Defaults?: TaskTemplateDefaults;
188
188
  Fields?: TaskTemplateField[];
189
- Status?: TaskTemplateStatus | string;
189
+ Status?: TaskTemplateStatus;
190
190
  LastModifiedTime?: Date;
191
191
  CreatedTime?: Date;
192
192
  }
@@ -244,7 +244,7 @@ export interface UpdateUserSecurityProfilesRequest {
244
244
  export interface UpdateViewContentRequest {
245
245
  InstanceId: string | undefined;
246
246
  ViewId: string | undefined;
247
- Status: ViewStatus | string | undefined;
247
+ Status: ViewStatus | undefined;
248
248
  Content: ViewInputContent | undefined;
249
249
  }
250
250
  export interface UpdateViewContentResponse {
@@ -306,7 +306,7 @@ export interface EvaluationForm {
306
306
  EvaluationFormArn: string | undefined;
307
307
  Title: string | undefined;
308
308
  Description?: string;
309
- Status: EvaluationFormVersionStatus | string | undefined;
309
+ Status: EvaluationFormVersionStatus | undefined;
310
310
  Items: EvaluationFormItem[] | undefined;
311
311
  ScoringStrategy?: EvaluationFormScoringStrategy;
312
312
  CreatedTime: Date | undefined;
@@ -338,7 +338,7 @@ export interface QueueSearchCriteria {
338
338
  OrConditions?: QueueSearchCriteria[];
339
339
  AndConditions?: QueueSearchCriteria[];
340
340
  StringCondition?: StringCondition;
341
- QueueTypeCondition?: SearchableQueueType | string;
341
+ QueueTypeCondition?: SearchableQueueType;
342
342
  }
343
343
  export interface QuickConnectSearchCriteria {
344
344
  OrConditions?: QuickConnectSearchCriteria[];