@aws-sdk/client-chime-sdk-voice 3.934.0 → 3.935.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.
@@ -1,45 +1,4 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { ChimeSDKVoiceServiceException as __BaseException } from "./ChimeSDKVoiceServiceException";
3
- /**
4
- * @public
5
- * @enum
6
- */
7
- export declare const ErrorCode: {
8
- readonly AccessDenied: "AccessDenied";
9
- readonly BadRequest: "BadRequest";
10
- readonly Conflict: "Conflict";
11
- readonly Forbidden: "Forbidden";
12
- readonly Gone: "Gone";
13
- readonly NotFound: "NotFound";
14
- readonly PhoneNumberAssociationsExist: "PhoneNumberAssociationsExist";
15
- readonly PreconditionFailed: "PreconditionFailed";
16
- readonly ResourceLimitExceeded: "ResourceLimitExceeded";
17
- readonly ServiceFailure: "ServiceFailure";
18
- readonly ServiceUnavailable: "ServiceUnavailable";
19
- readonly Throttled: "Throttled";
20
- readonly Throttling: "Throttling";
21
- readonly Unauthorized: "Unauthorized";
22
- readonly Unprocessable: "Unprocessable";
23
- readonly VoiceConnectorGroupAssociationsExist: "VoiceConnectorGroupAssociationsExist";
24
- };
25
- /**
26
- * @public
27
- */
28
- export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
29
- /**
30
- * <p>You don't have the permissions needed to run this action.</p>
31
- * @public
32
- */
33
- export declare class AccessDeniedException extends __BaseException {
34
- readonly name: "AccessDeniedException";
35
- readonly $fault: "client";
36
- Code?: ErrorCode | undefined;
37
- Message?: string | undefined;
38
- /**
39
- * @internal
40
- */
41
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
42
- }
1
+ import { AlexaSkillStatus, CallingNameStatus, CallLegType, Capability, ContactCenterSystemType, ErrorCode, GeoMatchLevel, LanguageCode, NetworkType, NotificationTarget, NumberSelectionBehavior, OrderedPhoneNumberStatus, OriginationRouteProtocol, PhoneNumberAssociationName, PhoneNumberOrderStatus, PhoneNumberOrderType, PhoneNumberProductType, PhoneNumberStatus, PhoneNumberType, ProxySessionStatus, SessionBorderControllerType, SipRuleTriggerType, VoiceConnectorAwsRegion, VoiceConnectorIntegrationType } from "./enums";
43
2
  /**
44
3
  * <p>A validated address.</p>
45
4
  * @public
@@ -98,18 +57,6 @@ export interface Address {
98
57
  */
99
58
  country?: string | undefined;
100
59
  }
101
- /**
102
- * @public
103
- * @enum
104
- */
105
- export declare const AlexaSkillStatus: {
106
- readonly ACTIVE: "ACTIVE";
107
- readonly INACTIVE: "INACTIVE";
108
- };
109
- /**
110
- * @public
111
- */
112
- export type AlexaSkillStatus = (typeof AlexaSkillStatus)[keyof typeof AlexaSkillStatus];
113
60
  /**
114
61
  * @public
115
62
  */
@@ -163,104 +110,6 @@ export interface AssociatePhoneNumbersWithVoiceConnectorResponse {
163
110
  */
164
111
  PhoneNumberErrors?: PhoneNumberError[] | undefined;
165
112
  }
