@aws-sdk/client-chime 3.934.0 → 3.936.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,84 +1,4 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { ChimeServiceException as __BaseException } from "./ChimeServiceException";
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 NotFound: "NotFound";
13
- readonly PhoneNumberAssociationsExist: "PhoneNumberAssociationsExist";
14
- readonly PreconditionFailed: "PreconditionFailed";
15
- readonly ResourceLimitExceeded: "ResourceLimitExceeded";
16
- readonly ServiceFailure: "ServiceFailure";
17
- readonly ServiceUnavailable: "ServiceUnavailable";
18
- readonly Throttled: "Throttled";
19
- readonly Throttling: "Throttling";
20
- readonly Unauthorized: "Unauthorized";
21
- readonly Unprocessable: "Unprocessable";
22
- readonly VoiceConnectorGroupAssociationsExist: "VoiceConnectorGroupAssociationsExist";
23
- };
24
- /**
25
- * @public
26
- */
27
- export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
28
- /**
29
- * <p>You don't have permissions to perform the requested operation.</p>
30
- * @public
31
- */
32
- export declare class AccessDeniedException extends __BaseException {
33
- readonly name: "AccessDeniedException";
34
- readonly $fault: "client";
35
- Code?: ErrorCode | undefined;
36
- Message?: string | undefined;
37
- /**
38
- * @internal
39
- */
40
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
41
- }
42
- /**
43
- * @public
44
- * @enum
45
- */
46
- export declare const AccountStatus: {
47
- readonly Active: "Active";
48
- readonly Suspended: "Suspended";
49
- };
50
- /**
51
- * @public
52
- */
53
- export type AccountStatus = (typeof AccountStatus)[keyof typeof AccountStatus];
54
- /**
55
- * @public
56
- * @enum
57
- */
58
- export declare const AccountType: {
59
- readonly EnterpriseDirectory: "EnterpriseDirectory";
60
- readonly EnterpriseLWA: "EnterpriseLWA";
61
- readonly EnterpriseOIDC: "EnterpriseOIDC";
62
- readonly Team: "Team";
63
- };
64
- /**
65
- * @public
66
- */
67
- export type AccountType = (typeof AccountType)[keyof typeof AccountType];
68
- /**
69
- * @public
70
- * @enum
71
- */
72
- export declare const License: {
73
- readonly Basic: "Basic";
74
- readonly Plus: "Plus";
75
- readonly Pro: "Pro";
76
- readonly ProTrial: "ProTrial";
77
- };
78
- /**
79
- * @public
80
- */
81
- export type License = (typeof License)[keyof typeof License];
1
+ import { AccountStatus, AccountType, BotType, CallingNameStatus, EmailStatus, ErrorCode, InviteStatus, License, MemberType, OrderedPhoneNumberStatus, PhoneNumberAssociationName, PhoneNumberOrderStatus, PhoneNumberProductType, PhoneNumberStatus, PhoneNumberType, RegistrationStatus, RoomMembershipRole, UserType } from "./enums";
82
2
  /**
83
3
  * <p>An Active Directory (AD) group whose members are granted permission to act as delegates.</p>
84
4
  * @public
@@ -203,104 +123,6 @@ export interface AssociatePhoneNumberWithUserRequest {
203
123
  */
204
124
  export interface AssociatePhoneNumberWithUserResponse {
205
125
  }
