@aws-sdk/client-chime 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.
@@ -32,7 +32,7 @@ export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
32
32
  export declare class AccessDeniedException extends __BaseException {
33
33
  readonly name: "AccessDeniedException";
34
34
  readonly $fault: "client";
35
- Code?: ErrorCode | string;
35
+ Code?: ErrorCode;
36
36
  Message?: string;
37
37
  /**
38
38
  * @internal
@@ -116,7 +116,7 @@ export interface Account {
116
116
  * <a href="https://docs.aws.amazon.com/chime/latest/ag/manage-chime-account.html">Managing Your Amazon Chime Accounts</a> in the <i>Amazon Chime Administration
117
117
  * Guide</i>.</p>
118
118
  */
119
- AccountType?: AccountType | string;
119
+ AccountType?: AccountType;
120
120
  /**
121
121
  * @public
122
122
  * <p>The Amazon Chime account creation timestamp, in ISO 8601 format.</p>
@@ -126,17 +126,17 @@ export interface Account {
126
126
  * @public
127
127
  * <p>The default license for the Amazon Chime account.</p>
128
128
  */
129
- DefaultLicense?: License | string;
129
+ DefaultLicense?: License;
130
130
  /**
131
131
  * @public
132
132
  * <p>Supported licenses for the Amazon Chime account.</p>
133
133
  */
134
- SupportedLicenses?: (License | string)[];
134
+ SupportedLicenses?: License[];
135
135
  /**
136
136
  * @public
137
137
  * <p>The status of the account.</p>
138
138
  */
139
- AccountStatus?: AccountStatus | string;
139
+ AccountStatus?: AccountStatus;
140
140
  /**
141
141
  * @public
142
142
  * <p>The sign-in delegate groups associated with the account.</p>
@@ -377,7 +377,7 @@ export interface AppInstanceStreamingConfiguration {
377
377
  * @public
378
378
  * <p>The type of data to be streamed.</p>
379
379
  */
380
- AppInstanceDataType: AppInstanceDataType | string | undefined;
380
+ AppInstanceDataType: AppInstanceDataType | undefined;
381
381
  /**
382
382
  * @public
383
383
  * <p>The resource ARN.</p>
@@ -457,7 +457,7 @@ export interface AppInstanceUserMembershipSummary {
457
457
  * @public
458
458
  * <p>The type of <code>ChannelMembership</code>.</p>
459
459
  */
460
- Type?: ChannelMembershipType | string;
460
+ Type?: ChannelMembershipType;
461
461
  /**
462
462
  * @public
463
463
  * <p>The time at which a message was last read.</p>
@@ -485,7 +485,7 @@ export interface AudioArtifactsConfiguration {
485
485
  * @public
486
486
  * <p>The MUX type of the audio artifact configuration object.</p>
487
487
  */
488
- MuxType: AudioMuxType | string | undefined;
488
+ MuxType: AudioMuxType | undefined;
489
489
  }
490
490
  /**
491
491
  * @public
@@ -519,12 +519,12 @@ export interface ContentArtifactsConfiguration {
519
519
  * @public
520
520
  * <p>Indicates whether the content artifact is enabled or disabled.</p>
521
521
  */
522
- State: ArtifactsState | string | undefined;
522
+ State: ArtifactsState | undefined;
523
523
  /**
524
524
  * @public
525
525
  * <p>The MUX type of the artifact configuration.</p>
526
526
  */
527
- MuxType?: ContentMuxType | string;
527
+ MuxType?: ContentMuxType;
528
528
  }
529
529
  /**
530
530
  * @public
@@ -546,12 +546,12 @@ export interface VideoArtifactsConfiguration {
546
546
  * @public
547
547
  * <p>Indicates whether the video artifact is enabled or disabled.</p>
548
548
  */
549
- State: ArtifactsState | string | undefined;
549
+ State: ArtifactsState | undefined;
550
550
  /**
551
551
  * @public
552
552
  * <p>The MUX type of the video artifact configuration object.</p>
553
553
  */
554
- MuxType?: VideoMuxType | string;
554
+ MuxType?: VideoMuxType;
555
555
  }
556
556
  /**
557
557
  * @public
@@ -609,7 +609,7 @@ export interface PhoneNumberError {
609
609
  * @public
610
610
  * <p>The error code.</p>
611
611
  */
