@aws-sdk/client-chime 3.301.0 → 3.303.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.
@@ -2,24 +2,29 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-cl
2
2
  import { ChimeServiceException as __BaseException } from "./ChimeServiceException";
3
3
  /**
4
4
  * @public
5
+ * @enum
5
6
  */
6
- export declare enum ErrorCode {
7
- AccessDenied = "AccessDenied",
8
- BadRequest = "BadRequest",
9
- Conflict = "Conflict",
10
- Forbidden = "Forbidden",
11
- NotFound = "NotFound",
12
- PhoneNumberAssociationsExist = "PhoneNumberAssociationsExist",
13
- PreconditionFailed = "PreconditionFailed",
14
- ResourceLimitExceeded = "ResourceLimitExceeded",
15
- ServiceFailure = "ServiceFailure",
16
- ServiceUnavailable = "ServiceUnavailable",
17
- Throttled = "Throttled",
18
- Throttling = "Throttling",
19
- Unauthorized = "Unauthorized",
20
- Unprocessable = "Unprocessable",
21
- VoiceConnectorGroupAssociationsExist = "VoiceConnectorGroupAssociationsExist"
22
- }
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];
23
28
  /**
24
29
  * @public
25
30
  * <p>You don't have permissions to perform the requested operation.</p>
@@ -36,29 +41,44 @@ export declare class AccessDeniedException extends __BaseException {
36
41
  }
37
42
  /**
38
43
  * @public
44
+ * @enum
39
45
  */
40
- export declare enum AccountStatus {
41
- Active = "Active",
42
- Suspended = "Suspended"
43
- }
46
+ export declare const AccountStatus: {
47
+ readonly Active: "Active";
48
+ readonly Suspended: "Suspended";
49
+ };
44
50
  /**
45
51
  * @public
46
52
  */
47
- export declare enum AccountType {
48
- EnterpriseDirectory = "EnterpriseDirectory",
49
- EnterpriseLWA = "EnterpriseLWA",
50
- EnterpriseOIDC = "EnterpriseOIDC",
51
- Team = "Team"
52
- }
53
+ export type AccountStatus = (typeof AccountStatus)[keyof typeof AccountStatus];
53
54
  /**
54
55
  * @public
56
+ * @enum
55
57
  */
56
- export declare enum License {
57
- Basic = "Basic",
58
- Plus = "Plus",
59
- Pro = "Pro",
60
- ProTrial = "ProTrial"
61
- }
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];
62
82
  /**
63
83
  * @public
64
84
  * <p>An Active Directory (AD) group whose members are granted permission to act as delegates.</p>
@@ -260,11 +280,16 @@ export interface AppInstanceAdminSummary {
260
280
  }
261
281
  /**
262
282
  * @public
283
+ * @enum
263
284
  */
264
- export declare enum AppInstanceDataType {
265
- Channel = "Channel",
266
- ChannelMessage = "ChannelMessage"
267
- }
285
+ export declare const AppInstanceDataType: {
286
+ readonly Channel: "Channel";
287
+ readonly ChannelMessage: "ChannelMessage";
288
+ };
289
+ /**
290
+ * @public
291
+ */
292
+ export type AppInstanceDataType = (typeof AppInstanceDataType)[keyof typeof AppInstanceDataType];
268
293
  /**
269
294
  * @public
270
295
  * <p>Summary of the data for an <code>AppInstance</code>.</p>
@@ -363,11 +388,16 @@ export interface AppInstanceUserSummary {
363
388
  }
364
389
  /**
365
390
  * @public
391
+ * @enum
366
392
  */
367
- export declare enum ChannelMembershipType {
368
- DEFAULT = "DEFAULT",
369
- HIDDEN = "HIDDEN"
370
- }
393
+ export declare const ChannelMembershipType: {
394
+ readonly DEFAULT: "DEFAULT";
395
+ readonly HIDDEN: "HIDDEN";
396
+ };
397
+ /**
398
+ * @public
399
+ */
400
+ export type ChannelMembershipType = (typeof ChannelMembershipType)[keyof typeof ChannelMembershipType];
371
401
  /**
372
402
  * @public
373
403
  * <p>Summary of the membership details of an <code>AppInstanceUser</code>.</p>
@@ -384,11 +414,16 @@ export interface AppInstanceUserMembershipSummary {
384
414
  }
385
415
  /**
386
416
  * @public
417
+ * @enum
387
418
  */
388
- export declare enum AudioMuxType {
389
- AudioOnly = "AudioOnly",
390
- AudioWithActiveSpeakerVideo = "AudioWithActiveSpeakerVideo"
391
- }
419
+ export declare const AudioMuxType: {
420
+ readonly AudioOnly: "AudioOnly";
421
+ readonly AudioWithActiveSpeakerVideo: "AudioWithActiveSpeakerVideo";
422
+ };
423
+ /**
424
+ * @public
425
+ */
426
+ export type AudioMuxType = (typeof AudioMuxType)[keyof typeof AudioMuxType];
392
427
  /**
393
428
  * @public
394
429
  * <p>The audio artifact configuration object.</p>
@@ -401,17 +436,27 @@ export interface AudioArtifactsConfiguration {
401
436
  }
402
437
  /**
403
438
  * @public
439
+ * @enum
404
440
  */
