@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.
@@ -241,7 +241,7 @@ export interface UpdateQueueStatusRequest {
241
241
  * @public
242
242
  * <p>The status of the queue.</p>
243
243
  */
244
- Status: QueueStatus | string | undefined;
244
+ Status: QueueStatus | undefined;
245
245
  }
246
246
  /**
247
247
  * @public
@@ -308,7 +308,7 @@ export interface UpdateRoutingProfileAgentAvailabilityTimerRequest {
308
308
  * <i>time since their last inbound contact</i> or <i>longest idle
309
309
  * time</i>. </p>
310
310
  */
311
- AgentAvailabilityTimer: AgentAvailabilityTimer | string | undefined;
311
+ AgentAvailabilityTimer: AgentAvailabilityTimer | undefined;
312
312
  }
313
313
  /**
314
314
  * @public
@@ -433,7 +433,7 @@ export interface UpdateRuleRequest {
433
433
  * @public
434
434
  * <p>The publish status of the rule.</p>
435
435
  */
436
- PublishStatus: RulePublishStatus | string | undefined;
436
+ PublishStatus: RulePublishStatus | undefined;
437
437
  }
438
438
  /**
439
439
  * @public
@@ -522,7 +522,7 @@ export interface UpdateTaskTemplateRequest {
522
522
  * Tasks can only be created from <code>ACTIVE</code> templates.
523
523
  * If a template is marked as <code>INACTIVE</code>, then a task that refers to this template cannot be created.</p>
524
524
  */
525
- Status?: TaskTemplateStatus | string;
525
+ Status?: TaskTemplateStatus;
526
526
  /**
527
527
  * @public
528
528
  * <p>Fields that are part of the template.</p>
@@ -584,7 +584,7 @@ export interface UpdateTaskTemplateResponse {
584
584
  * Tasks can only be created from <code>ACTIVE</code> templates.
585
585
  * If a template is marked as <code>INACTIVE</code>, then a task that refers to this template cannot be created.</p>
586
586
  */
587
- Status?: TaskTemplateStatus | string;
587
+ Status?: TaskTemplateStatus;
588
588
  /**
589
589
  * @public
590
590
  * <p>The timestamp when the task template was last modified.</p>
@@ -828,7 +828,7 @@ export interface UpdateViewContentRequest {
828
828
  * <p>Indicates the view status as either <code>SAVED</code> or <code>PUBLISHED</code>. The
829
829
  * <code>PUBLISHED</code> status will initiate validation on the content.</p>
830
830
  */
831
- Status: ViewStatus | string | undefined;
831
+ Status: ViewStatus | undefined;
832
832
  /**
833
833
  * @public
834
834
  * <p>View content containing all content necessary to render a view except for runtime input data
@@ -1032,7 +1032,7 @@ export interface EvaluationForm {
1032
1032
  * @public
1033
1033
  * <p>The status of the evaluation form.</p>
1034
1034
  */
1035
- Status: EvaluationFormVersionStatus | string | undefined;
1035
+ Status: EvaluationFormVersionStatus | undefined;
1036
1036
  /**
1037
1037
  * @public
1038
1038
  * <p>Items that are part of the evaluation form. The total number of sections and questions must not exceed 100 each. Questions must be contained in a section.</p>
@@ -1193,7 +1193,7 @@ export interface QueueSearchCriteria {
1193
1193
  * @public
1194
1194
  * <p>The type of queue.</p>
1195
1195
  */
1196
- QueueTypeCondition?: SearchableQueueType | string;
1196
+ QueueTypeCondition?: SearchableQueueType;
1197
1197
  }