166
- /**
167
- * <p>The input parameters don't match the service's restrictions.</p>
168
- * @public
169
- */
170
- export declare class BadRequestException extends __BaseException {
171
- readonly name: "BadRequestException";
172
- readonly $fault: "client";
173
- Code?: ErrorCode | undefined;
174
- Message?: string | undefined;
175
- /**
176
- * @internal
177
- */
178
- constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
179
- }
180
- /**
181
- * <p>The client is permanently forbidden from making the request.</p>
182
- * @public
183
- */
184
- export declare class ForbiddenException extends __BaseException {
185
- readonly name: "ForbiddenException";
186
- readonly $fault: "client";
187
- Code?: ErrorCode | undefined;
188
- Message?: string | undefined;
189
- /**
190
- * @internal
191
- */
192
- constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
193
- }
194
- /**
195
- * <p>The requested resource couldn't be found.</p>
196
- * @public
197
- */
198
- export declare class NotFoundException extends __BaseException {
199
- readonly name: "NotFoundException";
200
- readonly $fault: "client";
201
- Code?: ErrorCode | undefined;
202
- Message?: string | undefined;
203
- /**
204
- * @internal
205
- */
206
- constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
207
- }
208
- /**
209
- * <p>The service encountered an unexpected error.</p>
210
- * @public
211
- */
212
- export declare class ServiceFailureException extends __BaseException {
213
- readonly name: "ServiceFailureException";
214
- readonly $fault: "server";
215
- Code?: ErrorCode | undefined;
216
- Message?: string | undefined;
217
- /**
218
- * @internal
219
- */
220
- constructor(opts: __ExceptionOptionType<ServiceFailureException, __BaseException>);
221
- }
222
- /**
223
- * <p>The service is currently unavailable.</p>
224
- * @public
225
- */
226
- export declare class ServiceUnavailableException extends __BaseException {
227
- readonly name: "ServiceUnavailableException";
228
- readonly $fault: "server";
229
- Code?: ErrorCode | undefined;
230
- Message?: string | undefined;
231
- /**
232
- * @internal
233
- */
234
- constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
235
- }
236
- /**
237
- * <p>The number of customer requests exceeds the request rate limit.</p>
238
- * @public
239
- */
240
- export declare class ThrottledClientException extends __BaseException {
241
- readonly name: "ThrottledClientException";
242
- readonly $fault: "client";
243
- Code?: ErrorCode | undefined;
244
- Message?: string | undefined;
245
- /**
246
- * @internal
247
- */
248
- constructor(opts: __ExceptionOptionType<ThrottledClientException, __BaseException>);
249
- }
250
- /**
251
- * <p>The client isn't authorized to request a resource.</p>
252
- * @public
253
- */
254
- export declare class UnauthorizedClientException extends __BaseException {
255
- readonly name: "UnauthorizedClientException";
256
- readonly $fault: "client";
257
- Code?: ErrorCode | undefined;
258
- Message?: string | undefined;
259
- /**
260
- * @internal
261
- */
262
- constructor(opts: __ExceptionOptionType<UnauthorizedClientException, __BaseException>);
263
- }
264
113
  /**
265
114
  * @public
266
115
  */
@@ -312,18 +161,6 @@ export interface BatchDeletePhoneNumberResponse {
312
161
  */
313
162
  PhoneNumberErrors?: PhoneNumberError[] | undefined;
314
163
  }
315
- /**
316
- * @public
317
- * @enum
318
- */
319
- export declare const PhoneNumberProductType: {
320
- readonly SipMediaApplicationDialIn: "SipMediaApplicationDialIn";
321
- readonly VoiceConnector: "VoiceConnector";
322
- };
323
- /**
324
- * @public
325
- */
326
- export type PhoneNumberProductType = (typeof PhoneNumberProductType)[keyof typeof PhoneNumberProductType];
327
164
  /**
328
165
  * <p>The phone number ID, product type, or calling name fields to update,
329
166
  * used with the <a>BatchUpdatePhoneNumber</a> and <a>UpdatePhoneNumber</a> actions.</p>
@@ -392,32 +229,6 @@ export interface CallDetails {
392
229
  */
393
230
  IsCaller?: boolean | undefined;
394
231
  }
395
- /**
396
- * @public
397
- * @enum
398
- */
399
- export declare const CallingNameStatus: {
400
- readonly Unassigned: "Unassigned";
401
- readonly UpdateFailed: "UpdateFailed";
402
- readonly UpdateInProgress: "UpdateInProgress";
403
- readonly UpdateSucceeded: "UpdateSucceeded";
404
- };
405
- /**
406
- * @public
407
- */
408
- export type CallingNameStatus = (typeof CallingNameStatus)[keyof typeof CallingNameStatus];
409
- /**
410
- * @public
411
- * @enum
412
- */
413
- export declare const CallLegType: {
414
- readonly CALLEE: "Callee";
415
- readonly CALLER: "Caller";
416
- };
417
- /**
418
- * @public
419
- */
420
- export type CallLegType = (typeof CallLegType)[keyof typeof CallLegType];
421
232
  /**
422
233
  * <p>A suggested address.</p>
423
234
  * @public
@@ -459,18 +270,6 @@ export interface CandidateAddress {
459
270
  */
460
271
  country?: string | undefined;
461
272
  }