405
- export declare enum ContentMuxType {
406
- ContentOnly = "ContentOnly"
407
- }
441
+ export declare const ContentMuxType: {
442
+ readonly ContentOnly: "ContentOnly";
443
+ };
408
444
  /**
409
445
  * @public
410
446
  */
411
- export declare enum ArtifactsState {
412
- Disabled = "Disabled",
413
- Enabled = "Enabled"
414
- }
447
+ export type ContentMuxType = (typeof ContentMuxType)[keyof typeof ContentMuxType];
448
+ /**
449
+ * @public
450
+ * @enum
451
+ */
452
+ export declare const ArtifactsState: {
453
+ readonly Disabled: "Disabled";
454
+ readonly Enabled: "Enabled";
455
+ };
456
+ /**
457
+ * @public
458
+ */
459
+ export type ArtifactsState = (typeof ArtifactsState)[keyof typeof ArtifactsState];
415
460
  /**
416
461
  * @public
417
462
  * <p>The content artifact object.</p>
@@ -428,10 +473,15 @@ export interface ContentArtifactsConfiguration {
428
473
  }
429
474
  /**
430
475
  * @public
476
+ * @enum
431
477
  */
432
- export declare enum VideoMuxType {
433
- VideoOnly = "VideoOnly"
434
- }
478
+ export declare const VideoMuxType: {
479
+ readonly VideoOnly: "VideoOnly";
480
+ };
481
+ /**
482
+ * @public
483
+ */
484
+ export type VideoMuxType = (typeof VideoMuxType)[keyof typeof VideoMuxType];
435
485
  /**
436
486
  * @public
437
487
  * <p>The video artifact configuration object.</p>
@@ -876,11 +926,16 @@ export interface BatchCreateChannelMembershipResponse {
876
926
  }
877
927
  /**
878
928
  * @public
929
+ * @enum
879
930
  */
880
- export declare enum RoomMembershipRole {
881
- Administrator = "Administrator",
882
- Member = "Member"
883
- }
931
+ export declare const RoomMembershipRole: {
932
+ readonly Administrator: "Administrator";
933
+ readonly Member: "Member";
934
+ };
935
+ /**
936
+ * @public
937
+ */
938
+ export type RoomMembershipRole = (typeof RoomMembershipRole)[keyof typeof RoomMembershipRole];
884
939
  /**
885
940
  * @public
886
941
  * <p>Membership details, such as member ID and member role.</p>
@@ -1024,12 +1079,17 @@ export interface BatchUnsuspendUserResponse {
1024
1079
  }
1025
1080
  /**
1026
1081
  * @public
1082
+ * @enum
1027
1083
  */
1028
- export declare enum PhoneNumberProductType {
1029
- BusinessCalling = "BusinessCalling",
1030
- SipMediaApplicationDialIn = "SipMediaApplicationDialIn",
1031
- VoiceConnector = "VoiceConnector"
1032
- }
1084
+ export declare const PhoneNumberProductType: {
1085
+ readonly BusinessCalling: "BusinessCalling";
1086
+ readonly SipMediaApplicationDialIn: "SipMediaApplicationDialIn";
1087
+ readonly VoiceConnector: "VoiceConnector";
1088
+ };
1089
+ /**
1090
+ * @public
1091
+ */
1092
+ export type PhoneNumberProductType = (typeof PhoneNumberProductType)[keyof typeof PhoneNumberProductType];
1033
1093
  /**
1034
1094
  * @public
1035
1095
  * <p>The phone number ID, product type, or calling name fields to update, used with the
@@ -1069,11 +1129,16 @@ export interface BatchUpdatePhoneNumberResponse {
1069
1129
  }
1070
1130
  /**
1071
1131
  * @public
1132
+ * @enum
1072
1133
  */
1073
- export declare enum UserType {
1074
- PrivateUser = "PrivateUser",
1075
- SharedDevice = "SharedDevice"
1076
- }
1134
+ export declare const UserType: {
1135
+ readonly PrivateUser: "PrivateUser";
1136
+ readonly SharedDevice: "SharedDevice";
1137
+ };
1138
+ /**
1139
+ * @public
1140
+ */
1141
+ export type UserType = (typeof UserType)[keyof typeof UserType];
1077
1142
  /**
1078
1143
  * @public
1079
1144
  * <p>The user ID and user fields to update, used with the
@@ -1122,10 +1187,15 @@ export interface BatchUpdateUserResponse {
1122
1187
  }
1123
1188
  /**
1124
1189
  * @public
1190
+ * @enum
1125
1191
  */
1126
- export declare enum BotType {
1127
- ChatBot = "ChatBot"
1128
- }
1192
+ export declare const BotType: {
1193
+ readonly ChatBot: "ChatBot";
1194
+ };
1195
+ /**
1196
+ * @public
1197
+ */
1198
+ export type BotType = (typeof BotType)[keyof typeof BotType];
1129
1199
  /**
1130
1200
  * @public
1131
1201
  * <p>A resource that allows Enterprise account administrators to configure an interface to receive events from Amazon Chime.</p>
@@ -1181,13 +1251,18 @@ export interface BusinessCallingSettings {
1181
1251
  }
1182
1252
  /**
1183
1253
  * @public
1254
+ * @enum
1184
1255
  */