206
- /**
207
- * <p>The input parameters don't match the service's restrictions.</p>
208
- * @public
209
- */
210
- export declare class BadRequestException extends __BaseException {
211
- readonly name: "BadRequestException";
212
- readonly $fault: "client";
213
- Code?: ErrorCode | undefined;
214
- Message?: string | undefined;
215
- /**
216
- * @internal
217
- */
218
- constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
219
- }
220
- /**
221
- * <p>The client is permanently forbidden from making the request.</p>
222
- * @public
223
- */
224
- export declare class ForbiddenException extends __BaseException {
225
- readonly name: "ForbiddenException";
226
- readonly $fault: "client";
227
- Code?: ErrorCode | undefined;
228
- Message?: string | undefined;
229
- /**
230
- * @internal
231
- */
232
- constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
233
- }
234
- /**
235
- * <p>One or more of the resources in the request does not exist in the system.</p>
236
- * @public
237
- */
238
- export declare class NotFoundException extends __BaseException {
239
- readonly name: "NotFoundException";
240
- readonly $fault: "client";
241
- Code?: ErrorCode | undefined;
242
- Message?: string | undefined;
243
- /**
244
- * @internal
245
- */
246
- constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
247
- }
248
- /**
249
- * <p>The service encountered an unexpected error.</p>
250
- * @public
251
- */
252
- export declare class ServiceFailureException extends __BaseException {
253
- readonly name: "ServiceFailureException";
254
- readonly $fault: "server";
255
- Code?: ErrorCode | undefined;
256
- Message?: string | undefined;
257
- /**
258
- * @internal
259
- */
260
- constructor(opts: __ExceptionOptionType<ServiceFailureException, __BaseException>);
261
- }
262
- /**
263
- * <p>The service is currently unavailable.</p>
264
- * @public
265
- */
266
- export declare class ServiceUnavailableException extends __BaseException {
267
- readonly name: "ServiceUnavailableException";
268
- readonly $fault: "server";
269
- Code?: ErrorCode | undefined;
270
- Message?: string | undefined;
271
- /**
272
- * @internal
273
- */
274
- constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
275
- }
276
- /**
277
- * <p>The client exceeded its request rate limit.</p>
278
- * @public
279
- */
280
- export declare class ThrottledClientException extends __BaseException {
281
- readonly name: "ThrottledClientException";
282
- readonly $fault: "client";
283
- Code?: ErrorCode | undefined;
284
- Message?: string | undefined;
285
- /**
286
- * @internal
287
- */
288
- constructor(opts: __ExceptionOptionType<ThrottledClientException, __BaseException>);
289
- }
290
- /**
291
- * <p>The client is not currently authorized to make the request.</p>
292
- * @public
293
- */
294
- export declare class UnauthorizedClientException extends __BaseException {
295
- readonly name: "UnauthorizedClientException";
296
- readonly $fault: "client";
297
- Code?: ErrorCode | undefined;
298
- Message?: string | undefined;
299
- /**
300
- * @internal
301
- */
302
- constructor(opts: __ExceptionOptionType<UnauthorizedClientException, __BaseException>);
303
- }
304
126
  /**
305
127
  * @public
306
128
  */
@@ -321,18 +143,6 @@ export interface AssociateSigninDelegateGroupsWithAccountRequest {
321
143
  */
322
144
  export interface AssociateSigninDelegateGroupsWithAccountResponse {
323
145
  }
324
- /**
325
- * @public
326
- * @enum
327
- */
328
- export declare const RoomMembershipRole: {
329
- readonly Administrator: "Administrator";
330
- readonly Member: "Member";
331
- };
332
- /**
333
- * @public
334
- */
335
- export type RoomMembershipRole = (typeof RoomMembershipRole)[keyof typeof RoomMembershipRole];
336
146
  /**
337
147
  * <p>Membership details, such as member ID and member role.</p>
338
148
  * @public
@@ -516,19 +326,6 @@ export interface BatchUnsuspendUserResponse {
516
326
  */
517
327
  UserErrors?: UserError[] | undefined;
518
328
  }
519
- /**
520
- * @public
521
- * @enum
522
- */
523
- export declare const PhoneNumberProductType: {
524
- readonly BusinessCalling: "BusinessCalling";
525
- readonly SipMediaApplicationDialIn: "SipMediaApplicationDialIn";
526
- readonly VoiceConnector: "VoiceConnector";
527
- };
528
- /**
529
- * @public
530
- */
531
- export type PhoneNumberProductType = (typeof PhoneNumberProductType)[keyof typeof PhoneNumberProductType];
532
329
  /**
533
330
  * <p>The phone number ID, product type, or calling name fields to update, used with the
534
331
  * <a>BatchUpdatePhoneNumber</a> and <a>UpdatePhoneNumber</a> actions.</p>
@@ -571,18 +368,6 @@ export interface BatchUpdatePhoneNumberResponse {
571
368
  */
572
369
  PhoneNumberErrors?: PhoneNumberError[] | undefined;
573
370
  }
574
- /**
575
- * @public
576
- * @enum
577
- */
578
- export declare const UserType: {
579
- readonly PrivateUser: "PrivateUser";
580
- readonly SharedDevice: "SharedDevice";
581
- };
582
- /**
583
- * @public
584
- */
585
- export type UserType = (typeof UserType)[keyof typeof UserType];
586
371
  /**
587
372
  * <p>The user ID and user fields to update, used with the
588
373
  * <a>BatchUpdateUser</a> action.</p>
@@ -636,17 +421,6 @@ export interface BatchUpdateUserResponse {
636
421
  */