462
- /**
463
- * @public
464
- * @enum
465
- */
466
- export declare const Capability: {
467
- readonly SMS: "SMS";
468
- readonly Voice: "Voice";
469
- };
470
- /**
471
- * @public
472
- */
473
- export type Capability = (typeof Capability)[keyof typeof Capability];
474
273
  /**
475
274
  * @public
476
275
  */
@@ -491,19 +290,6 @@ export interface CreatePhoneNumberOrderRequest {
491
290
  */
492
291
  Name?: string | undefined;
493
292
  }
494
- /**
495
- * @public
496
- * @enum
497
- */
498
- export declare const OrderedPhoneNumberStatus: {
499
- readonly Acquired: "Acquired";
500
- readonly Failed: "Failed";
501
- readonly Processing: "Processing";
502
- };
503
- /**
504
- * @public
505
- */
506
- export type OrderedPhoneNumberStatus = (typeof OrderedPhoneNumberStatus)[keyof typeof OrderedPhoneNumberStatus];
507
293
  /**
508
294
  * <p>A phone number for which an order has been placed.</p>
509
295
  * @public
@@ -520,39 +306,6 @@ export interface OrderedPhoneNumber {
520
306
  */
521
307
  Status?: OrderedPhoneNumberStatus | undefined;
522
308
  }
523
- /**
524
- * @public
525
- * @enum
526
- */
527
- export declare const PhoneNumberOrderType: {
528
- readonly New: "New";
529
- readonly Porting: "Porting";
530
- };
531
- /**
532
- * @public
533
- */
534
- export type PhoneNumberOrderType = (typeof PhoneNumberOrderType)[keyof typeof PhoneNumberOrderType];
535
- /**
536
- * @public
537
- * @enum
538
- */
539
- export declare const PhoneNumberOrderStatus: {
540
- readonly CancelRequested: "CancelRequested";
541
- readonly Cancelled: "Cancelled";
542
- readonly ChangeRequested: "ChangeRequested";
543
- readonly Exception: "Exception";
544
- readonly FOC: "FOC";
545
- readonly Failed: "Failed";
546
- readonly Partial: "Partial";
547
- readonly PendingDocuments: "PendingDocuments";
548
- readonly Processing: "Processing";
549
- readonly Submitted: "Submitted";
550
- readonly Successful: "Successful";
551
- };
552
- /**
553
- * @public
554
- */
555
- export type PhoneNumberOrderStatus = (typeof PhoneNumberOrderStatus)[keyof typeof PhoneNumberOrderStatus];
556
309
  /**
557
310
  * <p>The details of an Amazon Chime SDK phone number order.</p>
558
311
  * @public
@@ -611,32 +364,6 @@ export interface CreatePhoneNumberOrderResponse {
611
364
  */
612
365
  PhoneNumberOrder?: PhoneNumberOrder | undefined;
613
366
  }
614
- /**
615
- * <p>The request exceeds the resource limit.</p>
616
- * @public
617
- */
618
- export declare class ResourceLimitExceededException extends __BaseException {
619
- readonly name: "ResourceLimitExceededException";
620
- readonly $fault: "client";
621
- Code?: ErrorCode | undefined;
622
- Message?: string | undefined;
623
- /**
624
- * @internal
625
- */
626
- constructor(opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>);
627
- }
628
- /**
629
- * @public
630
- * @enum
631
- */
632
- export declare const GeoMatchLevel: {
633
- readonly AreaCode: "AreaCode";
634
- readonly Country: "Country";
635
- };
636
- /**
637
- * @public
638
- */
639
- export type GeoMatchLevel = (typeof GeoMatchLevel)[keyof typeof GeoMatchLevel];
640
367
  /**
641
368
  * <p>The country and area code for a proxy phone number in a proxy phone session.</p>
642
369
  * @public
@@ -653,18 +380,6 @@ export interface GeoMatchParams {
653
380
  */
654
381
  AreaCode: string | undefined;
655
382
  }
656
- /**
657
- * @public
658
- * @enum
659
- */
660
- export declare const NumberSelectionBehavior: {
661
- readonly AvoidSticky: "AvoidSticky";
662
- readonly PreferSticky: "PreferSticky";
663
- };
664
- /**
665
- * @public
666
- */
667
- export type NumberSelectionBehavior = (typeof NumberSelectionBehavior)[keyof typeof NumberSelectionBehavior];
668
383
  /**
669
384
  * @public
670
385
  */
@@ -727,19 +442,6 @@ export interface Participant {
727
442
  */
728
443
  ProxyPhoneNumber?: string | undefined;
729
444
  }