1185
- export declare enum CallingNameStatus {
1186
- Unassigned = "Unassigned",
1187
- UpdateFailed = "UpdateFailed",
1188
- UpdateInProgress = "UpdateInProgress",
1189
- UpdateSucceeded = "UpdateSucceeded"
1190
- }
1256
+ export declare const CallingNameStatus: {
1257
+ readonly Unassigned: "Unassigned";
1258
+ readonly UpdateFailed: "UpdateFailed";
1259
+ readonly UpdateInProgress: "UpdateInProgress";
1260
+ readonly UpdateSucceeded: "UpdateSucceeded";
1261
+ };
1262
+ /**
1263
+ * @public
1264
+ */
1265
+ export type CallingNameStatus = (typeof CallingNameStatus)[keyof typeof CallingNameStatus];
1191
1266
  /**
1192
1267
  * @public
1193
1268
  * <p>A suggested address.</p>
@@ -1224,25 +1299,40 @@ export interface CandidateAddress {
1224
1299
  }
1225
1300
  /**
1226
1301
  * @public
1302
+ * @enum
1227
1303
  */
1228
- export declare enum Capability {
1229
- SMS = "SMS",
1230
- Voice = "Voice"
1231
- }
1304
+ export declare const Capability: {
1305
+ readonly SMS: "SMS";
1306
+ readonly Voice: "Voice";
1307
+ };
1232
1308
  /**
1233
1309
  * @public
1234
1310
  */
1235
- export declare enum ChannelMode {
1236
- RESTRICTED = "RESTRICTED",
1237
- UNRESTRICTED = "UNRESTRICTED"
1238
- }
1311
+ export type Capability = (typeof Capability)[keyof typeof Capability];
1239
1312
  /**
1240
1313
  * @public
1314
+ * @enum
1241
1315
  */
1242
- export declare enum ChannelPrivacy {
1243
- PRIVATE = "PRIVATE",
1244
- PUBLIC = "PUBLIC"
1245
- }
1316
+ export declare const ChannelMode: {
1317
+ readonly RESTRICTED: "RESTRICTED";
1318
+ readonly UNRESTRICTED: "UNRESTRICTED";
1319
+ };
1320
+ /**
1321
+ * @public
1322
+ */
1323
+ export type ChannelMode = (typeof ChannelMode)[keyof typeof ChannelMode];
1324
+ /**
1325
+ * @public
1326
+ * @enum
1327
+ */
1328
+ export declare const ChannelPrivacy: {
1329
+ readonly PRIVATE: "PRIVATE";
1330
+ readonly PUBLIC: "PUBLIC";
1331
+ };
1332
+ /**
1333
+ * @public
1334
+ */
1335
+ export type ChannelPrivacy = (typeof ChannelPrivacy)[keyof typeof ChannelPrivacy];
1246
1336
  /**
1247
1337
  * @public
1248
1338
  * <p>The details of a channel.</p>
@@ -1403,18 +1493,28 @@ export interface ChannelMembershipSummary {
1403
1493
  }
1404
1494
  /**
1405
1495
  * @public
1496
+ * @enum
1406
1497
  */
1407
- export declare enum ChannelMessagePersistenceType {
1408
- NON_PERSISTENT = "NON_PERSISTENT",
1409
- PERSISTENT = "PERSISTENT"
1410
- }
1498
+ export declare const ChannelMessagePersistenceType: {
1499
+ readonly NON_PERSISTENT: "NON_PERSISTENT";
1500
+ readonly PERSISTENT: "PERSISTENT";
1501
+ };
1411
1502
  /**
1412
1503
  * @public
1413
1504
  */
1414
- export declare enum ChannelMessageType {
1415
- CONTROL = "CONTROL",
1416
- STANDARD = "STANDARD"
1417
- }
1505
+ export type ChannelMessagePersistenceType = (typeof ChannelMessagePersistenceType)[keyof typeof ChannelMessagePersistenceType];
1506
+ /**
1507
+ * @public
1508
+ * @enum
1509
+ */
1510
+ export declare const ChannelMessageType: {
1511
+ readonly CONTROL: "CONTROL";
1512
+ readonly STANDARD: "STANDARD";
1513
+ };
1514
+ /**
1515
+ * @public
1516
+ */
1517
+ export type ChannelMessageType = (typeof ChannelMessageType)[keyof typeof ChannelMessageType];
1418
1518
  /**
1419
1519
  * @public
1420
1520
  * <p>The details of a message in a channel.</p>
@@ -1927,16 +2027,26 @@ export interface CreateChannelModeratorResponse {
1927
2027
  }
1928
2028
  /**
1929
2029
  * @public
2030
+ * @enum
1930
2031
  */
1931
- export declare enum MediaPipelineSinkType {
1932
- S3Bucket = "S3Bucket"
1933
- }
2032
+ export declare const MediaPipelineSinkType: {
2033
+ readonly S3Bucket: "S3Bucket";
2034
+ };
1934
2035
  /**
1935
2036
  * @public
1936
2037
  */