637
422
  UserErrors?: UserError[] | undefined;
638
423
  }
639
- /**
640
- * @public
641
- * @enum
642
- */
643
- export declare const BotType: {
644
- readonly ChatBot: "ChatBot";
645
- };
646
- /**
647
- * @public
648
- */
649
- export type BotType = (typeof BotType)[keyof typeof BotType];
650
424
  /**
651
425
  * <p>A resource that allows Enterprise account administrators to configure an interface to receive events from Amazon Chime.</p>
652
426
  * @public
@@ -710,35 +484,6 @@ export interface BusinessCallingSettings {
710
484
  */
711
485
  CdrBucket?: string | undefined;
712
486
  }
713
- /**
714
- * @public
715
- * @enum
716
- */
717
- export declare const CallingNameStatus: {
718
- readonly Unassigned: "Unassigned";
719
- readonly UpdateFailed: "UpdateFailed";
720
- readonly UpdateInProgress: "UpdateInProgress";
721
- readonly UpdateSucceeded: "UpdateSucceeded";
722
- };
723
- /**
724
- * @public
725
- */
726
- export type CallingNameStatus = (typeof CallingNameStatus)[keyof typeof CallingNameStatus];
727
- /**
728
- * <p>The request could not be processed because of conflict in the current state of the
729
- * resource.</p>
730
- * @public
731
- */
732
- export declare class ConflictException extends __BaseException {
733
- readonly name: "ConflictException";
734
- readonly $fault: "client";
735
- Code?: ErrorCode | undefined;
736
- Message?: string | undefined;
737
- /**
738
- * @internal
739
- */
740
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
741
- }
742
487
  /**
743
488
  * <p>The retention settings that determine how long to retain conversation messages for an Amazon Chime Enterprise account.</p>
744
489
  * @public
@@ -800,20 +545,6 @@ export interface CreateBotResponse {
800
545
  */
801
546
  Bot?: Bot | undefined;
802
547
  }
803
- /**
804
- * <p>The request exceeds the resource limit.</p>
805
- * @public
806
- */
807
- export declare class ResourceLimitExceededException extends __BaseException {
808
- readonly name: "ResourceLimitExceededException";
809
- readonly $fault: "client";
810
- Code?: ErrorCode | undefined;
811
- Message?: string | undefined;
812
- /**
813
- * @internal
814
- */
815
- constructor(opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>);
816
- }
817
548
  /**
818
549
  * @public
819
550
  */
@@ -864,19 +595,6 @@ export interface CreatePhoneNumberOrderRequest {
864
595
  */
865
596
  E164PhoneNumbers: string[] | undefined;
866
597
  }
867
- /**
868
- * @public
869
- * @enum
870
- */
871
- export declare const OrderedPhoneNumberStatus: {
872
- readonly Acquired: "Acquired";
873
- readonly Failed: "Failed";
874
- readonly Processing: "Processing";
875
- };
876
- /**
877
- * @public
878
- */
879
- export type OrderedPhoneNumberStatus = (typeof OrderedPhoneNumberStatus)[keyof typeof OrderedPhoneNumberStatus];
880
598
  /**
881
599
  * <p>A phone number for which an order has been placed.</p>
882
600
  * @public
@@ -893,20 +611,6 @@ export interface OrderedPhoneNumber {
893
611
  */
894
612
  Status?: OrderedPhoneNumberStatus | undefined;
895
613
  }
896
- /**
897
- * @public
898
- * @enum
899
- */
900
- export declare const PhoneNumberOrderStatus: {
901
- readonly Failed: "Failed";
902
- readonly Partial: "Partial";
903
- readonly Processing: "Processing";
904
- readonly Successful: "Successful";
905
- };
906
- /**
907
- * @public
908
- */
909
- export type PhoneNumberOrderStatus = (typeof PhoneNumberOrderStatus)[keyof typeof PhoneNumberOrderStatus];
910
614
  /**
911
615
  * <p>The details of a phone number order created for Amazon Chime.</p>
912
616
  * @public
@@ -1045,19 +749,6 @@ export interface CreateRoomMembershipRequest {
1045
749
  */
1046
750
  Role?: RoomMembershipRole | undefined;
1047
751
  }