730
- /**
731
- * @public
732
- * @enum
733
- */
734
- export declare const ProxySessionStatus: {
735
- readonly Closed: "Closed";
736
- readonly InProgress: "InProgress";
737
- readonly Open: "Open";
738
- };
739
- /**
740
- * @public
741
- */
742
- export type ProxySessionStatus = (typeof ProxySessionStatus)[keyof typeof ProxySessionStatus];
743
445
  /**
744
446
  * <p>The proxy session for an Amazon Chime SDK Voice Connector.</p>
745
447
  * @public
@@ -821,20 +523,6 @@ export interface CreateProxySessionResponse {
821
523
  */
822
524
  ProxySession?: ProxySession | undefined;
823
525
  }
824
- /**
825
- * <p>Multiple instances of the same request were made simultaneously.</p>
826
- * @public
827
- */
828
- export declare class ConflictException extends __BaseException {
829
- readonly name: "ConflictException";
830
- readonly $fault: "client";
831
- Code?: ErrorCode | undefined;
832
- Message?: string | undefined;
833
- /**
834
- * @internal
835
- */
836
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
837
- }
838
526
  /**
839
527
  * <p>The endpoint assigned to a SIP media application.</p>
840
528
  * @public
@@ -1017,18 +705,6 @@ export interface SipRuleTargetApplication {
1017
705
  */
1018
706
  AwsRegion?: string | undefined;
1019
707
  }
1020
- /**
1021
- * @public
1022
- * @enum
1023
- */
1024
- export declare const SipRuleTriggerType: {
1025
- readonly RequestUriHostname: "RequestUriHostname";
1026
- readonly ToPhoneNumber: "ToPhoneNumber";
1027
- };
1028
- /**
1029
- * @public
1030
- */
1031
- export type SipRuleTriggerType = (typeof SipRuleTriggerType)[keyof typeof SipRuleTriggerType];
1032
708
  /**
1033
709
  * @public
1034
710
  */
@@ -1127,50 +803,6 @@ export interface CreateSipRuleResponse {
1127
803
  */
1128
804
  SipRule?: SipRule | undefined;
1129
805
  }
1130
- /**
1131
- * @public
1132
- * @enum
1133
- */
1134
- export declare const VoiceConnectorAwsRegion: {
1135
- readonly AP_NORTHEAST_1: "ap-northeast-1";
1136
- readonly AP_NORTHEAST_2: "ap-northeast-2";
1137
- readonly AP_SOUTHEAST_1: "ap-southeast-1";
1138
- readonly AP_SOUTHEAST_2: "ap-southeast-2";
1139
- readonly CA_CENTRAL_1: "ca-central-1";
1140
- readonly EU_CENTRAL_1: "eu-central-1";
1141
- readonly EU_WEST_1: "eu-west-1";
1142
- readonly EU_WEST_2: "eu-west-2";
1143
- readonly US_EAST_1: "us-east-1";
1144
- readonly US_WEST_2: "us-west-2";
1145
- };
1146
- /**
1147
- * @public
1148
- */
1149
- export type VoiceConnectorAwsRegion = (typeof VoiceConnectorAwsRegion)[keyof typeof VoiceConnectorAwsRegion];
1150
- /**
1151
- * @public
1152
- * @enum
1153
- */
1154
- export declare const VoiceConnectorIntegrationType: {
1155
- readonly CONNECT_ANALYTICS_CONNECTOR: "CONNECT_ANALYTICS_CONNECTOR";
1156
- readonly CONNECT_CALL_TRANSFER_CONNECTOR: "CONNECT_CALL_TRANSFER_CONNECTOR";
1157
- };
1158
- /**
1159
- * @public
1160
- */
1161
- export type VoiceConnectorIntegrationType = (typeof VoiceConnectorIntegrationType)[keyof typeof VoiceConnectorIntegrationType];
1162
- /**
1163
- * @public
1164
- * @enum
1165
- */
1166
- export declare const NetworkType: {
1167
- readonly DUAL_STACK: "DUAL_STACK";
1168
- readonly IPV4_ONLY: "IPV4_ONLY";
1169
- };
1170
- /**
1171
- * @public
1172
- */
1173
- export type NetworkType = (typeof NetworkType)[keyof typeof NetworkType];
1174
806
  /**
1175
807
  * @public
1176
808
  */