1937
- export declare enum MediaPipelineSourceType {
1938
- ChimeSdkMeeting = "ChimeSdkMeeting"
1939
- }
2038
+ export type MediaPipelineSinkType = (typeof MediaPipelineSinkType)[keyof typeof MediaPipelineSinkType];
2039
+ /**
2040
+ * @public
2041
+ * @enum
2042
+ */
2043
+ export declare const MediaPipelineSourceType: {
2044
+ readonly ChimeSdkMeeting: "ChimeSdkMeeting";
2045
+ };
2046
+ /**
2047
+ * @public
2048
+ */
2049
+ export type MediaPipelineSourceType = (typeof MediaPipelineSourceType)[keyof typeof MediaPipelineSourceType];
1940
2050
  /**
1941
2051
  * @public
1942
2052
  */
@@ -1969,14 +2079,19 @@ export interface CreateMediaCapturePipelineRequest {
1969
2079
  }
1970
2080
  /**
1971
2081
  * @public
2082
+ * @enum
1972
2083
  */
1973
- export declare enum MediaPipelineStatus {
1974
- Failed = "Failed",
1975
- InProgress = "InProgress",
1976
- Initializing = "Initializing",
1977
- Stopped = "Stopped",
1978
- Stopping = "Stopping"
1979
- }
2084
+ export declare const MediaPipelineStatus: {
2085
+ readonly Failed: "Failed";
2086
+ readonly InProgress: "InProgress";
2087
+ readonly Initializing: "Initializing";
2088
+ readonly Stopped: "Stopped";
2089
+ readonly Stopping: "Stopping";
2090
+ };
2091
+ /**
2092
+ * @public
2093
+ */
2094
+ export type MediaPipelineStatus = (typeof MediaPipelineStatus)[keyof typeof MediaPipelineStatus];
1980
2095
  /**
1981
2096
  * @public
1982
2097
  * <p>A media capture pipeline object consisting of an ID, source type, source ARN, a sink type, a sink ARN, and a configuration object.</p>
@@ -2333,12 +2448,17 @@ export interface CreatePhoneNumberOrderRequest {
2333
2448
  }
2334
2449
  /**
2335
2450
  * @public
2451
+ * @enum
2336
2452
  */
2337
- export declare enum OrderedPhoneNumberStatus {
2338
- Acquired = "Acquired",
2339
- Failed = "Failed",
2340
- Processing = "Processing"
2341
- }
2453
+ export declare const OrderedPhoneNumberStatus: {
2454
+ readonly Acquired: "Acquired";
2455
+ readonly Failed: "Failed";
2456
+ readonly Processing: "Processing";
2457
+ };
2458
+ /**
2459
+ * @public
2460
+ */
2461
+ export type OrderedPhoneNumberStatus = (typeof OrderedPhoneNumberStatus)[keyof typeof OrderedPhoneNumberStatus];
2342
2462
  /**
2343
2463
  * @public
2344
2464
  * <p>A phone number for which an order has been placed.</p>
@@ -2355,13 +2475,18 @@ export interface OrderedPhoneNumber {
2355
2475
  }
2356
2476
  /**
2357
2477
  * @public
2478
+ * @enum
2358
2479
  */
2359
- export declare enum PhoneNumberOrderStatus {
2360
- Failed = "Failed",
2361
- Partial = "Partial",
2362
- Processing = "Processing",
2363
- Successful = "Successful"
2364
- }
2480
+ export declare const PhoneNumberOrderStatus: {
2481
+ readonly Failed: "Failed";
2482
+ readonly Partial: "Partial";
2483
+ readonly Processing: "Processing";
2484
+ readonly Successful: "Successful";
2485
+ };
2486
+ /**
2487
+ * @public
2488
+ */
2489
+ export type PhoneNumberOrderStatus = (typeof PhoneNumberOrderStatus)[keyof typeof PhoneNumberOrderStatus];
2365
2490
  /**
2366
2491
  * @public
2367
2492
  * <p>The details of a phone number order created for Amazon Chime.</p>
@@ -2404,11 +2529,16 @@ export interface CreatePhoneNumberOrderResponse {
2404
2529
  }
2405
2530
  /**
2406
2531
  * @public
2532
+ * @enum
2407
2533
  */
2408
- export declare enum GeoMatchLevel {
2409
- AreaCode = "AreaCode",
2410
- Country = "Country"
2411
- }
2534
+ export declare const GeoMatchLevel: {
2535
+ readonly AreaCode: "AreaCode";
2536
+ readonly Country: "Country";
2537
+ };
2538
+ /**
2539
+ * @public
2540
+ */
2541
+ export type GeoMatchLevel = (typeof GeoMatchLevel)[keyof typeof GeoMatchLevel];
2412
2542
  /**
2413
2543
  * @public
2414
2544
  * <p>The country and area code for a proxy phone number in a proxy phone session.</p>
@@ -2425,11 +2555,16 @@ export interface GeoMatchParams {
2425
2555
  }
2426
2556
  /**
2427
2557
  * @public
2558
+ * @enum
2428
2559
  */