612
- ErrorCode?: ErrorCode | string;
612
+ ErrorCode?: ErrorCode;
613
613
  /**
614
614
  * @public
615
615
  * <p>The error message.</p>
@@ -634,7 +634,7 @@ export interface AssociatePhoneNumbersWithVoiceConnectorResponse {
634
634
  export declare class BadRequestException extends __BaseException {
635
635
  readonly name: "BadRequestException";
636
636
  readonly $fault: "client";
637
- Code?: ErrorCode | string;
637
+ Code?: ErrorCode;
638
638
  Message?: string;
639
639
  /**
640
640
  * @internal
@@ -648,7 +648,7 @@ export declare class BadRequestException extends __BaseException {
648
648
  export declare class ForbiddenException extends __BaseException {
649
649
  readonly name: "ForbiddenException";
650
650
  readonly $fault: "client";
651
- Code?: ErrorCode | string;
651
+ Code?: ErrorCode;
652
652
  Message?: string;
653
653
  /**
654
654
  * @internal
@@ -662,7 +662,7 @@ export declare class ForbiddenException extends __BaseException {
662
662
  export declare class NotFoundException extends __BaseException {
663
663
  readonly name: "NotFoundException";
664
664
  readonly $fault: "client";
665
- Code?: ErrorCode | string;
665
+ Code?: ErrorCode;
666
666
  Message?: string;
667
667
  /**
668
668
  * @internal
@@ -676,7 +676,7 @@ export declare class NotFoundException extends __BaseException {
676
676
  export declare class ServiceFailureException extends __BaseException {
677
677
  readonly name: "ServiceFailureException";
678
678
  readonly $fault: "server";
679
- Code?: ErrorCode | string;
679
+ Code?: ErrorCode;
680
680
  Message?: string;
681
681
  /**
682
682
  * @internal
@@ -690,7 +690,7 @@ export declare class ServiceFailureException extends __BaseException {
690
690
  export declare class ServiceUnavailableException extends __BaseException {
691
691
  readonly name: "ServiceUnavailableException";
692
692
  readonly $fault: "server";
693
- Code?: ErrorCode | string;
693
+ Code?: ErrorCode;
694
694
  Message?: string;
695
695
  /**
696
696
  * @internal
@@ -704,7 +704,7 @@ export declare class ServiceUnavailableException extends __BaseException {
704
704
  export declare class ThrottledClientException extends __BaseException {
705
705
  readonly name: "ThrottledClientException";
706
706
  readonly $fault: "client";
707
- Code?: ErrorCode | string;
707
+ Code?: ErrorCode;
708
708
  Message?: string;
709
709
  /**
710
710
  * @internal
@@ -718,7 +718,7 @@ export declare class ThrottledClientException extends __BaseException {
718
718
  export declare class UnauthorizedClientException extends __BaseException {
719
719
  readonly name: "UnauthorizedClientException";
720
720
  readonly $fault: "client";
721
- Code?: ErrorCode | string;
721
+ Code?: ErrorCode;
722
722
  Message?: string;
723
723
  /**
724
724
  * @internal
@@ -867,7 +867,7 @@ export interface BatchChannelMemberships {
867
867
  * @public
868
868
  * <p>The membership types set for the channel users.</p>
869
869
  */
870
- Type?: ChannelMembershipType | string;
870
+ Type?: ChannelMembershipType;
871
871
  /**
872
872
  * @public
873
873
  * <p>The users successfully added to the request.</p>
@@ -953,7 +953,7 @@ export interface BatchCreateAttendeeResponse {
953
953
  export declare class ResourceLimitExceededException extends __BaseException {
954
954
  readonly name: "ResourceLimitExceededException";
955
955
  readonly $fault: "client";
956
- Code?: ErrorCode | string;
956
+ Code?: ErrorCode;
957
957
  Message?: string;
958
958
  /**
959
959
  * @internal
@@ -977,7 +977,7 @@ export interface BatchCreateChannelMembershipRequest {
977
977
  * <code>HIDDEN</code>. Otherwise hidden members are not returned. This is only supported
978
978
  * by moderators.</p>
979
979
  */
980
- Type?: ChannelMembershipType | string;
980
+ Type?: ChannelMembershipType;
981
981
  /**
982
982
  * @public
983
983
  * <p>The ARNs of the members you want to add to the channel.</p>
@@ -1003,7 +1003,7 @@ export interface BatchCreateChannelMembershipError {
1003
1003
  * @public
1004
1004
  * <p>The error code.</p>
1005
1005
  */
1006
- ErrorCode?: ErrorCode | string;
1006
+ ErrorCode?: ErrorCode;
1007
1007
  /**
1008
1008
  * @public
1009
1009
  * <p>The error message.</p>
@@ -1052,7 +1052,7 @@ export interface MembershipItem {
1052
1052
  * @public
1053
1053
  * <p>The member role.</p>
1054
1054
  */