1048
- /**
1049
- * @public
1050
- * @enum
1051
- */
1052
- export declare const MemberType: {
1053
- readonly Bot: "Bot";
1054
- readonly User: "User";
1055
- readonly Webhook: "Webhook";
1056
- };
1057
- /**
1058
- * @public
1059
- */
1060
- export type MemberType = (typeof MemberType)[keyof typeof MemberType];
1061
752
  /**
1062
753
  * <p>The member details, such as email address, name, member ID, and member type.</p>
1063
754
  * @public
@@ -1155,32 +846,6 @@ export interface CreateUserRequest {
1155
846
  */
1156
847
  UserType?: UserType | undefined;
1157
848
  }
1158
- /**
1159
- * @public
1160
- * @enum
1161
- */
1162
- export declare const InviteStatus: {
1163
- readonly Accepted: "Accepted";
1164
- readonly Failed: "Failed";
1165
- readonly Pending: "Pending";
1166
- };
1167
- /**
1168
- * @public
1169
- */
1170
- export type InviteStatus = (typeof InviteStatus)[keyof typeof InviteStatus];
1171
- /**
1172
- * @public
1173
- * @enum
1174
- */
1175
- export declare const RegistrationStatus: {
1176
- readonly Registered: "Registered";
1177
- readonly Suspended: "Suspended";
1178
- readonly Unregistered: "Unregistered";
1179
- };
1180
- /**
1181
- * @public
1182
- */
1183
- export type RegistrationStatus = (typeof RegistrationStatus)[keyof typeof RegistrationStatus];
1184
849
  /**
1185
850
  * <p>The user on the Amazon Chime account.</p>
1186
851
  * @public
@@ -1277,20 +942,6 @@ export interface DeleteAccountRequest {
1277
942
  */
1278
943
  export interface DeleteAccountResponse {
1279
944
  }
1280
- /**
1281
- * <p>The request was well-formed but was unable to be followed due to semantic errors.</p>
1282
- * @public
1283
- */
1284
- export declare class UnprocessableEntityException extends __BaseException {
1285
- readonly name: "UnprocessableEntityException";
1286
- readonly $fault: "client";
1287
- Code?: ErrorCode | undefined;
1288
- Message?: string | undefined;
1289
- /**
1290
- * @internal
1291
- */
1292
- constructor(opts: __ExceptionOptionType<UnprocessableEntityException, __BaseException>);
1293
- }
1294
945
  /**
1295
946
  * @public
1296
947
  */
@@ -1391,19 +1042,6 @@ export interface DisassociateSigninDelegateGroupsFromAccountRequest {
1391
1042
  */
1392
1043
  export interface DisassociateSigninDelegateGroupsFromAccountResponse {
1393
1044
  }
1394
- /**
1395
- * @public
1396
- * @enum
1397
- */
1398
- export declare const EmailStatus: {
1399
- readonly Failed: "Failed";
1400
- readonly NotSent: "NotSent";
1401
- readonly Sent: "Sent";
1402
- };
1403
- /**
1404
- * @public
1405
- */
1406
- export type EmailStatus = (typeof EmailStatus)[keyof typeof EmailStatus];
1407
1045
  /**
1408
1046
  * <p>The configuration that allows a bot to receive outgoing events. Can be either an HTTPS endpoint or a Lambda function ARN.</p>
1409
1047
  * @public
@@ -1552,21 +1190,6 @@ export interface GetPhoneNumberRequest {
1552
1190
  */
1553
1191
  PhoneNumberId: string | undefined;
1554
1192
  }
1555
- /**
1556
- * @public
1557
- * @enum
1558
- */
1559
- export declare const PhoneNumberAssociationName: {
1560
- readonly AccountId: "AccountId";
1561
- readonly SipRuleId: "SipRuleId";
1562
- readonly UserId: "UserId";
1563
- readonly VoiceConnectorGroupId: "VoiceConnectorGroupId";
1564
- readonly VoiceConnectorId: "VoiceConnectorId";
1565
- };
1566
- /**
1567
- * @public
1568
- */
1569
- export type PhoneNumberAssociationName = (typeof PhoneNumberAssociationName)[keyof typeof PhoneNumberAssociationName];
1570
1193
  /**
1571
1194
  * <p>The phone number associations, such as Amazon Chime account ID, Amazon Chime user ID, Amazon
1572
1195
  * Chime Voice Connector ID, or Amazon Chime Voice Connector group ID.</p>
@@ -1627,36 +1250,6 @@ export interface PhoneNumberCapabilities {
1627
1250
  */