2429
- export declare enum NumberSelectionBehavior {
2430
- AvoidSticky = "AvoidSticky",
2431
- PreferSticky = "PreferSticky"
2432
- }
2560
+ export declare const NumberSelectionBehavior: {
2561
+ readonly AvoidSticky: "AvoidSticky";
2562
+ readonly PreferSticky: "PreferSticky";
2563
+ };
2564
+ /**
2565
+ * @public
2566
+ */
2567
+ export type NumberSelectionBehavior = (typeof NumberSelectionBehavior)[keyof typeof NumberSelectionBehavior];
2433
2568
  /**
2434
2569
  * @public
2435
2570
  */
@@ -2483,12 +2618,17 @@ export interface Participant {
2483
2618
  }
2484
2619
  /**
2485
2620
  * @public
2621
+ * @enum
2486
2622
  */
2487
- export declare enum ProxySessionStatus {
2488
- Closed = "Closed",
2489
- InProgress = "InProgress",
2490
- Open = "Open"
2491
- }
2623
+ export declare const ProxySessionStatus: {
2624
+ readonly Closed: "Closed";
2625
+ readonly InProgress: "InProgress";
2626
+ readonly Open: "Open";
2627
+ };
2628
+ /**
2629
+ * @public
2630
+ */
2631
+ export type ProxySessionStatus = (typeof ProxySessionStatus)[keyof typeof ProxySessionStatus];
2492
2632
  /**
2493
2633
  * @public
2494
2634
  * <p>The proxy session for an Amazon Chime Voice Connector.</p>
@@ -2635,12 +2775,17 @@ export interface CreateRoomMembershipRequest {
2635
2775
  }
2636
2776
  /**
2637
2777
  * @public
2778
+ * @enum
2638
2779
  */
2639
- export declare enum MemberType {
2640
- Bot = "Bot",
2641
- User = "User",
2642
- Webhook = "Webhook"
2643
- }
2780
+ export declare const MemberType: {
2781
+ readonly Bot: "Bot";
2782
+ readonly User: "User";
2783
+ readonly Webhook: "Webhook";
2784
+ };
2785
+ /**
2786
+ * @public
2787
+ */
2788
+ export type MemberType = (typeof MemberType)[keyof typeof MemberType];
2644
2789
  /**
2645
2790
  * @public
2646
2791
  * <p>The member details, such as email address, name, member ID, and member type.</p>
@@ -2829,11 +2974,16 @@ export interface SipRuleTargetApplication {
2829
2974
  }
2830
2975
  /**
2831
2976
  * @public
2977
+ * @enum
2832
2978
  */
2833
- export declare enum SipRuleTriggerType {
2834
- RequestUriHostname = "RequestUriHostname",
2835
- ToPhoneNumber = "ToPhoneNumber"
2836
- }
2979
+ export declare const SipRuleTriggerType: {
2980
+ readonly RequestUriHostname: "RequestUriHostname";
2981
+ readonly ToPhoneNumber: "ToPhoneNumber";
2982
+ };
2983
+ /**
2984
+ * @public
2985
+ */
2986
+ export type SipRuleTriggerType = (typeof SipRuleTriggerType)[keyof typeof SipRuleTriggerType];
2837
2987
  /**
2838
2988
  * @public
2839
2989
  */
@@ -2940,20 +3090,30 @@ export interface CreateUserRequest {
2940
3090
  }
2941
3091
  /**
2942
3092
  * @public
3093
+ * @enum
2943
3094
  */
2944
- export declare enum InviteStatus {
2945
- Accepted = "Accepted",
2946
- Failed = "Failed",
2947
- Pending = "Pending"
2948
- }
3095
+ export declare const InviteStatus: {
3096
+ readonly Accepted: "Accepted";
3097
+ readonly Failed: "Failed";
3098
+ readonly Pending: "Pending";
3099
+ };
2949
3100
  /**
2950
3101
  * @public
2951
3102
  */
2952
- export declare enum RegistrationStatus {
2953
- Registered = "Registered",
2954
- Suspended = "Suspended",
2955
- Unregistered = "Unregistered"
2956
- }
3103
+ export type InviteStatus = (typeof InviteStatus)[keyof typeof InviteStatus];
3104
+ /**
3105
+ * @public
3106
+ * @enum
3107
+ */
3108
+ export declare const RegistrationStatus: {
3109
+ readonly Registered: "Registered";
3110
+ readonly Suspended: "Suspended";
3111
+ readonly Unregistered: "Unregistered";
3112
+ };
3113
+ /**
3114
+ * @public
3115
+ */
3116
+ export type RegistrationStatus = (typeof RegistrationStatus)[keyof typeof RegistrationStatus];
2957
3117
  /**
2958
3118
  * @public
2959
3119
  * <p>The user on the Amazon Chime account.</p>
@@ -3023,11 +3183,16 @@ export interface CreateUserResponse {
3023
3183
  }
3024
3184
  /**
3025
3185
  * @public
3186
+ * @enum
3026
3187
  */
3027
- export declare enum VoiceConnectorAwsRegion {
3028
- US_EAST_1 = "us-east-1",
3029
- US_WEST_2 = "us-west-2"
3030
- }
3188
+ export declare const VoiceConnectorAwsRegion: {
3189
+ readonly US_EAST_1: "us-east-1";
3190
+ readonly US_WEST_2: "us-west-2";
3191
+ };
3192
+ /**
3193
+ * @public
3194
+ */
3195
+ export type VoiceConnectorAwsRegion = (typeof VoiceConnectorAwsRegion)[keyof typeof VoiceConnectorAwsRegion];
3031
3196
  /**
3032
3197
  * @public
3033
3198
  */