1055
- Role?: RoomMembershipRole | string;
1055
+ Role?: RoomMembershipRole;
1056
1056
  }
1057
1057
  /**
1058
1058
  * @public
@@ -1088,7 +1088,7 @@ export interface MemberError {
1088
1088
  * @public
1089
1089
  * <p>The error code.</p>
1090
1090
  */
1091
- ErrorCode?: ErrorCode | string;
1091
+ ErrorCode?: ErrorCode;
1092
1092
  /**
1093
1093
  * @public
1094
1094
  * <p>The error message.</p>
@@ -1155,7 +1155,7 @@ export interface UserError {
1155
1155
  * @public
1156
1156
  * <p>The error code.</p>
1157
1157
  */
1158
- ErrorCode?: ErrorCode | string;
1158
+ ErrorCode?: ErrorCode;
1159
1159
  /**
1160
1160
  * @public
1161
1161
  * <p>The error message.</p>
@@ -1227,7 +1227,7 @@ export interface UpdatePhoneNumberRequestItem {
1227
1227
  * @public
1228
1228
  * <p>The product type to update.</p>
1229
1229
  */
1230
- ProductType?: PhoneNumberProductType | string;
1230
+ ProductType?: PhoneNumberProductType;
1231
1231
  /**
1232
1232
  * @public
1233
1233
  * <p>The outbound calling name to update.</p>
@@ -1281,12 +1281,12 @@ export interface UpdateUserRequestItem {
1281
1281
  * @public
1282
1282
  * <p>The user license type.</p>
1283
1283
  */
1284
- LicenseType?: License | string;
1284
+ LicenseType?: License;
1285
1285
  /**
1286
1286
  * @public
1287
1287
  * <p>The user type.</p>
1288
1288
  */
1289
- UserType?: UserType | string;
1289
+ UserType?: UserType;
1290
1290
  /**
1291
1291
  * @public
1292
1292
  * <p>The Alexa for Business metadata.</p>
@@ -1354,7 +1354,7 @@ export interface Bot {
1354
1354
  * @public
1355
1355
  * <p>The bot type.</p>
1356
1356
  */
1357
- BotType?: BotType | string;
1357
+ BotType?: BotType;
1358
1358
  /**
1359
1359
  * @public
1360
1360
  * <p>When true, the bot is stopped from running in your account.</p>
@@ -1503,12 +1503,12 @@ export interface Channel {
1503
1503
  * @public
1504
1504
  * <p>The mode of the channel.</p>
1505
1505
  */
1506
- Mode?: ChannelMode | string;
1506
+ Mode?: ChannelMode;
1507
1507
  /**
1508
1508
  * @public
1509
1509
  * <p>The channel's privacy setting.</p>
1510
1510
  */
1511
- Privacy?: ChannelPrivacy | string;
1511
+ Privacy?: ChannelPrivacy;
1512
1512
  /**
1513
1513
  * @public
1514
1514
  * <p>The channel's metadata.</p>
@@ -1586,7 +1586,7 @@ export interface ChannelMembership {
1586
1586
  * @public
1587
1587
  * <p>The membership type set for the channel member.</p>
1588
1588
  */
1589
- Type?: ChannelMembershipType | string;
1589
+ Type?: ChannelMembershipType;
1590
1590
  /**
1591
1591
  * @public
1592
1592
  * <p>The data of the channel member.</p>
@@ -1627,12 +1627,12 @@ export interface ChannelSummary {
1627
1627
  * @public
1628
1628
  * <p>The mode of the channel.</p>
1629
1629
  */
1630
- Mode?: ChannelMode | string;
1630
+ Mode?: ChannelMode;
1631
1631
  /**
1632
1632
  * @public
1633
1633
  * <p>The privacy setting of the channel.</p>
1634
1634
  */
1635
- Privacy?: ChannelPrivacy | string;
1635
+ Privacy?: ChannelPrivacy;
1636
1636
  /**
1637
1637
  * @public
1638
1638
  * <p>The metadata of the channel.</p>
@@ -1724,7 +1724,7 @@ export interface ChannelMessage {
1724
1724
  * @public
1725
1725
  * <p>The message type.</p>
1726
1726
  */
1727
- Type?: ChannelMessageType | string;
1727
+ Type?: ChannelMessageType;
1728
1728
  /**
1729
1729
  * @public
1730
1730
  * <p>The time at which the message was created.</p>
@@ -1754,7 +1754,7 @@ export interface ChannelMessage {
1754
1754
  * @public
1755
1755
  * <p>The persistence setting for a channel message.</p>
1756
1756
  */
