@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.
|
@@ -21,7 +21,7 @@ export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
|
|
|
21
21
|
export declare class AccessDeniedException extends __BaseException {
|
|
22
22
|
readonly name: "AccessDeniedException";
|
|
23
23
|
readonly $fault: "client";
|
|
24
|
-
Code?: ErrorCode
|
|
24
|
+
Code?: ErrorCode;
|
|
25
25
|
Message?: string;
|
|
26
26
|
constructor(
|
|
27
27
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
@@ -53,11 +53,11 @@ export interface Account {
|
|
|
53
53
|
AwsAccountId: string | undefined;
|
|
54
54
|
AccountId: string | undefined;
|
|
55
55
|
Name: string | undefined;
|
|
56
|
-
AccountType?: AccountType
|
|
56
|
+
AccountType?: AccountType;
|
|
57
57
|
CreatedTimestamp?: Date;
|
|
58
|
-
DefaultLicense?: License
|
|
59
|
-
SupportedLicenses?:
|
|
60
|
-
AccountStatus?: AccountStatus
|
|
58
|
+
DefaultLicense?: License;
|
|
59
|
+
SupportedLicenses?: License[];
|
|
60
|
+
AccountStatus?: AccountStatus;
|
|
61
61
|
SigninDelegateGroups?: SigninDelegateGroup[];
|
|
62
62
|
}
|
|
63
63
|
export interface AccountSettings {
|
|
@@ -117,7 +117,7 @@ export interface AppInstanceRetentionSettings {
|
|
|
117
117
|
ChannelRetentionSettings?: ChannelRetentionSettings;
|
|
118
118
|
}
|
|
119
119
|
export interface AppInstanceStreamingConfiguration {
|
|
120
|
-
AppInstanceDataType: AppInstanceDataType |
|
|
120
|
+
AppInstanceDataType: AppInstanceDataType | undefined;
|
|
121
121
|
ResourceArn: string | undefined;
|
|
122
122
|
}
|
|
123
123
|
export interface AppInstanceUser {
|
|
@@ -139,7 +139,7 @@ export declare const ChannelMembershipType: {
|
|
|
139
139
|
export type ChannelMembershipType =
|
|
140
140
|
(typeof ChannelMembershipType)[keyof typeof ChannelMembershipType];
|
|
141
141
|
export interface AppInstanceUserMembershipSummary {
|
|
142
|
-
Type?: ChannelMembershipType
|
|
142
|
+
Type?: ChannelMembershipType;
|
|
143
143
|
ReadMarkerTimestamp?: Date;
|
|
144
144
|
}
|
|
145
145
|
export declare const AudioMuxType: {
|
|
@@ -148,7 +148,7 @@ export declare const AudioMuxType: {
|
|
|
148
148
|
};
|
|
149
149
|
export type AudioMuxType = (typeof AudioMuxType)[keyof typeof AudioMuxType];
|
|
150
150
|
export interface AudioArtifactsConfiguration {
|
|
151
|
-
MuxType: AudioMuxType |
|
|
151
|
+
MuxType: AudioMuxType | undefined;
|
|
152
152
|
}
|
|
153
153
|
export declare const ContentMuxType: {
|
|
154
154
|
readonly ContentOnly: "ContentOnly";
|
|
@@ -162,16 +162,16 @@ export declare const ArtifactsState: {
|
|
|
162
162
|
export type ArtifactsState =
|
|
163
163
|
(typeof ArtifactsState)[keyof typeof ArtifactsState];
|
|
164
164
|
export interface ContentArtifactsConfiguration {
|
|
165
|
-
State: ArtifactsState |
|
|
166
|
-
MuxType?: ContentMuxType
|
|
165
|
+
State: ArtifactsState | undefined;
|
|
166
|
+
MuxType?: ContentMuxType;
|
|
167
167
|
}
|
|
168
168
|
export declare const VideoMuxType: {
|
|
169
169
|
readonly VideoOnly: "VideoOnly";
|
|
170
170
|
};
|
|
171
171
|
export type VideoMuxType = (typeof VideoMuxType)[keyof typeof VideoMuxType];
|
|
172
172
|
export interface VideoArtifactsConfiguration {
|
|
173
|
-
State: ArtifactsState |
|
|
174
|
-
MuxType?: VideoMuxType
|
|
173
|
+
State: ArtifactsState | undefined;
|
|
174
|
+
MuxType?: VideoMuxType;
|
|
175
175
|
}
|
|
176
176
|
export interface ArtifactsConfiguration {
|
|
177
177
|
Audio: AudioArtifactsConfiguration | undefined;
|
|
@@ -185,7 +185,7 @@ export interface AssociatePhoneNumbersWithVoiceConnectorRequest {
|
|
|
185
185
|
}
|
|
186
186
|
export interface PhoneNumberError {
|
|
187
187
|
PhoneNumberId?: string;
|
|
188
|
-
ErrorCode?: ErrorCode
|
|
188
|
+
ErrorCode?: ErrorCode;
|
|
189
189
|
ErrorMessage?: string;
|
|
190
190
|
}
|
|
191
191
|
export interface AssociatePhoneNumbersWithVoiceConnectorResponse {
|
|
@@ -194,7 +194,7 @@ export interface AssociatePhoneNumbersWithVoiceConnectorResponse {
|
|
|
194
194
|
export declare class BadRequestException extends __BaseException {
|
|
195
195
|
readonly name: "BadRequestException";
|
|
196
196
|
readonly $fault: "client";
|
|
197
|
-
Code?: ErrorCode
|
|
197
|
+
Code?: ErrorCode;
|
|
198
198
|
Message?: string;
|
|
199
199
|
constructor(
|
|
200
200
|
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
@@ -203,21 +203,21 @@ export declare class BadRequestException extends __BaseException {
|
|
|
203
203
|
export declare class ForbiddenException extends __BaseException {
|
|
204
204
|
readonly name: "ForbiddenException";
|
|
205
205
|
readonly $fault: "client";
|
|
206
|
-
Code?: ErrorCode
|
|
206
|
+
Code?: ErrorCode;
|
|
207
207
|
Message?: string;
|
|
208
208
|
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
209
209
|
}
|
|
210
210
|
export declare class NotFoundException extends __BaseException {
|
|
211
211
|
readonly name: "NotFoundException";
|
|
212
212
|
readonly $fault: "client";
|
|
213
|
-
Code?: ErrorCode
|
|
213
|
+
Code?: ErrorCode;
|
|
214
214
|
Message?: string;
|
|
215
215
|
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
216
216
|
}
|
|
217
217
|
export declare class ServiceFailureException extends __BaseException {
|
|
218
218
|
readonly name: "ServiceFailureException";
|
|
219
219
|
readonly $fault: "server";
|
|
220
|
-
Code?: ErrorCode
|
|
220
|
+
Code?: ErrorCode;
|
|
221
221
|
Message?: string;
|
|
222
222
|
constructor(
|
|
223
223
|
opts: __ExceptionOptionType<ServiceFailureException, __BaseException>
|
|
@@ -226,7 +226,7 @@ export declare class ServiceFailureException extends __BaseException {
|
|
|
226
226
|
export declare class ServiceUnavailableException extends __BaseException {
|
|
227
227
|
readonly name: "ServiceUnavailableException";
|
|
228
228
|
readonly $fault: "server";
|
|
229
|
-
Code?: ErrorCode
|
|
229
|
+
Code?: ErrorCode;
|
|
230
230
|
Message?: string;
|
|
231
231
|
constructor(
|
|
232
232
|
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
@@ -235,7 +235,7 @@ export declare class ServiceUnavailableException extends __BaseException {
|
|
|
235
235
|
export declare class ThrottledClientException extends __BaseException {
|
|
236
236
|
readonly name: "ThrottledClientException";
|
|
237
237
|
readonly $fault: "client";
|
|
238
|
-
Code?: ErrorCode
|
|
238
|
+
Code?: ErrorCode;
|
|
239
239
|
Message?: string;
|
|
240
240
|
constructor(
|
|
241
241
|
opts: __ExceptionOptionType<ThrottledClientException, __BaseException>
|
|
@@ -244,7 +244,7 @@ export declare class ThrottledClientException extends __BaseException {
|
|
|
244
244
|
export declare class UnauthorizedClientException extends __BaseException {
|
|
245
245
|
readonly name: "UnauthorizedClientException";
|
|
246
246
|
readonly $fault: "client";
|
|
247
|
-
Code?: ErrorCode
|
|
247
|
+
Code?: ErrorCode;
|
|
248
248
|
Message?: string;
|
|
249
249
|
constructor(
|
|
250
250
|
opts: __ExceptionOptionType<UnauthorizedClientException, __BaseException>
|
|
@@ -280,7 +280,7 @@ export interface Tag {
|
|
|
280
280
|
}
|
|
281
281
|
export interface BatchChannelMemberships {
|
|
282
282
|
InvitedBy?: Identity;
|
|
283
|
-
Type?: ChannelMembershipType
|
|
283
|
+
Type?: ChannelMembershipType;
|
|
284
284
|
Members?: Identity[];
|
|
285
285
|
ChannelArn?: string;
|
|
286
286
|
}
|
|
@@ -304,7 +304,7 @@ export interface BatchCreateAttendeeResponse {
|
|
|
304
304
|
export declare class ResourceLimitExceededException extends __BaseException {
|
|
305
305
|
readonly name: "ResourceLimitExceededException";
|
|
306
306
|
readonly $fault: "client";
|
|
307
|
-
Code?: ErrorCode
|
|
307
|
+
Code?: ErrorCode;
|
|
308
308
|
Message?: string;
|
|
309
309
|
constructor(
|
|
310
310
|
opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>
|
|
@@ -312,13 +312,13 @@ export declare class ResourceLimitExceededException extends __BaseException {
|
|
|
312
312
|
}
|
|
313
313
|
export interface BatchCreateChannelMembershipRequest {
|
|
314
314
|
ChannelArn: string | undefined;
|
|
315
|
-
Type?: ChannelMembershipType
|
|
315
|
+
Type?: ChannelMembershipType;
|
|
316
316
|
MemberArns: string[] | undefined;
|
|
317
317
|
ChimeBearer?: string;
|
|
318
318
|
}
|
|
319
319
|
export interface BatchCreateChannelMembershipError {
|
|
320
320
|
MemberArn?: string;
|
|
321
|
-
ErrorCode?: ErrorCode
|
|
321
|
+
ErrorCode?: ErrorCode;
|
|
322
322
|
ErrorMessage?: string;
|
|
323
323
|
}
|
|
324
324
|
export interface BatchCreateChannelMembershipResponse {
|
|
@@ -333,7 +333,7 @@ export type RoomMembershipRole =
|
|
|
333
333
|
(typeof RoomMembershipRole)[keyof typeof RoomMembershipRole];
|
|
334
334
|
export interface MembershipItem {
|
|
335
335
|
MemberId?: string;
|
|
336
|
-
Role?: RoomMembershipRole
|
|
336
|
+
Role?: RoomMembershipRole;
|
|
337
337
|
}
|
|
338
338
|
export interface BatchCreateRoomMembershipRequest {
|
|
339
339
|
AccountId: string | undefined;
|
|
@@ -342,7 +342,7 @@ export interface BatchCreateRoomMembershipRequest {
|
|
|
342
342
|
}
|
|
343
343
|
export interface MemberError {
|
|
344
344
|
MemberId?: string;
|
|
345
|
-
ErrorCode?: ErrorCode
|
|
345
|
+
ErrorCode?: ErrorCode;
|
|
346
346
|
ErrorMessage?: string;
|
|
347
347
|
}
|
|
348
348
|
export interface BatchCreateRoomMembershipResponse {
|
|
@@ -360,7 +360,7 @@ export interface BatchSuspendUserRequest {
|
|
|
360
360
|
}
|
|
361
361
|
export interface UserError {
|
|
362
362
|
UserId?: string;
|
|
363
|
-
ErrorCode?: ErrorCode
|
|
363
|
+
ErrorCode?: ErrorCode;
|
|
364
364
|
ErrorMessage?: string;
|
|
365
365
|
}
|
|
366
366
|
export interface BatchSuspendUserResponse {
|
|
@@ -382,7 +382,7 @@ export type PhoneNumberProductType =
|
|
|
382
382
|
(typeof PhoneNumberProductType)[keyof typeof PhoneNumberProductType];
|
|
383
383
|
export interface UpdatePhoneNumberRequestItem {
|
|
384
384
|
PhoneNumberId: string | undefined;
|
|
385
|
-
ProductType?: PhoneNumberProductType
|
|
385
|
+
ProductType?: PhoneNumberProductType;
|
|
386
386
|
CallingName?: string;
|
|
387
387
|
}
|
|
388
388
|
export interface BatchUpdatePhoneNumberRequest {
|
|
@@ -398,8 +398,8 @@ export declare const UserType: {
|
|
|
398
398
|
export type UserType = (typeof UserType)[keyof typeof UserType];
|
|
399
399
|
export interface UpdateUserRequestItem {
|
|
400
400
|
UserId: string | undefined;
|
|
401
|
-
LicenseType?: License
|
|
402
|
-
UserType?: UserType
|
|
401
|
+
LicenseType?: License;
|
|
402
|
+
UserType?: UserType;
|
|
403
403
|
AlexaForBusinessMetadata?: AlexaForBusinessMetadata;
|
|
404
404
|
}
|
|
405
405
|
export interface BatchUpdateUserRequest {
|
|
@@ -417,7 +417,7 @@ export interface Bot {
|
|
|
417
417
|
BotId?: string;
|
|
418
418
|
UserId?: string;
|
|
419
419
|
DisplayName?: string;
|
|
420
|
-
BotType?: BotType
|
|
420
|
+
BotType?: BotType;
|
|
421
421
|
Disabled?: boolean;
|
|
422
422
|
CreatedTimestamp?: Date;
|
|
423
423
|
UpdatedTimestamp?: Date;
|
|
@@ -463,8 +463,8 @@ export type ChannelPrivacy =
|
|
|
463
463
|
export interface Channel {
|
|
464
464
|
Name?: string;
|
|
465
465
|
ChannelArn?: string;
|
|
466
|
-
Mode?: ChannelMode
|
|
467
|
-
Privacy?: ChannelPrivacy
|
|
466
|
+
Mode?: ChannelMode;
|
|
467
|
+
Privacy?: ChannelPrivacy;
|
|
468
468
|
Metadata?: string;
|
|
469
469
|
CreatedBy?: Identity;
|
|
470
470
|
CreatedTimestamp?: Date;
|
|
@@ -482,7 +482,7 @@ export interface ChannelBanSummary {
|
|
|
482
482
|
}
|
|
483
483
|
export interface ChannelMembership {
|
|
484
484
|
InvitedBy?: Identity;
|
|
485
|
-
Type?: ChannelMembershipType
|
|
485
|
+
Type?: ChannelMembershipType;
|
|
486
486
|
Member?: Identity;
|
|
487
487
|
ChannelArn?: string;
|
|
488
488
|
CreatedTimestamp?: Date;
|
|
@@ -491,8 +491,8 @@ export interface ChannelMembership {
|
|
|
491
491
|
export interface ChannelSummary {
|
|
492
492
|
Name?: string;
|
|
493
493
|
ChannelArn?: string;
|
|
494
|
-
Mode?: ChannelMode
|
|
495
|
-
Privacy?: ChannelPrivacy
|
|
494
|
+
Mode?: ChannelMode;
|
|
495
|
+
Privacy?: ChannelPrivacy;
|
|
496
496
|
Metadata?: string;
|
|
497
497
|
LastMessageTimestamp?: Date;
|
|
498
498
|
}
|
|
@@ -520,19 +520,19 @@ export interface ChannelMessage {
|
|
|
520
520
|
MessageId?: string;
|
|
521
521
|
Content?: string;
|
|
522
522
|
Metadata?: string;
|
|
523
|
-
Type?: ChannelMessageType
|
|
523
|
+
Type?: ChannelMessageType;
|
|
524
524
|
CreatedTimestamp?: Date;
|
|
525
525
|
LastEditedTimestamp?: Date;
|
|
526
526
|
LastUpdatedTimestamp?: Date;
|
|
527
527
|
Sender?: Identity;
|
|
528
528
|
Redacted?: boolean;
|
|
529
|
-
Persistence?: ChannelMessagePersistenceType
|
|
529
|
+
Persistence?: ChannelMessagePersistenceType;
|
|
530
530
|
}
|
|
531
531
|
export interface ChannelMessageSummary {
|
|
532
532
|
MessageId?: string;
|
|
533
533
|
Content?: string;
|
|
534
534
|
Metadata?: string;
|
|
535
|
-
Type?: ChannelMessageType
|
|
535
|
+
Type?: ChannelMessageType;
|
|
536
536
|
CreatedTimestamp?: Date;
|
|
537
537
|
LastUpdatedTimestamp?: Date;
|
|
538
538
|
LastEditedTimestamp?: Date;
|
|
@@ -565,7 +565,7 @@ export interface ChimeSdkMeetingConfiguration {
|
|
|
565
565
|
export declare class ConflictException extends __BaseException {
|
|
566
566
|
readonly name: "ConflictException";
|
|
567
567
|
readonly $fault: "client";
|
|
568
|
-
Code?: ErrorCode
|
|
568
|
+
Code?: ErrorCode;
|
|
569
569
|
Message?: string;
|
|
570
570
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
571
571
|
}
|
|
@@ -625,8 +625,8 @@ export interface CreateBotResponse {
|
|
|
625
625
|
export interface CreateChannelRequest {
|
|
626
626
|
AppInstanceArn: string | undefined;
|
|
627
627
|
Name: string | undefined;
|
|
628
|
-
Mode?: ChannelMode
|
|
629
|
-
Privacy?: ChannelPrivacy
|
|
628
|
+
Mode?: ChannelMode;
|
|
629
|
+
Privacy?: ChannelPrivacy;
|
|
630
630
|
Metadata?: string;
|
|
631
631
|
ClientRequestToken?: string;
|
|
632
632
|
Tags?: Tag[];
|
|
@@ -647,7 +647,7 @@ export interface CreateChannelBanResponse {
|
|
|
647
647
|
export interface CreateChannelMembershipRequest {
|
|
648
648
|
ChannelArn: string | undefined;
|
|
649
649
|
MemberArn: string | undefined;
|
|
650
|
-
Type: ChannelMembershipType |
|
|
650
|
+
Type: ChannelMembershipType | undefined;
|
|
651
651
|
ChimeBearer?: string;
|
|
652
652
|
}
|
|
653
653
|
export interface CreateChannelMembershipResponse {
|
|
@@ -674,9 +674,9 @@ export declare const MediaPipelineSourceType: {
|
|
|
674
674
|
export type MediaPipelineSourceType =
|
|
675
675
|
(typeof MediaPipelineSourceType)[keyof typeof MediaPipelineSourceType];
|
|
676
676
|
export interface CreateMediaCapturePipelineRequest {
|
|
677
|
-
SourceType: MediaPipelineSourceType |
|
|
677
|
+
SourceType: MediaPipelineSourceType | undefined;
|
|
678
678
|
SourceArn: string | undefined;
|
|
679
|
-
SinkType: MediaPipelineSinkType |
|
|
679
|
+
SinkType: MediaPipelineSinkType | undefined;
|
|
680
680
|
SinkArn: string | undefined;
|
|
681
681
|
ClientRequestToken?: string;
|
|
682
682
|
ChimeSdkMeetingConfiguration?: ChimeSdkMeetingConfiguration;
|
|
@@ -692,10 +692,10 @@ export type MediaPipelineStatus =
|
|
|
692
692
|
(typeof MediaPipelineStatus)[keyof typeof MediaPipelineStatus];
|
|
693
693
|
export interface MediaCapturePipeline {
|
|
694
694
|
MediaPipelineId?: string;
|
|
695
|
-
SourceType?: MediaPipelineSourceType
|
|
695
|
+
SourceType?: MediaPipelineSourceType;
|
|
696
696
|
SourceArn?: string;
|
|
697
|
-
Status?: MediaPipelineStatus
|
|
698
|
-
SinkType?: MediaPipelineSinkType
|
|
697
|
+
Status?: MediaPipelineStatus;
|
|
698
|
+
SinkType?: MediaPipelineSinkType;
|
|
699
699
|
SinkArn?: string;
|
|
700
700
|
CreatedTimestamp?: Date;
|
|
701
701
|
UpdatedTimestamp?: Date;
|
|
@@ -759,7 +759,7 @@ export interface CreateMeetingWithAttendeesResponse {
|
|
|
759
759
|
Errors?: CreateAttendeeError[];
|
|
760
760
|
}
|
|
761
761
|
export interface CreatePhoneNumberOrderRequest {
|
|
762
|
-
ProductType: PhoneNumberProductType |
|
|
762
|
+
ProductType: PhoneNumberProductType | undefined;
|
|
763
763
|
E164PhoneNumbers: string[] | undefined;
|
|
764
764
|
}
|
|
765
765
|
export declare const OrderedPhoneNumberStatus: {
|
|
@@ -771,7 +771,7 @@ export type OrderedPhoneNumberStatus =
|
|
|
771
771
|
(typeof OrderedPhoneNumberStatus)[keyof typeof OrderedPhoneNumberStatus];
|
|
772
772
|
export interface OrderedPhoneNumber {
|
|
773
773
|
E164PhoneNumber?: string;
|
|
774
|
-
Status?: OrderedPhoneNumberStatus
|
|
774
|
+
Status?: OrderedPhoneNumberStatus;
|
|
775
775
|
}
|
|
776
776
|
export declare const PhoneNumberOrderStatus: {
|
|
777
777
|
readonly Failed: "Failed";
|
|
@@ -783,8 +783,8 @@ export type PhoneNumberOrderStatus =
|
|
|
783
783
|
(typeof PhoneNumberOrderStatus)[keyof typeof PhoneNumberOrderStatus];
|
|
784
784
|
export interface PhoneNumberOrder {
|
|
785
785
|
PhoneNumberOrderId?: string;
|
|
786
|
-
ProductType?: PhoneNumberProductType
|
|
787
|
-
Status?: PhoneNumberOrderStatus
|
|
786
|
+
ProductType?: PhoneNumberProductType;
|
|
787
|
+
Status?: PhoneNumberOrderStatus;
|
|
788
788
|
OrderedPhoneNumbers?: OrderedPhoneNumber[];
|
|
789
789
|
CreatedTimestamp?: Date;
|
|
790
790
|
UpdatedTimestamp?: Date;
|
|
@@ -812,9 +812,9 @@ export interface CreateProxySessionRequest {
|
|
|
812
812
|
ParticipantPhoneNumbers: string[] | undefined;
|
|
813
813
|
Name?: string;
|
|
814
814
|
ExpiryMinutes?: number;
|
|
815
|
-
Capabilities:
|
|
816
|
-
NumberSelectionBehavior?: NumberSelectionBehavior
|
|
817
|
-
GeoMatchLevel?: GeoMatchLevel
|
|
815
|
+
Capabilities: Capability[] | undefined;
|
|
816
|
+
NumberSelectionBehavior?: NumberSelectionBehavior;
|
|
817
|
+
GeoMatchLevel?: GeoMatchLevel;
|
|
818
818
|
GeoMatchParams?: GeoMatchParams;
|
|
819
819
|
}
|
|
820
820
|
export interface Participant {
|
|
@@ -832,15 +832,15 @@ export interface ProxySession {
|
|
|
832
832
|
VoiceConnectorId?: string;
|
|
833
833
|
ProxySessionId?: string;
|
|
834
834
|
Name?: string;
|
|
835
|
-
Status?: ProxySessionStatus
|
|
835
|
+
Status?: ProxySessionStatus;
|
|
836
836
|
ExpiryMinutes?: number;
|
|
837
|
-
Capabilities?:
|
|
837
|
+
Capabilities?: Capability[];
|
|
838
838
|
CreatedTimestamp?: Date;
|
|
839
839
|
UpdatedTimestamp?: Date;
|
|
840
840
|
EndedTimestamp?: Date;
|
|
841
841
|
Participants?: Participant[];
|
|
842
|
-
NumberSelectionBehavior?: NumberSelectionBehavior
|
|
843
|
-
GeoMatchLevel?: GeoMatchLevel
|
|
842
|
+
NumberSelectionBehavior?: NumberSelectionBehavior;
|
|
843
|
+
GeoMatchLevel?: GeoMatchLevel;
|
|
844
844
|
GeoMatchParams?: GeoMatchParams;
|
|
845
845
|
}
|
|
846
846
|
export interface CreateProxySessionResponse {
|
|
@@ -866,7 +866,7 @@ export interface CreateRoomMembershipRequest {
|
|
|
866
866
|
AccountId: string | undefined;
|
|
867
867
|
RoomId: string | undefined;
|
|
868
868
|
MemberId: string | undefined;
|
|
869
|
-
Role?: RoomMembershipRole
|
|
869
|
+
Role?: RoomMembershipRole;
|
|
870
870
|
}
|
|
871
871
|
export declare const MemberType: {
|
|
872
872
|
readonly Bot: "Bot";
|
|
@@ -876,7 +876,7 @@ export declare const MemberType: {
|
|
|
876
876
|
export type MemberType = (typeof MemberType)[keyof typeof MemberType];
|
|
877
877
|
export interface Member {
|
|
878
878
|
MemberId?: string;
|
|
879
|
-
MemberType?: MemberType
|
|
879
|
+
MemberType?: MemberType;
|
|
880
880
|
Email?: string;
|
|
881
881
|
FullName?: string;
|
|
882
882
|
AccountId?: string;
|
|
@@ -884,7 +884,7 @@ export interface Member {
|
|
|
884
884
|
export interface RoomMembership {
|
|
885
885
|
RoomId?: string;
|
|
886
886
|
Member?: Member;
|
|
887
|
-
Role?: RoomMembershipRole
|
|
887
|
+
Role?: RoomMembershipRole;
|
|
888
888
|
InvitedBy?: string;
|
|
889
889
|
UpdatedTimestamp?: Date;
|
|
890
890
|
}
|
|
@@ -935,7 +935,7 @@ export type SipRuleTriggerType =
|
|
|
935
935
|
(typeof SipRuleTriggerType)[keyof typeof SipRuleTriggerType];
|
|
936
936
|
export interface CreateSipRuleRequest {
|
|
937
937
|
Name: string | undefined;
|
|
938
|
-
TriggerType: SipRuleTriggerType |
|
|
938
|
+
TriggerType: SipRuleTriggerType | undefined;
|
|
939
939
|
TriggerValue: string | undefined;
|
|
940
940
|
Disabled?: boolean;
|
|
941
941
|
TargetApplications: SipRuleTargetApplication[] | undefined;
|
|
@@ -944,7 +944,7 @@ export interface SipRule {
|
|
|
944
944
|
SipRuleId?: string;
|
|
945
945
|
Name?: string;
|
|
946
946
|
Disabled?: boolean;
|
|
947
|
-
TriggerType?: SipRuleTriggerType
|
|
947
|
+
TriggerType?: SipRuleTriggerType;
|
|
948
948
|
TriggerValue?: string;
|
|
949
949
|
TargetApplications?: SipRuleTargetApplication[];
|
|
950
950
|
CreatedTimestamp?: Date;
|
|
@@ -957,7 +957,7 @@ export interface CreateUserRequest {
|
|
|
957
957
|
AccountId: string | undefined;
|
|
958
958
|
Username?: string;
|
|
959
959
|
Email?: string;
|
|
960
|
-
UserType?: UserType
|
|
960
|
+
UserType?: UserType;
|
|
961
961
|
}
|
|
962
962
|
export declare const InviteStatus: {
|
|
963
963
|
readonly Accepted: "Accepted";
|
|
@@ -978,10 +978,10 @@ export interface User {
|
|
|
978
978
|
PrimaryEmail?: string;
|
|
979
979
|
PrimaryProvisionedNumber?: string;
|
|
980
980
|
DisplayName?: string;
|
|
981
|
-
LicenseType?: License
|
|
982
|
-
UserType?: UserType
|
|
983
|
-
UserRegistrationStatus?: RegistrationStatus
|
|
984
|
-
UserInvitationStatus?: InviteStatus
|
|
981
|
+
LicenseType?: License;
|
|
982
|
+
UserType?: UserType;
|
|
983
|
+
UserRegistrationStatus?: RegistrationStatus;
|
|
984
|
+
UserInvitationStatus?: InviteStatus;
|
|
985
985
|
RegisteredOn?: Date;
|
|
986
986
|
InvitedOn?: Date;
|
|
987
987
|
AlexaForBusinessMetadata?: AlexaForBusinessMetadata;
|
|
@@ -998,12 +998,12 @@ export type VoiceConnectorAwsRegion =
|
|
|
998
998
|
(typeof VoiceConnectorAwsRegion)[keyof typeof VoiceConnectorAwsRegion];
|
|
999
999
|
export interface CreateVoiceConnectorRequest {
|
|
1000
1000
|
Name: string | undefined;
|
|
1001
|
-
AwsRegion?: VoiceConnectorAwsRegion
|
|
1001
|
+
AwsRegion?: VoiceConnectorAwsRegion;
|
|
1002
1002
|
RequireEncryption: boolean | undefined;
|
|
1003
1003
|
}
|
|
1004
1004
|
export interface VoiceConnector {
|
|
1005
1005
|
VoiceConnectorId?: string;
|
|
1006
|
-
AwsRegion?: VoiceConnectorAwsRegion
|
|
1006
|
+
AwsRegion?: VoiceConnectorAwsRegion;
|
|
1007
1007
|
Name?: string;
|
|
1008
1008
|
OutboundHostName?: string;
|
|
1009
1009
|
RequireEncryption?: boolean;
|
|
@@ -1044,7 +1044,7 @@ export interface DeleteAccountResponse {}
|
|
|
1044
1044
|
export declare class UnprocessableEntityException extends __BaseException {
|
|
1045
1045
|
readonly name: "UnprocessableEntityException";
|
|
1046
1046
|
readonly $fault: "client";
|
|
1047
|
-
Code?: ErrorCode
|
|
1047
|
+
Code?: ErrorCode;
|
|
1048
1048
|
Message?: string;
|
|
1049
1049
|
constructor(
|
|
1050
1050
|
opts: __ExceptionOptionType<UnprocessableEntityException, __BaseException>
|
|
@@ -1290,14 +1290,12 @@ export declare const TranscribeMedicalType: {
|
|
|
1290
1290
|
export type TranscribeMedicalType =
|
|
1291
1291
|
(typeof TranscribeMedicalType)[keyof typeof TranscribeMedicalType];
|
|
1292
1292
|
export interface EngineTranscribeMedicalSettings {
|
|
1293
|
-
LanguageCode: TranscribeMedicalLanguageCode |
|
|
1294
|
-
Specialty: TranscribeMedicalSpecialty |
|
|
1295
|
-
Type: TranscribeMedicalType |
|
|
1293
|
+
LanguageCode: TranscribeMedicalLanguageCode | undefined;
|
|
1294
|
+
Specialty: TranscribeMedicalSpecialty | undefined;
|
|
1295
|
+
Type: TranscribeMedicalType | undefined;
|
|
1296
1296
|
VocabularyName?: string;
|
|
1297
|
-
Region?: TranscribeMedicalRegion
|
|
1298
|
-
ContentIdentificationType?:
|
|
1299
|
-
| TranscribeMedicalContentIdentificationType
|
|
1300
|
-
| string;
|
|
1297
|
+
Region?: TranscribeMedicalRegion;
|
|
1298
|
+
ContentIdentificationType?: TranscribeMedicalContentIdentificationType;
|
|
1301
1299
|
}
|
|
1302
1300
|
export declare const TranscribeContentIdentificationType: {
|
|
1303
1301
|
readonly PII: "PII";
|
|
@@ -1358,20 +1356,20 @@ export declare const TranscribeVocabularyFilterMethod: {
|
|
|
1358
1356
|
export type TranscribeVocabularyFilterMethod =
|
|
1359
1357
|
(typeof TranscribeVocabularyFilterMethod)[keyof typeof TranscribeVocabularyFilterMethod];
|
|
1360
1358
|
export interface EngineTranscribeSettings {
|
|
1361
|
-
LanguageCode?: TranscribeLanguageCode
|
|
1362
|
-
VocabularyFilterMethod?: TranscribeVocabularyFilterMethod
|
|
1359
|
+
LanguageCode?: TranscribeLanguageCode;
|
|
1360
|
+
VocabularyFilterMethod?: TranscribeVocabularyFilterMethod;
|
|
1363
1361
|
VocabularyFilterName?: string;
|
|
1364
1362
|
VocabularyName?: string;
|
|
1365
|
-
Region?: TranscribeRegion
|
|
1363
|
+
Region?: TranscribeRegion;
|
|
1366
1364
|
EnablePartialResultsStabilization?: boolean;
|
|
1367
|
-
PartialResultsStability?: TranscribePartialResultsStability
|
|
1368
|
-
ContentIdentificationType?: TranscribeContentIdentificationType
|
|
1369
|
-
ContentRedactionType?: TranscribeContentRedactionType
|
|
1365
|
+
PartialResultsStability?: TranscribePartialResultsStability;
|
|
1366
|
+
ContentIdentificationType?: TranscribeContentIdentificationType;
|
|
1367
|
+
ContentRedactionType?: TranscribeContentRedactionType;
|
|
1370
1368
|
PiiEntityTypes?: string;
|
|
1371
1369
|
LanguageModelName?: string;
|
|
1372
1370
|
IdentifyLanguage?: boolean;
|
|
1373
1371
|
LanguageOptions?: string;
|
|
1374
|
-
PreferredLanguage?: TranscribeLanguageCode
|
|
1372
|
+
PreferredLanguage?: TranscribeLanguageCode;
|
|
1375
1373
|
VocabularyNames?: string;
|
|
1376
1374
|
VocabularyFilterNames?: string;
|
|
1377
1375
|
}
|
|
@@ -1474,7 +1472,7 @@ export type PhoneNumberAssociationName =
|
|
|
1474
1472
|
(typeof PhoneNumberAssociationName)[keyof typeof PhoneNumberAssociationName];
|
|
1475
1473
|
export interface PhoneNumberAssociation {
|
|
1476
1474
|
Value?: string;
|
|
1477
|
-
Name?: PhoneNumberAssociationName
|
|
1475
|
+
Name?: PhoneNumberAssociationName;
|
|
1478
1476
|
AssociatedTimestamp?: Date;
|
|
1479
1477
|
}
|
|
1480
1478
|
export interface PhoneNumberCapabilities {
|
|
@@ -1507,13 +1505,13 @@ export interface PhoneNumber {
|
|
|
1507
1505
|
PhoneNumberId?: string;
|
|
1508
1506
|
E164PhoneNumber?: string;
|
|
1509
1507
|
Country?: string;
|
|
1510
|
-
Type?: PhoneNumberType
|
|
1511
|
-
ProductType?: PhoneNumberProductType
|
|
1512
|
-
Status?: PhoneNumberStatus
|
|
1508
|
+
Type?: PhoneNumberType;
|
|
1509
|
+
ProductType?: PhoneNumberProductType;
|
|
1510
|
+
Status?: PhoneNumberStatus;
|
|
1513
1511
|
Capabilities?: PhoneNumberCapabilities;
|
|
1514
1512
|
Associations?: PhoneNumberAssociation[];
|
|
1515
1513
|
CallingName?: string;
|
|
1516
|
-
CallingNameStatus?: CallingNameStatus
|
|
1514
|
+
CallingNameStatus?: CallingNameStatus;
|
|
1517
1515
|
CreatedTimestamp?: Date;
|
|
1518
1516
|
UpdatedTimestamp?: Date;
|
|
1519
1517
|
DeletionTimestamp?: Date;
|