@@ -3837,12 +4002,17 @@ export interface DNISEmergencyCallingConfiguration {
3837
4002
  }
3838
4003
  /**
3839
4004
  * @public
4005
+ * @enum
3840
4006
  */
3841
- export declare enum EmailStatus {
3842
- Failed = "Failed",
3843
- NotSent = "NotSent",
3844
- Sent = "Sent"
3845
- }
4007
+ export declare const EmailStatus: {
4008
+ readonly Failed: "Failed";
4009
+ readonly NotSent: "NotSent";
4010
+ readonly Sent: "Sent";
4011
+ };
4012
+ /**
4013
+ * @public
4014
+ */
4015
+ export type EmailStatus = (typeof EmailStatus)[keyof typeof EmailStatus];
3846
4016
  /**
3847
4017
  * @public
3848
4018
  * <p>The emergency calling configuration details associated with an Amazon Chime Voice Connector.</p>
@@ -3855,46 +4025,71 @@ export interface EmergencyCallingConfiguration {
3855
4025
  }
3856
4026
  /**
3857
4027
  * @public
4028
+ * @enum
3858
4029
  */
3859
- export declare enum TranscribeMedicalContentIdentificationType {
3860
- PHI = "PHI"
3861
- }
4030
+ export declare const TranscribeMedicalContentIdentificationType: {
4031
+ readonly PHI: "PHI";
4032
+ };
3862
4033
  /**
3863
4034
  * @public
3864
4035
  */
3865
- export declare enum TranscribeMedicalLanguageCode {
3866
- EN_US = "en-US"
3867
- }
4036
+ export type TranscribeMedicalContentIdentificationType = (typeof TranscribeMedicalContentIdentificationType)[keyof typeof TranscribeMedicalContentIdentificationType];
3868
4037
  /**
3869
4038
  * @public
4039
+ * @enum
3870
4040
  */
3871
- export declare enum TranscribeMedicalRegion {
3872
- AP_SOUTHEAST_2 = "ap-southeast-2",
3873
- AUTO = "auto",
3874
- CA_CENTRAL_1 = "ca-central-1",
3875
- EU_WEST_1 = "eu-west-1",
3876
- US_EAST_1 = "us-east-1",
3877
- US_EAST_2 = "us-east-2",
3878
- US_WEST_2 = "us-west-2"
3879
- }
4041
+ export declare const TranscribeMedicalLanguageCode: {
4042
+ readonly EN_US: "en-US";
4043
+ };
3880
4044
  /**
3881
4045
  * @public
3882
4046
  */
3883
- export declare enum TranscribeMedicalSpecialty {
3884
- Cardiology = "CARDIOLOGY",
3885
- Neurology = "NEUROLOGY",
3886
- Oncology = "ONCOLOGY",
3887
- PrimaryCare = "PRIMARYCARE",
3888
- Radiology = "RADIOLOGY",
3889
- Urology = "UROLOGY"
3890
- }
4047
+ export type TranscribeMedicalLanguageCode = (typeof TranscribeMedicalLanguageCode)[keyof typeof TranscribeMedicalLanguageCode];
3891
4048
  /**
3892
4049
  * @public
4050
+ * @enum
3893
4051
  */
3894
- export declare enum TranscribeMedicalType {
3895
- Conversation = "CONVERSATION",
3896
- Dictation = "DICTATION"
3897
- }
4052
+ export declare const TranscribeMedicalRegion: {
4053
+ readonly AP_SOUTHEAST_2: "ap-southeast-2";
4054
+ readonly AUTO: "auto";
4055
+ readonly CA_CENTRAL_1: "ca-central-1";
4056
+ readonly EU_WEST_1: "eu-west-1";
4057
+ readonly US_EAST_1: "us-east-1";
4058
+ readonly US_EAST_2: "us-east-2";
4059
+ readonly US_WEST_2: "us-west-2";
4060
+ };
4061
+ /**
4062
+ * @public
4063
+ */
4064
+ export type TranscribeMedicalRegion = (typeof TranscribeMedicalRegion)[keyof typeof TranscribeMedicalRegion];
4065
+ /**
4066
+ * @public
4067
+ * @enum
4068
+ */
4069
+ export declare const TranscribeMedicalSpecialty: {
4070
+ readonly Cardiology: "CARDIOLOGY";
4071
+ readonly Neurology: "NEUROLOGY";
4072
+ readonly Oncology: "ONCOLOGY";
4073
+ readonly PrimaryCare: "PRIMARYCARE";
4074
+ readonly Radiology: "RADIOLOGY";
4075
+ readonly Urology: "UROLOGY";
4076
+ };
4077
+ /**
4078
+ * @public
4079
+ */
4080
+ export type TranscribeMedicalSpecialty = (typeof TranscribeMedicalSpecialty)[keyof typeof TranscribeMedicalSpecialty];
4081
+ /**
4082
+ * @public
4083
+ * @enum
4084
+ */
4085
+ export declare const TranscribeMedicalType: {
4086
+ readonly Conversation: "CONVERSATION";
4087
+ readonly Dictation: "DICTATION";
4088
+ };
4089
+ /**
4090
+ * @public
4091
+ */
4092
+ export type TranscribeMedicalType = (typeof TranscribeMedicalType)[keyof typeof TranscribeMedicalType];
3898
4093
  /**
3899
4094
  * @public
3900
4095
  * <p>Settings specific to the Amazon Transcribe Medical engine.</p>
@@ -3927,66 +4122,96 @@ export interface EngineTranscribeMedicalSettings {
3927
4122
  }
3928
4123
  /**
3929
4124
  * @public
4125
+ * @enum
3930
4126
  */