@@ -1444,20 +1076,6 @@ export interface CreateVoiceProfileResponse {
1444
1076
  */
1445
1077
  VoiceProfile?: VoiceProfile | undefined;
1446
1078
  }
1447
- /**
1448
- * <p>Access to the target resource is no longer available at the origin server. This condition is likely to be permanent.</p>
1449
- * @public
1450
- */
1451
- export declare class GoneException extends __BaseException {
1452
- readonly name: "GoneException";
1453
- readonly $fault: "client";
1454
- Code?: ErrorCode | undefined;
1455
- Message?: string | undefined;
1456
- /**
1457
- * @internal
1458
- */
1459
- constructor(opts: __ExceptionOptionType<GoneException, __BaseException>);
1460
- }
1461
1079
  /**
1462
1080
  * <p>A structure that contains the configuration settings for server-side encryption.</p>
1463
1081
  * <note>
@@ -1800,19 +1418,6 @@ export interface GetPhoneNumberRequest {
1800
1418
  */
1801
1419
  PhoneNumberId: string | undefined;
1802
1420
  }
1803
- /**
1804
- * @public
1805
- * @enum
1806
- */
1807
- export declare const PhoneNumberAssociationName: {
1808
- readonly SipRuleId: "SipRuleId";
1809
- readonly VoiceConnectorGroupId: "VoiceConnectorGroupId";
1810
- readonly VoiceConnectorId: "VoiceConnectorId";
1811
- };
1812
- /**
1813
- * @public
1814
- */
1815
- export type PhoneNumberAssociationName = (typeof PhoneNumberAssociationName)[keyof typeof PhoneNumberAssociationName];
1816
1421
  /**
1817
1422
  * <p>The phone number associations, such as an Amazon Chime SDK account ID, user ID,
1818
1423
  * Voice Connector ID, or Voice Connector group ID.</p>
@@ -1872,39 +1477,6 @@ export interface PhoneNumberCapabilities {
1872
1477
  */
1873
1478
  OutboundMMS?: boolean | undefined;
1874
1479
  }
1875
- /**
1876
- * @public
1877
- * @enum
1878
- */
1879
- export declare const PhoneNumberStatus: {
1880
- readonly AcquireFailed: "AcquireFailed";
1881
- readonly AcquireInProgress: "AcquireInProgress";
1882
- readonly Assigned: "Assigned";
1883
- readonly Cancelled: "Cancelled";
1884
- readonly DeleteFailed: "DeleteFailed";
1885
- readonly DeleteInProgress: "DeleteInProgress";
1886
- readonly PortinCancelRequested: "PortinCancelRequested";
1887
- readonly PortinInProgress: "PortinInProgress";
1888
- readonly ReleaseFailed: "ReleaseFailed";
1889
- readonly ReleaseInProgress: "ReleaseInProgress";
1890
- readonly Unassigned: "Unassigned";
1891
- };
1892
- /**
1893
- * @public
1894
- */
1895
- export type PhoneNumberStatus = (typeof PhoneNumberStatus)[keyof typeof PhoneNumberStatus];
1896
- /**
1897
- * @public
1898
- * @enum
1899
- */
1900
- export declare const PhoneNumberType: {
1901
- readonly Local: "Local";
1902
- readonly TollFree: "TollFree";
1903
- };
1904
- /**
1905
- * @public
1906
- */
1907
- export type PhoneNumberType = (typeof PhoneNumberType)[keyof typeof PhoneNumberType];
1908
1480
  /**
1909
1481
  * <p>A phone number used to call an Amazon
1910
1482
  * Chime SDK Voice Connector.</p>
@@ -2360,35 +1932,6 @@ export interface GetVoiceConnectorExternalSystemsConfigurationRequest {
2360
1932
  */
2361
1933
  VoiceConnectorId: string | undefined;
2362
1934
  }