1757
- Persistence?: ChannelMessagePersistenceType | string;
1757
+ Persistence?: ChannelMessagePersistenceType;
1758
1758
  }
1759
1759
  /**
1760
1760
  * @public
@@ -1780,7 +1780,7 @@ export interface ChannelMessageSummary {
1780
1780
  * @public
1781
1781
  * <p>The type of message.</p>
1782
1782
  */
1783
- Type?: ChannelMessageType | string;
1783
+ Type?: ChannelMessageType;
1784
1784
  /**
1785
1785
  * @public
1786
1786
  * <p>The time at which the message summary was created.</p>
@@ -1906,7 +1906,7 @@ export interface ChimeSdkMeetingConfiguration {
1906
1906
  export declare class ConflictException extends __BaseException {
1907
1907
  readonly name: "ConflictException";
1908
1908
  readonly $fault: "client";
1909
- Code?: ErrorCode | string;
1909
+ Code?: ErrorCode;
1910
1910
  Message?: string;
1911
1911
  /**
1912
1912
  * @internal
@@ -2134,14 +2134,14 @@ export interface CreateChannelRequest {
2134
2134
  * moderators, and channel members can add themselves and other members to unrestricted
2135
2135
  * channels. Only administrators and moderators can add members to restricted channels.</p>
2136
2136
  */
2137
- Mode?: ChannelMode | string;
2137
+ Mode?: ChannelMode;
2138
2138
  /**
2139
2139
  * @public
2140
2140
  * <p>The channel's privacy level: <code>PUBLIC</code> or <code>PRIVATE</code>. Private
2141
2141
  * channels aren't discoverable by users outside the channel. Public channels are discoverable
2142
2142
  * by anyone in the <code>AppInstance</code>.</p>
2143
2143
  */
2144
- Privacy?: ChannelPrivacy | string;
2144
+ Privacy?: ChannelPrivacy;
2145
2145
  /**
2146
2146
  * @public
2147
2147
  * <p>The metadata of the creation request. Limited to 1KB and UTF-8.</p>
@@ -2231,7 +2231,7 @@ export interface CreateChannelMembershipRequest {
2231
2231
  * <code>HIDDEN</code>. Otherwise hidden members are not returned. This is only supported
2232
2232
  * by moderators.</p>
2233
2233
  */
2234
- Type: ChannelMembershipType | string | undefined;
2234
+ Type: ChannelMembershipType | undefined;
2235
2235
  /**
2236
2236
  * @public
2237
2237
  * <p>The <code>AppInstanceUserArn</code> of the user that makes the API call.</p>
@@ -2319,7 +2319,7 @@ export interface CreateMediaCapturePipelineRequest {
2319
2319
  * <p>Source type from which the media artifacts will be captured. A Chime SDK Meeting
2320
2320
  * is the only supported source.</p>
2321
2321
  */
2322
- SourceType: MediaPipelineSourceType | string | undefined;
2322
+ SourceType: MediaPipelineSourceType | undefined;
2323
2323
  /**
2324
2324
  * @public
2325
2325
  * <p>ARN of the source from which the media artifacts are captured.</p>
@@ -2329,7 +2329,7 @@ export interface CreateMediaCapturePipelineRequest {
2329
2329
  * @public
2330
2330
  * <p>Destination type to which the media artifacts are saved. You must use an S3 bucket. </p>
2331
2331
  */
2332
- SinkType: MediaPipelineSinkType | string | undefined;
2332
+ SinkType: MediaPipelineSinkType | undefined;
2333
2333
  /**
2334
2334
  * @public
2335
2335
  * <p>The ARN of the sink type.</p>
@@ -2375,7 +2375,7 @@ export interface MediaCapturePipeline {
2375
2375
  * @public
2376
2376
  * <p>Source type from which media artifacts are saved. You must use <code>ChimeMeeting</code>.</p>
2377
2377
  */
2378
- SourceType?: MediaPipelineSourceType | string;
2378
+ SourceType?: MediaPipelineSourceType;
2379
2379
  /**
2380
2380
  * @public
2381
2381
  * <p>ARN of the source from which the media artifacts will be saved.</p>
@@ -2385,12 +2385,12 @@ export interface MediaCapturePipeline {
2385
2385
  * @public
2386
2386
  * <p>The status of the media capture pipeline.</p>
2387
2387
  */
2388
- Status?: MediaPipelineStatus | string;
2388
+ Status?: MediaPipelineStatus;
2389
2389
  /**
2390
2390
  * @public
2391
2391
  * <p>Destination type to which the media artifacts are saved. You must use an S3 Bucket.</p>
2392
2392
  */