3931
- export declare enum TranscribeContentIdentificationType {
3932
- PII = "PII"
3933
- }
4127
+ export declare const TranscribeContentIdentificationType: {
4128
+ readonly PII: "PII";
4129
+ };
3934
4130
  /**
3935
4131
  * @public
3936
4132
  */
3937
- export declare enum TranscribeContentRedactionType {
3938
- PII = "PII"
3939
- }
4133
+ export type TranscribeContentIdentificationType = (typeof TranscribeContentIdentificationType)[keyof typeof TranscribeContentIdentificationType];
3940
4134
  /**
3941
4135
  * @public
4136
+ * @enum
3942
4137
  */
3943
- export declare enum TranscribeLanguageCode {
3944
- DE_DE = "de-DE",
3945
- EN_AU = "en-AU",
3946
- EN_GB = "en-GB",
3947
- EN_US = "en-US",
3948
- ES_US = "es-US",
3949
- FR_CA = "fr-CA",
3950
- FR_FR = "fr-FR",
3951
- IT_IT = "it-IT",
3952
- JA_JP = "ja-JP",
3953
- KO_KR = "ko-KR",
3954
- PT_BR = "pt-BR",
3955
- ZH_CN = "zh-CN"
3956
- }
4138
+ export declare const TranscribeContentRedactionType: {
4139
+ readonly PII: "PII";
4140
+ };
3957
4141
  /**
3958
4142
  * @public
3959
4143
  */
3960
- export declare enum TranscribePartialResultsStability {
3961
- HIGH = "high",
3962
- LOW = "low",
3963
- MEDIUM = "medium"
3964
- }
4144
+ export type TranscribeContentRedactionType = (typeof TranscribeContentRedactionType)[keyof typeof TranscribeContentRedactionType];
3965
4145
  /**
3966
4146
  * @public
4147
+ * @enum
3967
4148
  */
3968
- export declare enum TranscribeRegion {
3969
- AP_NORTHEAST_1 = "ap-northeast-1",
3970
- AP_NORTHEAST_2 = "ap-northeast-2",
3971
- AP_SOUTHEAST_2 = "ap-southeast-2",
3972
- AUTO = "auto",
3973
- CA_CENTRAL_1 = "ca-central-1",
3974
- EU_CENTRAL_1 = "eu-central-1",
3975
- EU_WEST_1 = "eu-west-1",
3976
- EU_WEST_2 = "eu-west-2",
3977
- SA_EAST_1 = "sa-east-1",
3978
- US_EAST_1 = "us-east-1",
3979
- US_EAST_2 = "us-east-2",
3980
- US_WEST_2 = "us-west-2"
3981
- }
4149
+ export declare const TranscribeLanguageCode: {
4150
+ readonly DE_DE: "de-DE";
4151
+ readonly EN_AU: "en-AU";
4152
+ readonly EN_GB: "en-GB";
4153
+ readonly EN_US: "en-US";
4154
+ readonly ES_US: "es-US";
4155
+ readonly FR_CA: "fr-CA";
4156
+ readonly FR_FR: "fr-FR";
4157
+ readonly IT_IT: "it-IT";
4158
+ readonly JA_JP: "ja-JP";
4159
+ readonly KO_KR: "ko-KR";
4160
+ readonly PT_BR: "pt-BR";
4161
+ readonly ZH_CN: "zh-CN";
4162
+ };
3982
4163
  /**
3983
4164
  * @public
3984
4165
  */