1198
1198
  /**
1199
1199
  * @public
@@ -16,7 +16,7 @@ export declare const ActionType: {
16
16
  };
17
17
  export type ActionType = (typeof ActionType)[keyof typeof ActionType];
18
18
  export interface ActionSummary {
19
- ActionType: ActionType | string | undefined;
19
+ ActionType: ActionType | undefined;
20
20
  }
21
21
  export interface ActivateEvaluationFormRequest {
22
22
  InstanceId: string | undefined;
@@ -118,9 +118,9 @@ export interface QueueReference {
118
118
  }
119
119
  export interface AgentContactReference {
120
120
  ContactId?: string;
121
- Channel?: Channel | string;
122
- InitiationMethod?: ContactInitiationMethod | string;
123
- AgentContactState?: ContactState | string;
121
+ Channel?: Channel;
122
+ InitiationMethod?: ContactInitiationMethod;
123
+ AgentContactState?: ContactState;
124
124
  StateStartTimestamp?: Date;
125
125
  ConnectedToAgentTimestamp?: Date;
126
126
  Queue?: QueueReference;
@@ -147,9 +147,9 @@ export interface AgentStatus {
147
147
  AgentStatusId?: string;
148
148
  Name?: string;
149
149
  Description?: string;
150
- Type?: AgentStatusType | string;
150
+ Type?: AgentStatusType;
151
151
  DisplayOrder?: number;
152
- State?: AgentStatusState | string;
152
+ State?: AgentStatusState;
153
153
  Tags?: Record<string, string>;
154
154
  }
155
155
  export interface AgentStatusReference {
@@ -161,7 +161,7 @@ export interface AgentStatusSummary {
161
161
  Id?: string;
162
162
  Arn?: string;
163
163
  Name?: string;
164
- Type?: AgentStatusType | string;
164
+ Type?: AgentStatusType;
165
165
  }
166
166
  export declare const MonitorCapability: {
167
167
  readonly BARGE: "BARGE";
@@ -238,7 +238,7 @@ export type VocabularyLanguageCode =
238
238
  (typeof VocabularyLanguageCode)[keyof typeof VocabularyLanguageCode];
239
239
  export interface AssociateDefaultVocabularyRequest {
240
240
  InstanceId: string | undefined;
241
- LanguageCode: VocabularyLanguageCode | string | undefined;
241
+ LanguageCode: VocabularyLanguageCode | undefined;
242
242
  VocabularyId?: string;
243
243
  }
244
244
  export interface AssociateDefaultVocabularyResponse {}
@@ -268,7 +268,7 @@ export declare const EncryptionType: {
268
268
  export type EncryptionType =
269
269
  (typeof EncryptionType)[keyof typeof EncryptionType];
270
270
  export interface EncryptionConfig {
271
- EncryptionType: EncryptionType | string | undefined;
271
+ EncryptionType: EncryptionType | undefined;
272
272
  KeyId: string | undefined;
273
273
  }
274
274
  export interface KinesisVideoStreamConfig {
@@ -290,7 +290,7 @@ export declare const StorageType: {
290
290
  export type StorageType = (typeof StorageType)[keyof typeof StorageType];
291
291
  export interface InstanceStorageConfig {
292
292
  AssociationId?: string;
293
- StorageType: StorageType | string | undefined;
293
+ StorageType: StorageType | undefined;
294
294
  S3Config?: S3Config;
295
295
  KinesisVideoStreamConfig?: KinesisVideoStreamConfig;
296
296
  KinesisStreamConfig?: KinesisStreamConfig;
@@ -298,7 +298,7 @@ export interface InstanceStorageConfig {
298
298
  }
299
299
  export interface AssociateInstanceStorageConfigRequest {
300
300
  InstanceId: string | undefined;
301
- ResourceType: InstanceStorageResourceType | string | undefined;
301
+ ResourceType: InstanceStorageResourceType | undefined;
302
302
  StorageConfig: InstanceStorageConfig | undefined;
303
303
  }
304
304
  export interface AssociateInstanceStorageConfigResponse {
@@ -324,7 +324,7 @@ export interface AssociateQueueQuickConnectsRequest {
324
324
  }
325
325
  export interface RoutingProfileQueueReference {
326
326
  QueueId: string | undefined;
327
- Channel: Channel | string | undefined;
327
+ Channel: Channel | undefined;
328
328
  }
329
329
  export interface RoutingProfileQueueConfig {
330
330
  QueueReference: RoutingProfileQueueReference | undefined;
@@ -372,7 +372,7 @@ export interface CreateAgentStatusRequest {
372
372
  InstanceId: string | undefined;
373
373
  Name: string | undefined;
374
374
  Description?: string;
375
- State: AgentStatusState | string | undefined;
375
+ State: AgentStatusState | undefined;
376
376
  DisplayOrder?: number;
377
377
  Tags?: Record<string, string>;
378
378
  }
@@ -404,7 +404,7 @@ export type ContactFlowType =
404
404
  export interface CreateContactFlowRequest {
405
405
  InstanceId: string | undefined;
406
406
  Name: string | undefined;
407
- Type: ContactFlowType | string | undefined;
407
+ Type: ContactFlowType | undefined;
408
408
  Description?: string;
409
409
  Content: string | undefined;
410
410
  Tags?: Record<string, string>;
@@ -467,7 +467,7 @@ export declare const NumericQuestionPropertyAutomationLabel: {
467
467
  export type NumericQuestionPropertyAutomationLabel =
468
468
  (typeof NumericQuestionPropertyAutomationLabel)[keyof typeof NumericQuestionPropertyAutomationLabel];
469
469
  export interface NumericQuestionPropertyValueAutomation {
470
- Label: NumericQuestionPropertyAutomationLabel | string | undefined;
470
+ Label: NumericQuestionPropertyAutomationLabel | undefined;
471
471
  }
472
472
  export type EvaluationFormNumericQuestionAutomation =
473
473
  | EvaluationFormNumericQuestionAutomation.PropertyValueMember
@@ -510,10 +510,7 @@ export type SingleSelectQuestionRuleCategoryAutomationCondition =
510
510
  (typeof SingleSelectQuestionRuleCategoryAutomationCondition)[keyof typeof SingleSelectQuestionRuleCategoryAutomationCondition];
511
511
  export interface SingleSelectQuestionRuleCategoryAutomation {
512
512
  Category: string | undefined;
513
- Condition:
514
- | SingleSelectQuestionRuleCategoryAutomationCondition
515
- | string
516
- | undefined;
513
+ Condition: SingleSelectQuestionRuleCategoryAutomationCondition | undefined;
517
514
  OptionRefId: string | undefined;
518
515
  }
519
516
  export type EvaluationFormSingleSelectQuestionAutomationOption =
@@ -555,7 +552,7 @@ export interface EvaluationFormSingleSelectQuestionOption {
555
552
  }
556
553
  export interface EvaluationFormSingleSelectQuestionProperties {
557
554
  Options: EvaluationFormSingleSelectQuestionOption[] | undefined;
558
- DisplayAs?: EvaluationFormSingleSelectQuestionDisplayMode | string;
555
+ DisplayAs?: EvaluationFormSingleSelectQuestionDisplayMode;
559
556
  Automation?: EvaluationFormSingleSelectQuestionAutomation;
560
557
  }
561
558
  export type EvaluationFormQuestionTypeProperties =
@@ -593,7 +590,7 @@ export interface EvaluationFormQuestion {
593
590
  Instructions?: string;
594
591
  RefId: string | undefined;
595
592
  NotApplicableEnabled?: boolean;
596
- QuestionType: EvaluationFormQuestionType | string | undefined;
593
+ QuestionType: EvaluationFormQuestionType | undefined;
597
594
  QuestionTypeProperties?: EvaluationFormQuestionTypeProperties;
598
595
  Weight?: number;
599
596
  }
@@ -610,8 +607,8 @@ export declare const EvaluationFormScoringStatus: {
610
607
  export type EvaluationFormScoringStatus =
611
608
  (typeof EvaluationFormScoringStatus)[keyof typeof EvaluationFormScoringStatus];
612
609
  export interface EvaluationFormScoringStrategy {
613
- Mode: EvaluationFormScoringMode | string | undefined;
614
- Status: EvaluationFormScoringStatus | string | undefined;
610
+ Mode: EvaluationFormScoringMode | undefined;
611
+ Status: EvaluationFormScoringStatus | undefined;
615
612
  }
616
613
  export interface CreateEvaluationFormResponse {
617
614
  EvaluationFormId: string | undefined;
@@ -633,7 +630,7 @@ export interface HoursOfOperationTimeSlice {
633
630
  Minutes: number | undefined;
634
631
  }
635
632
  export interface HoursOfOperationConfig {
636
- Day: HoursOfOperationDays | string | undefined;
633
+ Day: HoursOfOperationDays | undefined;
637
634
  StartTime: HoursOfOperationTimeSlice | undefined;
638
635
  EndTime: HoursOfOperationTimeSlice | undefined;
639
636
  }
@@ -657,7 +654,7 @@ export declare const DirectoryType: {
657
654
  export type DirectoryType = (typeof DirectoryType)[keyof typeof DirectoryType];
658
655
  export interface CreateInstanceRequest {
659
656
  ClientToken?: string;
660
- IdentityManagementType: DirectoryType | string | undefined;
657
+ IdentityManagementType: DirectoryType | undefined;
661
658
  InstanceAlias?: string;
662
659
  DirectoryId?: string;
663
660
  InboundCallsEnabled: boolean | undefined;
@@ -685,11 +682,11 @@ export declare const SourceType: {
685
682
  export type SourceType = (typeof SourceType)[keyof typeof SourceType];
686
683
  export interface CreateIntegrationAssociationRequest {
687
684
  InstanceId: string | undefined;
688
- IntegrationType: IntegrationType | string | undefined;
685
+ IntegrationType: IntegrationType | undefined;
689
686
  IntegrationArn: string | undefined;
690
687
  SourceApplicationUrl?: string;
691
688
  SourceApplicationName?: string;
692
- SourceType?: SourceType | string;
689
+ SourceType?: SourceType;
693
690
  Tags?: Record<string, string>;
694
691
  }
695
692
  export interface CreateIntegrationAssociationResponse {
@@ -705,7 +702,7 @@ export declare const ParticipantRole: {
705
702
  export type ParticipantRole =
706
703
  (typeof ParticipantRole)[keyof typeof ParticipantRole];
707
704
  export interface ParticipantDetailsToAdd {
708
- ParticipantRole?: ParticipantRole | string;
705
+ ParticipantRole?: ParticipantRole;
709
706
  DisplayName?: string;
710
707
  }
711
708
  export interface CreateParticipantRequest {
@@ -771,7 +768,7 @@ export interface UserQuickConnectConfig {
771
768
  ContactFlowId: string | undefined;
772
769
  }
773
770
  export interface QuickConnectConfig {
774
- QuickConnectType: QuickConnectType | string | undefined;
771
+ QuickConnectType: QuickConnectType | undefined;
775
772
  UserConfig?: UserQuickConnectConfig;
776
773
  QueueConfig?: QueueQuickConnectConfig;
777
774
  PhoneConfig?: PhoneNumberQuickConnectConfig;
@@ -793,10 +790,10 @@ export declare const BehaviorType: {
793
790
  };
794
791
  export type BehaviorType = (typeof BehaviorType)[keyof typeof BehaviorType];
795
792
  export interface CrossChannelBehavior {
796
- BehaviorType: BehaviorType | string | undefined;
793
+ BehaviorType: BehaviorType | undefined;
797
794
  }
798
795
  export interface MediaConcurrency {
799
- Channel: Channel | string | undefined;
796
+ Channel: Channel | undefined;
800
797
  Concurrency: number | undefined;
801
798
  CrossChannelBehavior?: CrossChannelBehavior;
802
799
  }
@@ -808,7 +805,7 @@ export interface CreateRoutingProfileRequest {
808
805
  QueueConfigs?: RoutingProfileQueueConfig[];
809
806
  MediaConcurrencies: MediaConcurrency[] | undefined;
810
807
  Tags?: Record<string, string>;
811
- AgentAvailabilityTimer?: AgentAvailabilityTimer | string;
808
+ AgentAvailabilityTimer?: AgentAvailabilityTimer;
812
809
  }
813
810
  export interface CreateRoutingProfileResponse {
814
811
  RoutingProfileArn?: string;
@@ -833,10 +830,10 @@ export interface NotificationRecipientType {
833
830
  UserIds?: string[];
834
831
  }
835
832
  export interface SendNotificationActionDefinition {
836
- DeliveryMethod: NotificationDeliveryType | string | undefined;
833
+ DeliveryMethod: NotificationDeliveryType | undefined;
837
834
  Subject?: string;
838
835
  Content: string | undefined;
839
- ContentType: NotificationContentType | string | undefined;
836
+ ContentType: NotificationContentType | undefined;
840
837
  Recipient: NotificationRecipientType | undefined;
841
838
  }
842
839
  export declare const ReferenceType: {
@@ -850,7 +847,7 @@ export declare const ReferenceType: {
850
847
  export type ReferenceType = (typeof ReferenceType)[keyof typeof ReferenceType];
851
848
  export interface Reference {
852
849
  Value: string | undefined;
853
- Type: ReferenceType | string | undefined;
850
+ Type: ReferenceType | undefined;
854
851
  }
855
852
  export interface TaskActionDefinition {
856
853
  Name: string | undefined;
@@ -859,7 +856,7 @@ export interface TaskActionDefinition {
859
856
  References?: Record<string, Reference>;
860
857
  }
861
858
  export interface RuleAction {
862
- ActionType: ActionType | string | undefined;
859
+ ActionType: ActionType | undefined;
863
860
  TaskAction?: TaskActionDefinition;
864
861
  EventBridgeAction?: EventBridgeActionDefinition;
865
862
  AssignContactCategoryAction?: AssignContactCategoryActionDefinition;
@@ -884,7 +881,7 @@ export declare const EventSourceName: {
884
881
  export type EventSourceName =
885
882
  (typeof EventSourceName)[keyof typeof EventSourceName];
886
883
  export interface RuleTriggerEventSource {
887
- EventSourceName: EventSourceName | string | undefined;
884
+ EventSourceName: EventSourceName | undefined;
888
885
  IntegrationAssociationId?: string;
889
886
  }
890
887
  export interface CreateRuleRequest {
@@ -893,7 +890,7 @@ export interface CreateRuleRequest {
893
890
  TriggerEventSource: RuleTriggerEventSource | undefined;
894
891
  Function: string | undefined;
895
892
  Actions: RuleAction[] | undefined;
896
- PublishStatus: RulePublishStatus | string | undefined;
893
+ PublishStatus: RulePublishStatus | undefined;
897
894
  ClientToken?: string;
898
895
  }
899
896
  export interface CreateRuleResponse {
@@ -961,7 +958,7 @@ export type TaskTemplateFieldType =
961
958
  export interface TaskTemplateField {
962
959
  Id: TaskTemplateFieldIdentifier | undefined;
963
960
  Description?: string;
964
- Type?: TaskTemplateFieldType | string;
961
+ Type?: TaskTemplateFieldType;
965
962
  SingleSelectOptions?: string[];
966
963
  }
967
964
  export declare const TaskTemplateStatus: {
@@ -977,7 +974,7 @@ export interface CreateTaskTemplateRequest {
977
974
  ContactFlowId?: string;
978
975
  Constraints?: TaskTemplateConstraints;
979
976
  Defaults?: TaskTemplateDefaults;
980
- Status?: TaskTemplateStatus | string;
977
+ Status?: TaskTemplateStatus;
981
978
  Fields: TaskTemplateField[] | undefined;
982
979
  ClientToken?: string;
983
980
  }
@@ -997,7 +994,7 @@ export type PropertyValidationExceptionReason =
997
994
  (typeof PropertyValidationExceptionReason)[keyof typeof PropertyValidationExceptionReason];
998
995
  export interface PropertyValidationExceptionProperty {
999
996
  PropertyPath: string | undefined;
1000
- Reason: PropertyValidationExceptionReason | string | undefined;
997
+ Reason: PropertyValidationExceptionReason | undefined;
1001
998
  Message: string | undefined;
1002
999
  }
1003
1000
  export declare class PropertyValidationException extends __BaseException {
@@ -1036,7 +1033,7 @@ export type UseCaseType = (typeof UseCaseType)[keyof typeof UseCaseType];
1036
1033
  export interface CreateUseCaseRequest {
1037
1034
  InstanceId: string | undefined;
1038
1035
  IntegrationAssociationId: string | undefined;
1039
- UseCaseType: UseCaseType | string | undefined;
1036
+ UseCaseType: UseCaseType | undefined;
1040
1037
  Tags?: Record<string, string>;
1041
1038
  }
1042
1039
  export interface CreateUseCaseResponse {
@@ -1056,7 +1053,7 @@ export declare const PhoneType: {
1056
1053
  };
1057
1054
  export type PhoneType = (typeof PhoneType)[keyof typeof PhoneType];
1058
1055
  export interface UserPhoneConfig {
1059
- PhoneType: PhoneType | string | undefined;
1056
+ PhoneType: PhoneType | undefined;
1060
1057
  AutoAccept?: boolean;
1061
1058
  AfterContactWorkTimeLimit?: number;
1062
1059
  DeskPhoneNumber?: string;
@@ -1099,7 +1096,7 @@ export type ViewStatus = (typeof ViewStatus)[keyof typeof ViewStatus];
1099
1096
  export interface CreateViewRequest {
1100
1097
  InstanceId: string | undefined;
1101
1098
  ClientToken?: string;
1102
- Status: ViewStatus | string | undefined;
1099
+ Status: ViewStatus | undefined;
1103
1100
  Content: ViewInputContent | undefined;
1104
1101
  Description?: string;
1105
1102
  Name: string | undefined;
@@ -1119,8 +1116,8 @@ export interface View {
1119
1116
  Id?: string;
1120
1117
  Arn?: string;
1121
1118
  Name?: string;
1122
- Status?: ViewStatus | string;
1123
- Type?: ViewType | string;
1119
+ Status?: ViewStatus;
1120
+ Type?: ViewType;
1124
1121
  Description?: string;
1125
1122
  Version?: number;
1126
1123
  VersionDescription?: string;
@@ -1147,7 +1144,7 @@ export declare class ResourceInUseException extends __BaseException {
1147
1144
  readonly name: "ResourceInUseException";
1148
1145
  readonly $fault: "client";
1149
1146
  Message?: string;
1150
- ResourceType?: ResourceType | string;
1147
+ ResourceType?: ResourceType;
1151
1148
  ResourceId?: string;
1152
1149
  constructor(
1153
1150
  opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
@@ -1174,7 +1171,7 @@ export interface CreateVocabularyRequest {
1174
1171
  ClientToken?: string;
1175
1172
  InstanceId: string | undefined;
1176
1173
  VocabularyName: string | undefined;
1177
- LanguageCode: VocabularyLanguageCode | string | undefined;
1174
+ LanguageCode: VocabularyLanguageCode | undefined;
1178
1175
  Content: string | undefined;
1179
1176
  Tags?: Record<string, string>;
1180
1177
  }
@@ -1189,7 +1186,7 @@ export type VocabularyState =
1189
1186
  export interface CreateVocabularyResponse {
1190
1187
  VocabularyArn: string | undefined;
1191
1188
  VocabularyId: string | undefined;
1192
- State: VocabularyState | string | undefined;
1189
+ State: VocabularyState | undefined;
1193
1190
  }
1194
1191
  export interface DeactivateEvaluationFormRequest {
1195
1192
  InstanceId: string | undefined;
@@ -1295,7 +1292,7 @@ export interface DeleteVocabularyRequest {
1295
1292
  export interface DeleteVocabularyResponse {
1296
1293
  VocabularyArn: string | undefined;
1297
1294
  VocabularyId: string | undefined;
1298
- State: VocabularyState | string | undefined;
1295
+ State: VocabularyState | undefined;
1299
1296
  }
1300
1297
  export interface DescribeAgentStatusRequest {
1301
1298
  InstanceId: string | undefined;
@@ -1320,10 +1317,10 @@ export interface Contact {
1320
1317
  Id?: string;
1321
1318
  InitialContactId?: string;
1322
1319
  PreviousContactId?: string;
1323
- InitiationMethod?: ContactInitiationMethod | string;
1320
+ InitiationMethod?: ContactInitiationMethod;
1324
1321
  Name?: string;
1325
1322
  Description?: string;
1326
- Channel?: Channel | string;
1323
+ Channel?: Channel;
1327
1324
  QueueInfo?: QueueInfo;
1328
1325
  AgentInfo?: AgentInfo;
1329
1326
  InitiationTimestamp?: Date;
@@ -1408,7 +1405,7 @@ export interface Evaluation {
1408
1405
  Metadata: EvaluationMetadata | undefined;
1409
1406
  Answers: Record<string, EvaluationAnswerOutput> | undefined;
1410
1407
  Notes: Record<string, EvaluationNote> | undefined;
1411
- Status: EvaluationStatus | string | undefined;
1408
+ Status: EvaluationStatus | undefined;
1412
1409
  Scores?: Record<string, EvaluationScore>;
1413
1410
  CreatedTime: Date | undefined;
1414
1411
  LastModifiedTime: Date | undefined;
@@ -1439,8 +1436,8 @@ export interface ContactFlow {
1439
1436
  Arn?: string;
1440
1437
  Id?: string;
1441
1438
  Name?: string;
1442
- Type?: ContactFlowType | string;
1443
- State?: ContactFlowState | string;
1439
+ Type?: ContactFlowType;
1440
+ State?: ContactFlowState;
1444
1441
  Description?: string;
1445
1442
  Content?: string;
1446
1443
  Tags?: Record<string, string>;
@@ -1470,8 +1467,8 @@ export interface ContactFlowModule {
1470
1467
  Name?: string;
1471
1468
  Content?: string;
1472
1469
  Description?: string;
1473
- State?: ContactFlowModuleState | string;
1474
- Status?: ContactFlowModuleStatus | string;
1470
+ State?: ContactFlowModuleState;
1471
+ Status?: ContactFlowModuleStatus;
1475
1472
  Tags?: Record<string, string>;
1476
1473
  }
1477
1474
  export interface DescribeContactFlowModuleResponse {
@@ -1520,11 +1517,11 @@ export interface InstanceStatusReason {
1520
1517
  export interface Instance {
1521
1518
  Id?: string;
1522
1519
  Arn?: string;
1523
- IdentityManagementType?: DirectoryType | string;
1520
+ IdentityManagementType?: DirectoryType;
1524
1521
  InstanceAlias?: string;
1525
1522
  CreatedTime?: Date;
1526
1523
  ServiceRole?: string;
1527
- InstanceStatus?: InstanceStatus | string;
1524
+ InstanceStatus?: InstanceStatus;
1528
1525
  StatusReason?: InstanceStatusReason;
1529
1526
  InboundCallsEnabled?: boolean;
1530
1527
  OutboundCallsEnabled?: boolean;
@@ -1549,10 +1546,10 @@ export type InstanceAttributeType =
1549
1546
  (typeof InstanceAttributeType)[keyof typeof InstanceAttributeType];
1550
1547
  export interface DescribeInstanceAttributeRequest {
1551
1548
  InstanceId: string | undefined;
1552
- AttributeType: InstanceAttributeType | string | undefined;
1549
+ AttributeType: InstanceAttributeType | undefined;
1553
1550
  }
1554
1551
  export interface Attribute {
1555
- AttributeType?: InstanceAttributeType | string;
1552
+ AttributeType?: InstanceAttributeType;
1556
1553
  Value?: string;
1557
1554
  }
1558
1555
  export interface DescribeInstanceAttributeResponse {
@@ -1561,7 +1558,7 @@ export interface DescribeInstanceAttributeResponse {
1561
1558
  export interface DescribeInstanceStorageConfigRequest {
1562
1559
  InstanceId: string | undefined;
1563
1560
  AssociationId: string | undefined;
1564
- ResourceType: InstanceStorageResourceType | string | undefined;
1561
+ ResourceType: InstanceStorageResourceType | undefined;
1565
1562
  }
1566
1563
  export interface DescribeInstanceStorageConfigResponse {
1567
1564
  StorageConfig?: InstanceStorageConfig;
@@ -1818,7 +1815,7 @@ export declare const PhoneNumberWorkflowStatus: {
1818
1815
  export type PhoneNumberWorkflowStatus =
1819
1816
  (typeof PhoneNumberWorkflowStatus)[keyof typeof PhoneNumberWorkflowStatus];
1820
1817
  export interface PhoneNumberStatus {
1821
- Status?: PhoneNumberWorkflowStatus | string;
1818
+ Status?: PhoneNumberWorkflowStatus;
1822
1819
  Message?: string;
1823
1820
  }
1824
1821
  export declare const PhoneNumberType: {
@@ -1835,8 +1832,8 @@ export interface ClaimedPhoneNumberSummary {
1835
1832
  PhoneNumberId?: string;
1836
1833
  PhoneNumberArn?: string;
1837
1834
  PhoneNumber?: string;
1838
- PhoneNumberCountryCode?: PhoneNumberCountryCode | string;
1839
- PhoneNumberType?: PhoneNumberType | string;
1835
+ PhoneNumberCountryCode?: PhoneNumberCountryCode;
1836
+ PhoneNumberType?: PhoneNumberType;
1840
1837
  PhoneNumberDescription?: string;
1841
1838
  TargetArn?: string;
1842
1839
  Tags?: Record<string, string>;
@@ -1876,7 +1873,7 @@ export interface Queue {
1876
1873
  OutboundCallerConfig?: OutboundCallerConfig;
1877
1874
  HoursOfOperationId?: string;
1878
1875
  MaxContacts?: number;
1879
- Status?: QueueStatus | string;
1876
+ Status?: QueueStatus;
1880
1877
  Tags?: Record<string, string>;
1881
1878
  }
1882
1879
  export interface DescribeQueueResponse {
@@ -1912,7 +1909,7 @@ export interface RoutingProfile {
1912
1909
  Tags?: Record<string, string>;
1913
1910
  NumberOfAssociatedQueues?: number;
1914
1911
  NumberOfAssociatedUsers?: number;
1915
- AgentAvailabilityTimer?: AgentAvailabilityTimer | string;
1912
+ AgentAvailabilityTimer?: AgentAvailabilityTimer;
1916
1913
  }
1917
1914
  export interface DescribeRoutingProfileResponse {
1918
1915
  RoutingProfile?: RoutingProfile;
@@ -1928,7 +1925,7 @@ export interface Rule {
1928
1925
  TriggerEventSource: RuleTriggerEventSource | undefined;
1929
1926
  Function: string | undefined;
1930
1927
  Actions: RuleAction[] | undefined;
1931
- PublishStatus: RulePublishStatus | string | undefined;
1928
+ PublishStatus: RulePublishStatus | undefined;
1932
1929
  CreatedTime: Date | undefined;
1933
1930
  LastUpdatedTime: Date | undefined;
1934
1931
  LastUpdatedBy: string | undefined;
@@ -1973,7 +1970,7 @@ export interface TrafficDistributionGroup {
1973
1970
  Name?: string;
1974
1971
  Description?: string;
1975
1972
  InstanceArn?: string;
1976
- Status?: TrafficDistributionGroupStatus | string;
1973
+ Status?: TrafficDistributionGroupStatus;
1977
1974
  Tags?: Record<string, string>;
1978
1975
  IsDefault?: boolean;
1979
1976
  }