2393
- SinkType?: MediaPipelineSinkType | string;
2393
+ SinkType?: MediaPipelineSinkType;
2394
2394
  /**
2395
2395
  * @public
2396
2396
  * <p>ARN of the destination to which the media artifacts are saved.</p>
@@ -2773,7 +2773,7 @@ export interface CreatePhoneNumberOrderRequest {
2773
2773
  * @public
2774
2774
  * <p>The phone number product type.</p>
2775
2775
  */
2776
- ProductType: PhoneNumberProductType | string | undefined;
2776
+ ProductType: PhoneNumberProductType | undefined;
2777
2777
  /**
2778
2778
  * @public
2779
2779
  * <p>List of phone numbers, in E.164 format.</p>
@@ -2807,7 +2807,7 @@ export interface OrderedPhoneNumber {
2807
2807
  * @public
2808
2808
  * <p>The phone number status.</p>
2809
2809
  */
2810
- Status?: OrderedPhoneNumberStatus | string;
2810
+ Status?: OrderedPhoneNumberStatus;
2811
2811
  }
2812
2812
  /**
2813
2813
  * @public
@@ -2837,12 +2837,12 @@ export interface PhoneNumberOrder {
2837
2837
  * @public
2838
2838
  * <p>The phone number order product type.</p>
2839
2839
  */
2840
- ProductType?: PhoneNumberProductType | string;
2840
+ ProductType?: PhoneNumberProductType;
2841
2841
  /**
2842
2842
  * @public
2843
2843
  * <p>The status of the phone number order.</p>
2844
2844
  */
2845
- Status?: PhoneNumberOrderStatus | string;
2845
+ Status?: PhoneNumberOrderStatus;
2846
2846
  /**
2847
2847
  * @public
2848
2848
  * <p>The ordered phone number details, such as the phone number in E.164 format and the phone
@@ -2938,17 +2938,17 @@ export interface CreateProxySessionRequest {
2938
2938
  * @public
2939
2939
  * <p>The proxy session capabilities.</p>
2940
2940
  */
2941
- Capabilities: (Capability | string)[] | undefined;
2941
+ Capabilities: Capability[] | undefined;
2942
2942
  /**
2943
2943
  * @public
2944
2944
  * <p>The preference for proxy phone number reuse, or stickiness, between the same participants across sessions.</p>
2945
2945
  */
2946
- NumberSelectionBehavior?: NumberSelectionBehavior | string;
2946
+ NumberSelectionBehavior?: NumberSelectionBehavior;
2947
2947
  /**
2948
2948
  * @public
2949
2949
  * <p>The preference for matching the country or area code of the proxy phone number with that of the first participant.</p>
2950
2950
  */
2951
- GeoMatchLevel?: GeoMatchLevel | string;
2951
+ GeoMatchLevel?: GeoMatchLevel;
2952
2952
  /**
2953
2953
  * @public
2954
2954
  * <p>The country and area code for the proxy phone number.</p>
@@ -3008,7 +3008,7 @@ export interface ProxySession {
3008
3008
  * @public
3009
3009
  * <p>The status of the proxy session.</p>
3010
3010
  */
3011
- Status?: ProxySessionStatus | string;
3011
+ Status?: ProxySessionStatus;
3012
3012
  /**
3013
3013
  * @public
3014
3014
  * <p>The number of minutes allowed for the proxy session.</p>
@@ -3018,7 +3018,7 @@ export interface ProxySession {
3018
3018
  * @public
3019
3019
  * <p>The proxy session capabilities.</p>
3020
3020
  */
3021
- Capabilities?: (Capability | string)[];
3021
+ Capabilities?: Capability[];
3022
3022
  /**
3023
3023
  * @public
3024
3024
  * <p>The created time stamp, in ISO 8601 format.</p>
@@ -3043,12 +3043,12 @@ export interface ProxySession {
3043
3043
  * @public
3044
3044
  * <p>The preference for proxy phone number reuse, or stickiness, between the same participants across sessions.</p>
3045
3045
  */
3046
- NumberSelectionBehavior?: NumberSelectionBehavior | string;
3046
+ NumberSelectionBehavior?: NumberSelectionBehavior;
3047
3047
  /**
3048
3048
  * @public
3049
3049
  * <p>The preference for matching the country or area code of the proxy phone number with that of the first participant.</p>
3050
3050
  */