3985
- export declare enum TranscribeVocabularyFilterMethod {
3986
- Mask = "mask",
3987
- Remove = "remove",
3988
- Tag = "tag"
3989
- }
4166
+ export type TranscribeLanguageCode = (typeof TranscribeLanguageCode)[keyof typeof TranscribeLanguageCode];
4167
+ /**
4168
+ * @public
4169
+ * @enum
4170
+ */
4171
+ export declare const TranscribePartialResultsStability: {
4172
+ readonly HIGH: "high";
4173
+ readonly LOW: "low";
4174
+ readonly MEDIUM: "medium";
4175
+ };
4176
+ /**
4177
+ * @public
4178
+ */
4179
+ export type TranscribePartialResultsStability = (typeof TranscribePartialResultsStability)[keyof typeof TranscribePartialResultsStability];
4180
+ /**
4181
+ * @public
4182
+ * @enum
4183
+ */
4184
+ export declare const TranscribeRegion: {
4185
+ readonly AP_NORTHEAST_1: "ap-northeast-1";
4186
+ readonly AP_NORTHEAST_2: "ap-northeast-2";
4187
+ readonly AP_SOUTHEAST_2: "ap-southeast-2";
4188
+ readonly AUTO: "auto";
4189
+ readonly CA_CENTRAL_1: "ca-central-1";
4190
+ readonly EU_CENTRAL_1: "eu-central-1";
4191
+ readonly EU_WEST_1: "eu-west-1";
4192
+ readonly EU_WEST_2: "eu-west-2";
4193
+ readonly SA_EAST_1: "sa-east-1";
4194
+ readonly US_EAST_1: "us-east-1";
4195
+ readonly US_EAST_2: "us-east-2";
4196
+ readonly US_WEST_2: "us-west-2";
4197
+ };
4198
+ /**
4199
+ * @public
4200
+ */
4201
+ export type TranscribeRegion = (typeof TranscribeRegion)[keyof typeof TranscribeRegion];
4202
+ /**
4203
+ * @public
4204
+ * @enum
4205
+ */
4206
+ export declare const TranscribeVocabularyFilterMethod: {
4207
+ readonly Mask: "mask";
4208
+ readonly Remove: "remove";
4209
+ readonly Tag: "tag";
4210
+ };
4211
+ /**
4212
+ * @public
4213
+ */
4214
+ export type TranscribeVocabularyFilterMethod = (typeof TranscribeVocabularyFilterMethod)[keyof typeof TranscribeVocabularyFilterMethod];
3990
4215
  /**
3991
4216
  * @public
3992
4217
  * <p>Settings specific to the Amazon Transcribe engine.</p>
@@ -4325,14 +4550,19 @@ export interface GetPhoneNumberRequest {
4325
4550
  }
4326
4551
  /**
4327
4552
  * @public
4553
+ * @enum
4328
4554
  */
4329
- export declare enum PhoneNumberAssociationName {
4330
- AccountId = "AccountId",
4331
- SipRuleId = "SipRuleId",
4332
- UserId = "UserId",
4333
- VoiceConnectorGroupId = "VoiceConnectorGroupId",
4334
- VoiceConnectorId = "VoiceConnectorId"
4335
- }
4555
+ export declare const PhoneNumberAssociationName: {
4556
+ readonly AccountId: "AccountId";
4557
+ readonly SipRuleId: "SipRuleId";
4558
+ readonly UserId: "UserId";
4559
+ readonly VoiceConnectorGroupId: "VoiceConnectorGroupId";
4560
+ readonly VoiceConnectorId: "VoiceConnectorId";
4561
+ };
4562
+ /**
4563
+ * @public
4564
+ */
4565
+ export type PhoneNumberAssociationName = (typeof PhoneNumberAssociationName)[keyof typeof PhoneNumberAssociationName];
4336
4566
  /**
4337
4567
  * @public
4338
4568
  * <p>The phone number associations, such as Amazon Chime account ID, Amazon Chime user ID, Amazon
@@ -4386,24 +4616,34 @@ export interface PhoneNumberCapabilities {
4386
4616
  }
4387
4617
  /**
4388
4618
  * @public
4619
+ * @enum
4389
4620
  */
4390
- export declare enum PhoneNumberStatus {
4391
- AcquireFailed = "AcquireFailed",
4392
- AcquireInProgress = "AcquireInProgress",
4393
- Assigned = "Assigned",
4394
- DeleteFailed = "DeleteFailed",
4395
- DeleteInProgress = "DeleteInProgress",
4396
- ReleaseFailed = "ReleaseFailed",
4397
- ReleaseInProgress = "ReleaseInProgress",
4398
- Unassigned = "Unassigned"
4399
- }
4621
+ export declare const PhoneNumberStatus: {
4622
+ readonly AcquireFailed: "AcquireFailed";
4623
+ readonly AcquireInProgress: "AcquireInProgress";
4624
+ readonly Assigned: "Assigned";
4625
+ readonly DeleteFailed: "DeleteFailed";
4626
+ readonly DeleteInProgress: "DeleteInProgress";
4627
+ readonly ReleaseFailed: "ReleaseFailed";
4628
+ readonly ReleaseInProgress: "ReleaseInProgress";
4629
+ readonly Unassigned: "Unassigned";
4630
+ };
4400
4631
  /**
4401
4632
  * @public
4402
4633
  */
4403
- export declare enum PhoneNumberType {
4404
- Local = "Local",
4405
- TollFree = "TollFree"
4406
- }
4634
+ export type PhoneNumberStatus = (typeof PhoneNumberStatus)[keyof typeof PhoneNumberStatus];
4635
+ /**
4636
+ * @public
4637
+ * @enum
4638
+ */
4639
+ export declare const PhoneNumberType: {
4640
+ readonly Local: "Local";
4641
+ readonly TollFree: "TollFree";
4642
+ };
4643
+ /**
4644
+ * @public
4645
+ */
4646
+ export type PhoneNumberType = (typeof PhoneNumberType)[keyof typeof PhoneNumberType];
4407
4647
  /**
4408
4648
  * @public
4409
4649
  * <p>A phone number used for Amazon Chime Business Calling or an Amazon Chime Voice