2363
- /**
2364
- * @public
2365
- * @enum
2366
- */
2367
- export declare const ContactCenterSystemType: {
2368
- readonly AVAYA_AURA_CALL_CENTER_ELITE: "AVAYA_AURA_CALL_CENTER_ELITE";
2369
- readonly AVAYA_AURA_CONTACT_CENTER: "AVAYA_AURA_CONTACT_CENTER";
2370
- readonly CISCO_UNIFIED_CONTACT_CENTER_ENTERPRISE: "CISCO_UNIFIED_CONTACT_CENTER_ENTERPRISE";
2371
- readonly GENESYS_ENGAGE_ON_PREMISES: "GENESYS_ENGAGE_ON_PREMISES";
2372
- };
2373
- /**
2374
- * @public
2375
- */
2376
- export type ContactCenterSystemType = (typeof ContactCenterSystemType)[keyof typeof ContactCenterSystemType];
2377
- /**
2378
- * @public
2379
- * @enum
2380
- */
2381
- export declare const SessionBorderControllerType: {
2382
- readonly AUDIOCODES_MEDIANT_SBC: "AUDIOCODES_MEDIANT_SBC";
2383
- readonly AVAYA_SBCE: "AVAYA_SBCE";
2384
- readonly CISCO_UNIFIED_BORDER_ELEMENT: "CISCO_UNIFIED_BORDER_ELEMENT";
2385
- readonly ORACLE_ACME_PACKET_SBC: "ORACLE_ACME_PACKET_SBC";
2386
- readonly RIBBON_SBC: "RIBBON_SBC";
2387
- };
2388
- /**
2389
- * @public
2390
- */
2391
- export type SessionBorderControllerType = (typeof SessionBorderControllerType)[keyof typeof SessionBorderControllerType];
2392
1935
  /**
2393
1936
  * <p>Contains information about an external systems configuration for a Voice
2394
1937
  * Connector.</p>
@@ -2483,18 +2026,6 @@ export interface GetVoiceConnectorOriginationRequest {
2483
2026
  */
2484
2027
  VoiceConnectorId: string | undefined;
2485
2028
  }
2486
- /**
2487
- * @public
2488
- * @enum
2489
- */
2490
- export declare const OriginationRouteProtocol: {
2491
- readonly TCP: "TCP";
2492
- readonly UDP: "UDP";
2493
- };
2494
- /**
2495
- * @public
2496
- */
2497
- export type OriginationRouteProtocol = (typeof OriginationRouteProtocol)[keyof typeof OriginationRouteProtocol];
2498
2029
  /**
2499
2030
  * <p>Origination routes define call distribution properties for your SIP hosts to
2500
2031
  * receive inbound calls using an Amazon Chime SDK Voice Connector. Limit: Ten origination
@@ -2642,19 +2173,6 @@ export interface MediaInsightsConfiguration {
2642
2173
  */
2643
2174
  ConfigurationArn?: string | undefined;
2644
2175
  }
2645
- /**
2646
- * @public
2647
- * @enum
2648
- */
2649
- export declare const NotificationTarget: {
2650
- readonly EventBridge: "EventBridge";
2651
- readonly SNS: "SNS";
2652
- readonly SQS: "SQS";
2653
- };
2654
- /**
2655
- * @public
2656
- */
2657
- export type NotificationTarget = (typeof NotificationTarget)[keyof typeof NotificationTarget];
2658
2176
  /**
2659
2177
  * <p>The target recipient for a streaming configuration notification.</p>
2660
2178
  * @public
@@ -3769,31 +3287,6 @@ export interface StartSpeakerSearchTaskResponse {
3769
3287
  */
3770
3288
  SpeakerSearchTask?: SpeakerSearchTask | undefined;
3771
3289
  }
3772
- /**
3773
- * <p>A well-formed request couldn't be followed due to semantic errors.</p>
3774
- * @public
3775
- */
3776
- export declare class UnprocessableEntityException extends __BaseException {
3777
- readonly name: "UnprocessableEntityException";
3778
- readonly $fault: "client";
3779
- Code?: ErrorCode | undefined;
3780
- Message?: string | undefined;
3781
- /**
3782
- * @internal
3783
- */
3784
- constructor(opts: __ExceptionOptionType<UnprocessableEntityException, __BaseException>);
3785
- }
3786
- /**
3787
- * @public
3788
- * @enum
3789
- */
3790
- export declare const LanguageCode: {
3791
- readonly EN_US: "en-US";
3792
- };
3793
- /**
3794
- * @public
3795
- */
3796
- export type LanguageCode = (typeof LanguageCode)[keyof typeof LanguageCode];
3797
3290
  /**
3798
3291
  * @public
3799
3292
  */
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { ChimeSDKVoiceExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
- export * from "./models";
8
+ export * from "./models/enums";
9
+ export * from "./models/errors";
10
+ export * from "./models/models_0";
9
11
  export { ChimeSDKVoiceServiceException } from "./models/ChimeSDKVoiceServiceException";