3051
- GeoMatchLevel?: GeoMatchLevel | string;
3051
+ GeoMatchLevel?: GeoMatchLevel;
3052
3052
  /**
3053
3053
  * @public
3054
3054
  * <p>The country and area code for the proxy phone number.</p>
@@ -3154,7 +3154,7 @@ export interface CreateRoomMembershipRequest {
3154
3154
  * @public
3155
3155
  * <p>The role of the member.</p>
3156
3156
  */
3157
- Role?: RoomMembershipRole | string;
3157
+ Role?: RoomMembershipRole;
3158
3158
  }
3159
3159
  /**
3160
3160
  * @public
@@ -3183,7 +3183,7 @@ export interface Member {
3183
3183
  * @public
3184
3184
  * <p>The member type.</p>
3185
3185
  */
3186
- MemberType?: MemberType | string;
3186
+ MemberType?: MemberType;
3187
3187
  /**
3188
3188
  * @public
3189
3189
  * <p>The member email address.</p>
@@ -3219,7 +3219,7 @@ export interface RoomMembership {
3219
3219
  * @public
3220
3220
  * <p>The membership role.</p>
3221
3221
  */
3222
- Role?: RoomMembershipRole | string;
3222
+ Role?: RoomMembershipRole;
3223
3223
  /**
3224
3224
  * @public
3225
3225
  * <p>The identifier of the user that invited the room member.</p>
@@ -3411,7 +3411,7 @@ export interface CreateSipRuleRequest {
3411
3411
  * @public
3412
3412
  * <p>The type of trigger assigned to the SIP rule in <code>TriggerValue</code>, currently <code>RequestUriHostname</code> or <code>ToPhoneNumber</code>.</p>
3413
3413
  */
3414
- TriggerType: SipRuleTriggerType | string | undefined;
3414
+ TriggerType: SipRuleTriggerType | undefined;
3415
3415
  /**
3416
3416
  * @public
3417
3417
  * <p>If <code>TriggerType</code> is <code>RequestUriHostname</code>, the value can be the outbound
@@ -3458,7 +3458,7 @@ export interface SipRule {
3458
3458
  * <p>The type of trigger assigned to the SIP rule in <code>TriggerValue</code>, currently <code>RequestUriHostname</code> or
3459
3459
  * <code>ToPhoneNumber</code>.</p>
3460
3460
  */
3461
- TriggerType?: SipRuleTriggerType | string;
3461
+ TriggerType?: SipRuleTriggerType;
3462
3462
  /**
3463
3463
  * @public
3464
3464
  * <p>If <code>TriggerType</code> is <code>RequestUriHostname</code>, then the value can be the
@@ -3518,7 +3518,7 @@ export interface CreateUserRequest {
3518
3518
  * @public
3519
3519
  * <p>The user type.</p>
3520
3520
  */
3521
- UserType?: UserType | string;
3521
+ UserType?: UserType;
3522
3522
  }
3523
3523
  /**
3524
3524
  * @public
@@ -3580,22 +3580,22 @@ export interface User {
3580
3580
  * @public
3581
3581
  * <p>The license type for the user.</p>
3582
3582
  */
3583
- LicenseType?: License | string;
3583
+ LicenseType?: License;
3584
3584
  /**
3585
3585
  * @public
3586
3586
  * <p>The user type.</p>
3587
3587
  */
3588
- UserType?: UserType | string;
3588
+ UserType?: UserType;
3589
3589
  /**
3590
3590
  * @public
3591
3591
  * <p>The user registration status.</p>
3592
3592
  */
3593
- UserRegistrationStatus?: RegistrationStatus | string;
3593
+ UserRegistrationStatus?: RegistrationStatus;
3594
3594
  /**
3595
3595
  * @public
3596
3596
  * <p>The user invite status.</p>
3597
3597
  */
3598
- UserInvitationStatus?: InviteStatus | string;
3598
+ UserInvitationStatus?: InviteStatus;
3599
3599
  /**
3600
3600
  * @public
3601
3601
  * <p>Date and time when the user is registered, in ISO 8601 format.</p>
@@ -3656,7 +3656,7 @@ export interface CreateVoiceConnectorRequest {
3656
3656
  * .
3657
3657
  * </p>
3658
3658
  */
3659
- AwsRegion?: VoiceConnectorAwsRegion | string;
3659
+ AwsRegion?: VoiceConnectorAwsRegion;
3660
3660
  /**
3661
3661
  * @public
3662
3662
  * <p>When enabled, requires encryption for the Amazon Chime Voice Connector.</p>
@@ -3681,7 +3681,7 @@ export interface VoiceConnector {
3681
3681
  * <code>us-east-1</code>.
3682
3682
  * </p>
3683
3683
  */