1628
1251
  OutboundMMS?: boolean | undefined;
1629
1252
  }
1630
- /**
1631
- * @public
1632
- * @enum
1633
- */
1634
- export declare const PhoneNumberStatus: {
1635
- readonly AcquireFailed: "AcquireFailed";
1636
- readonly AcquireInProgress: "AcquireInProgress";
1637
- readonly Assigned: "Assigned";
1638
- readonly DeleteFailed: "DeleteFailed";
1639
- readonly DeleteInProgress: "DeleteInProgress";
1640
- readonly ReleaseFailed: "ReleaseFailed";
1641
- readonly ReleaseInProgress: "ReleaseInProgress";
1642
- readonly Unassigned: "Unassigned";
1643
- };
1644
- /**
1645
- * @public
1646
- */
1647
- export type PhoneNumberStatus = (typeof PhoneNumberStatus)[keyof typeof PhoneNumberStatus];
1648
- /**
1649
- * @public
1650
- * @enum
1651
- */
1652
- export declare const PhoneNumberType: {
1653
- readonly Local: "Local";
1654
- readonly TollFree: "TollFree";
1655
- };
1656
- /**
1657
- * @public
1658
- */
1659
- export type PhoneNumberType = (typeof PhoneNumberType)[keyof typeof PhoneNumberType];
1660
1253
  /**
1661
1254
  * <p>A phone number used for Amazon Chime Business Calling or an Amazon Chime Voice
1662
1255
  * Connector.</p>
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { ChimeExtensionConfiguration } 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 { ChimeServiceException } from "./models/ChimeServiceException";
@@ -0,0 +1,134 @@
1
+ export declare const ErrorCode: {
2
+ readonly AccessDenied: "AccessDenied";
3
+ readonly BadRequest: "BadRequest";
4
+ readonly Conflict: "Conflict";
5
+ readonly Forbidden: "Forbidden";
6
+ readonly NotFound: "NotFound";
7
+ readonly PhoneNumberAssociationsExist: "PhoneNumberAssociationsExist";
8
+ readonly PreconditionFailed: "PreconditionFailed";
9
+ readonly ResourceLimitExceeded: "ResourceLimitExceeded";
10
+ readonly ServiceFailure: "ServiceFailure";
11
+ readonly ServiceUnavailable: "ServiceUnavailable";
12
+ readonly Throttled: "Throttled";
13
+ readonly Throttling: "Throttling";
14
+ readonly Unauthorized: "Unauthorized";
15
+ readonly Unprocessable: "Unprocessable";
16
+ readonly VoiceConnectorGroupAssociationsExist: "VoiceConnectorGroupAssociationsExist";
17
+ };
18
+ export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
19
+ export declare const AccountStatus: {
20
+ readonly Active: "Active";
21
+ readonly Suspended: "Suspended";
22
+ };
23
+ export type AccountStatus = (typeof AccountStatus)[keyof typeof AccountStatus];
24
+ export declare const AccountType: {
25
+ readonly EnterpriseDirectory: "EnterpriseDirectory";
26
+ readonly EnterpriseLWA: "EnterpriseLWA";
27
+ readonly EnterpriseOIDC: "EnterpriseOIDC";
28
+ readonly Team: "Team";
29
+ };
30
+ export type AccountType = (typeof AccountType)[keyof typeof AccountType];
31
+ export declare const License: {
32
+ readonly Basic: "Basic";
33
+ readonly Plus: "Plus";
34
+ readonly Pro: "Pro";
35
+ readonly ProTrial: "ProTrial";
36
+ };
37
+ export type License = (typeof License)[keyof typeof License];
38
+ export declare const RoomMembershipRole: {
39
+ readonly Administrator: "Administrator";
40
+ readonly Member: "Member";
41
+ };
42
+ export type RoomMembershipRole =
43
+ (typeof RoomMembershipRole)[keyof typeof RoomMembershipRole];
44
+ export declare const PhoneNumberProductType: {
45
+ readonly BusinessCalling: "BusinessCalling";
46
+ readonly SipMediaApplicationDialIn: "SipMediaApplicationDialIn";
47
+ readonly VoiceConnector: "VoiceConnector";
48
+ };
49
+ export type PhoneNumberProductType =
50
+ (typeof PhoneNumberProductType)[keyof typeof PhoneNumberProductType];
51
+ export declare const UserType: {
52
+ readonly PrivateUser: "PrivateUser";
53
+ readonly SharedDevice: "SharedDevice";
54
+ };
55
+ export type UserType = (typeof UserType)[keyof typeof UserType];
56
+ export declare const BotType: {
57
+ readonly ChatBot: "ChatBot";
58
+ };
59
+ export type BotType = (typeof BotType)[keyof typeof BotType];
60
+ export declare const CallingNameStatus: {
61
+ readonly Unassigned: "Unassigned";
62
+ readonly UpdateFailed: "UpdateFailed";
63
+ readonly UpdateInProgress: "UpdateInProgress";
64
+ readonly UpdateSucceeded: "UpdateSucceeded";
65
+ };
66
+ export type CallingNameStatus =
67
+ (typeof CallingNameStatus)[keyof typeof CallingNameStatus];
68
+ export declare const OrderedPhoneNumberStatus: {
69
+ readonly Acquired: "Acquired";
70
+ readonly Failed: "Failed";
71
+ readonly Processing: "Processing";
72
+ };
73
+ export type OrderedPhoneNumberStatus =
74
+ (typeof OrderedPhoneNumberStatus)[keyof typeof OrderedPhoneNumberStatus];
75
+ export declare const PhoneNumberOrderStatus: {
76
+ readonly Failed: "Failed";
77
+ readonly Partial: "Partial";
78
+ readonly Processing: "Processing";
79
+ readonly Successful: "Successful";
80
+ };
81
+ export type PhoneNumberOrderStatus =
82
+ (typeof PhoneNumberOrderStatus)[keyof typeof PhoneNumberOrderStatus];
83
+ export declare const MemberType: {
84
+ readonly Bot: "Bot";
85
+ readonly User: "User";
86
+ readonly Webhook: "Webhook";
87
+ };
88
+ export type MemberType = (typeof MemberType)[keyof typeof MemberType];
89
+ export declare const InviteStatus: {
90
+ readonly Accepted: "Accepted";
91
+ readonly Failed: "Failed";
92
+ readonly Pending: "Pending";
93
+ };
94
+ export type InviteStatus = (typeof InviteStatus)[keyof typeof InviteStatus];
95
+ export declare const RegistrationStatus: {
96
+ readonly Registered: "Registered";
97
+ readonly Suspended: "Suspended";
98
+ readonly Unregistered: "Unregistered";
99
+ };
100
+ export type RegistrationStatus =
101
+ (typeof RegistrationStatus)[keyof typeof RegistrationStatus];
102
+ export declare const EmailStatus: {
103
+ readonly Failed: "Failed";
104
+ readonly NotSent: "NotSent";
105
+ readonly Sent: "Sent";
106
+ };
107
+ export type EmailStatus = (typeof EmailStatus)[keyof typeof EmailStatus];
108
+ export declare const PhoneNumberAssociationName: {
109
+ readonly AccountId: "AccountId";
110
+ readonly SipRuleId: "SipRuleId";
111
+ readonly UserId: "UserId";
112
+ readonly VoiceConnectorGroupId: "VoiceConnectorGroupId";
113
+ readonly VoiceConnectorId: "VoiceConnectorId";
114
+ };
115
+ export type PhoneNumberAssociationName =
116
+ (typeof PhoneNumberAssociationName)[keyof typeof PhoneNumberAssociationName];
117
+ export declare const PhoneNumberStatus: {
118
+ readonly AcquireFailed: "AcquireFailed";
119
+ readonly AcquireInProgress: "AcquireInProgress";
120
+ readonly Assigned: "Assigned";
121
+ readonly DeleteFailed: "DeleteFailed";
122
+ readonly DeleteInProgress: "DeleteInProgress";
123
+ readonly ReleaseFailed: "ReleaseFailed";
124
+ readonly ReleaseInProgress: "ReleaseInProgress";
125
+ readonly Unassigned: "Unassigned";
126
+ };
127
+ export type PhoneNumberStatus =
128
+ (typeof PhoneNumberStatus)[keyof typeof PhoneNumberStatus];
129
+ export declare const PhoneNumberType: {
130
+ readonly Local: "Local";
131
+ readonly TollFree: "TollFree";
132
+ };
133
+ export type PhoneNumberType =
134
+ (typeof PhoneNumberType)[keyof typeof PhoneNumberType];