3684
- AwsRegion?: VoiceConnectorAwsRegion | string;
3684
+ AwsRegion?: VoiceConnectorAwsRegion;
3685
3685
  /**
3686
3686
  * @public
3687
3687
  * <p>The name of the Amazon Chime Voice Connector.</p>
@@ -3844,7 +3844,7 @@ export interface DeleteAccountResponse {
3844
3844
  export declare class UnprocessableEntityException extends __BaseException {
3845
3845
  readonly name: "UnprocessableEntityException";
3846
3846
  readonly $fault: "client";
3847
- Code?: ErrorCode | string;
3847
+ Code?: ErrorCode;
3848
3848
  Message?: string;
3849
3849
  /**
3850
3850
  * @internal
@@ -4659,17 +4659,17 @@ export interface EngineTranscribeMedicalSettings {
4659
4659
  * @public
4660
4660
  * <p>The language code specified for the Amazon Transcribe Medical engine.</p>
4661
4661
  */
4662
- LanguageCode: TranscribeMedicalLanguageCode | string | undefined;
4662
+ LanguageCode: TranscribeMedicalLanguageCode | undefined;
4663
4663
  /**
4664
4664
  * @public
4665
4665
  * <p>The specialty specified for the Amazon Transcribe Medical engine.</p>
4666
4666
  */
4667
- Specialty: TranscribeMedicalSpecialty | string | undefined;
4667
+ Specialty: TranscribeMedicalSpecialty | undefined;
4668
4668
  /**
4669
4669
  * @public
4670
4670
  * <p>The type of transcription.</p>
4671
4671
  */
4672
- Type: TranscribeMedicalType | string | undefined;
4672
+ Type: TranscribeMedicalType | undefined;
4673
4673
  /**
4674
4674
  * @public
4675
4675
  * <p>The name of the vocabulary passed to Amazon Transcribe Medical.</p>
@@ -4679,13 +4679,13 @@ export interface EngineTranscribeMedicalSettings {
4679
4679
  * @public
4680
4680
  * <p>The AWS Region passed to Amazon Transcribe Medical. If you don't specify a Region, Amazon Chime uses the meeting's Region.</p>
4681
4681
  */
4682
- Region?: TranscribeMedicalRegion | string;
4682
+ Region?: TranscribeMedicalRegion;
4683
4683
  /**
4684
4684
  * @public
4685
4685
  * <p>Labels all personally identifiable information (PII) identified in your transcript. If you don't include <code>PiiEntityTypes</code>, all PII is identified.</p>
4686
4686
  * <p>You can’t set <code>ContentIdentificationType</code> and <code>ContentRedactionType</code>.</p>
4687
4687
  */
4688
- ContentIdentificationType?: TranscribeMedicalContentIdentificationType | string;
4688
+ ContentIdentificationType?: TranscribeMedicalContentIdentificationType;
4689
4689
  }
4690
4690
  /**
4691
4691
  * @public
@@ -4795,7 +4795,7 @@ export interface EngineTranscribeSettings {
4795
4795
  * <p>Specify the language code that represents the language spoken.</p>
4796
4796
  * <p>If you're unsure of the language spoken in your audio, consider using <code>IdentifyLanguage</code> to enable automatic language identification.</p>
4797
4797
  */
4798
- LanguageCode?: TranscribeLanguageCode | string;
4798
+ LanguageCode?: TranscribeLanguageCode;
4799
4799
  /**
4800
4800
  * @public
4801
4801
  * <p>Specify how you want your vocabulary filter applied to your transcript.</p>
@@ -4803,7 +4803,7 @@ export interface EngineTranscribeSettings {
4803
4803
  * <p>To delete words, choose <code>remove</code>.</p>
4804
4804
  * <p>To flag words without changing them, choose <code>tag</code>.</p>
4805
4805
  */
4806
- VocabularyFilterMethod?: TranscribeVocabularyFilterMethod | string;
4806
+ VocabularyFilterMethod?: TranscribeVocabularyFilterMethod;
4807
4807
  /**
4808
4808
  * @public
4809
4809
  * <p>Specify the name of the custom vocabulary filter that you want to use when processing your transcription. Note that vocabulary filter names are case sensitive. </p>
@@ -4828,7 +4828,7 @@ export interface EngineTranscribeSettings {
4828
4828
  * <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/transcription-options.html#choose-region">Choosing a transcription Region</a> in the
4829
4829
  * <i>Amazon Chime SDK Developer Guide</i>.</p>
4830
4830
  */
4831
- Region?: TranscribeRegion | string;
4831
+ Region?: TranscribeRegion;
4832
4832
  /**
4833
4833
  * @public
4834
4834
  * <p>Enables partial result stabilization for your transcription. Partial result stabilization can reduce latency in your output, but may impact accuracy.</p>
@@ -4839,19 +4839,19 @@ export interface EngineTranscribeSettings {
4839
4839
  * <p>Specify the level of stability to use when you enable partial results stabilization (<code>EnablePartialResultsStabilization</code>).</p>
4840
4840
  * <p>Low stability provides the highest accuracy. High stability transcribes faster, but with slightly lower accuracy.</p>
4841
4841
  */
4842
- PartialResultsStability?: TranscribePartialResultsStability | string;
4842
+ PartialResultsStability?: TranscribePartialResultsStability;
4843
4843
  /**
4844
4844
  * @public
4845
4845
  * <p>Labels all personally identifiable information (PII) identified in your transcript. If you don't include <code>PiiEntityTypes</code>, all PII is identified.</p>
4846
4846
  * <p>You can’t set <code>ContentIdentificationType</code> and <code>ContentRedactionType</code>.</p>
4847
4847
  */
4848
- ContentIdentificationType?: TranscribeContentIdentificationType | string;
4848
+ ContentIdentificationType?: TranscribeContentIdentificationType;
4849
4849
  /**
4850
4850
  * @public
4851
4851
  * <p>Content redaction is performed at the segment level. If you don't include <code>PiiEntityTypes</code>, all PII is redacted.</p>
4852
4852
  * <p>You can’t set <code>ContentIdentificationType</code> and <code>ContentRedactionType</code>.</p>
4853
4853
  */
4854
- ContentRedactionType?: TranscribeContentRedactionType | string;
4854
+ ContentRedactionType?: TranscribeContentRedactionType;
4855
4855
  /**
4856
4856
  * @public
4857
4857
  * <p>Specify which types of personally identifiable information (PII) you want to redact in your transcript. You can include as many types as you'd like, or you can select <code>ALL</code>.</p>
@@ -4896,7 +4896,7 @@ export interface EngineTranscribeSettings {
4896
4896
  * <p>Specify a preferred language from the subset of languages codes you specified in <code>LanguageOptions</code>.</p>
4897
4897
  * <p>You can only use this parameter if you include <code>IdentifyLanguage</code> and <code>LanguageOptions</code>.</p>
4898
4898
  */
4899
- PreferredLanguage?: TranscribeLanguageCode | string;
4899
+ PreferredLanguage?: TranscribeLanguageCode;
4900
4900
  /**
4901
4901
  * @public
4902
4902
  * <p>Specify the names of the custom vocabularies that you want to use when processing your transcription. Note that vocabulary names are case sensitive.</p>
@@ -5258,7 +5258,7 @@ export interface PhoneNumberAssociation {
5258
5258
  * <p>Defines the association with an Amazon Chime account ID, user ID, Amazon Chime Voice Connector
5259
5259
  * ID, or Amazon Chime Voice Connector group ID.</p>
5260
5260
  */
5261
- Name?: PhoneNumberAssociationName | string;
5261
+ Name?: PhoneNumberAssociationName;
5262
5262
  /**
5263
5263
  * @public
5264
5264
  * <p>The timestamp of the phone number association, in ISO 8601 format.</p>
@@ -5357,17 +5357,17 @@ export interface PhoneNumber {
5357
5357
  * @public
5358
5358
  * <p>The phone number type.</p>
5359
5359
  */
5360
- Type?: PhoneNumberType | string;
5360
+ Type?: PhoneNumberType;
5361
5361
  /**
5362
5362
  * @public
5363
5363
  * <p>The phone number product type.</p>
5364
5364
  */
5365
- ProductType?: PhoneNumberProductType | string;
5365
+ ProductType?: PhoneNumberProductType;
5366
5366
  /**
5367
5367
  * @public
5368
5368
  * <p>The phone number status.</p>
5369
5369
  */
5370
- Status?: PhoneNumberStatus | string;
5370
+ Status?: PhoneNumberStatus;
5371
5371
  /**
5372
5372
  * @public
5373
5373
  * <p>The phone number capabilities.</p>
@@ -5387,7 +5387,7 @@ export interface PhoneNumber {
5387
5387
  * @public
5388
5388
  * <p>The outbound calling name status.</p>
5389
5389
  */
5390
- CallingNameStatus?: CallingNameStatus | string;
5390
+ CallingNameStatus?: CallingNameStatus;
5391
5391
  /**
5392
5392
  * @public
5393
5393
  * <p>The phone number creation timestamp, in ISO 8601 format.</p>