@aws-sdk/client-chime-sdk-meetings 3.169.0 → 3.171.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.
Files changed (34) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/ChimeSDKMeetings.d.ts +282 -85
  3. package/dist-types/ts3.4/ChimeSDKMeetingsClient.d.ts +201 -89
  4. package/dist-types/ts3.4/commands/BatchCreateAttendeeCommand.d.ts +36 -17
  5. package/dist-types/ts3.4/commands/BatchUpdateAttendeeCapabilitiesExceptCommand.d.ts +35 -17
  6. package/dist-types/ts3.4/commands/CreateAttendeeCommand.d.ts +35 -17
  7. package/dist-types/ts3.4/commands/CreateMeetingCommand.d.ts +35 -17
  8. package/dist-types/ts3.4/commands/CreateMeetingWithAttendeesCommand.d.ts +39 -17
  9. package/dist-types/ts3.4/commands/DeleteAttendeeCommand.d.ts +30 -17
  10. package/dist-types/ts3.4/commands/DeleteMeetingCommand.d.ts +30 -17
  11. package/dist-types/ts3.4/commands/GetAttendeeCommand.d.ts +32 -17
  12. package/dist-types/ts3.4/commands/GetMeetingCommand.d.ts +32 -17
  13. package/dist-types/ts3.4/commands/ListAttendeesCommand.d.ts +35 -17
  14. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  15. package/dist-types/ts3.4/commands/StartMeetingTranscriptionCommand.d.ts +35 -17
  16. package/dist-types/ts3.4/commands/StopMeetingTranscriptionCommand.d.ts +35 -17
  17. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  18. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  19. package/dist-types/ts3.4/commands/UpdateAttendeeCapabilitiesCommand.d.ts +39 -17
  20. package/dist-types/ts3.4/commands/index.d.ts +16 -16
  21. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  22. package/dist-types/ts3.4/index.d.ts +6 -6
  23. package/dist-types/ts3.4/models/ChimeSDKMeetingsServiceException.d.ts +7 -6
  24. package/dist-types/ts3.4/models/index.d.ts +1 -1
  25. package/dist-types/ts3.4/models/models_0.d.ts +519 -638
  26. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  27. package/dist-types/ts3.4/pagination/ListAttendeesPaginator.d.ts +11 -4
  28. package/dist-types/ts3.4/pagination/index.d.ts +2 -2
  29. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +197 -50
  30. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
  31. package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
  32. package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
  33. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
  34. package/package.json +34 -34
@@ -1,638 +1,519 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { ChimeSDKMeetingsServiceException as __BaseException } from "./ChimeSDKMeetingsServiceException";
3
- export declare enum MediaCapabilities {
4
- NONE = "None",
5
- RECEIVE = "Receive",
6
- SEND = "Send",
7
- SEND_RECEIVE = "SendReceive"
8
- }
9
-
10
- export interface AttendeeCapabilities {
11
-
12
- Audio: MediaCapabilities | string | undefined;
13
-
14
- Video: MediaCapabilities | string | undefined;
15
-
16
- Content: MediaCapabilities | string | undefined;
17
- }
18
-
19
- export interface Attendee {
20
-
21
- ExternalUserId?: string;
22
-
23
- AttendeeId?: string;
24
-
25
- JoinToken?: string;
26
-
27
- Capabilities?: AttendeeCapabilities;
28
- }
29
-
30
- export interface AttendeeIdItem {
31
-
32
- AttendeeId: string | undefined;
33
- }
34
- export declare enum MeetingFeatureStatus {
35
- AVAILABLE = "AVAILABLE",
36
- UNAVAILABLE = "UNAVAILABLE"
37
- }
38
-
39
- export interface AudioFeatures {
40
-
41
- EchoReduction?: MeetingFeatureStatus | string;
42
- }
43
-
44
- export declare class BadRequestException extends __BaseException {
45
- readonly name: "BadRequestException";
46
- readonly $fault: "client";
47
- Code?: string;
48
- Message?: string;
49
-
50
- RequestId?: string;
51
-
52
- constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
53
- }
54
-
55
- export interface CreateAttendeeRequestItem {
56
-
57
- ExternalUserId: string | undefined;
58
-
59
- Capabilities?: AttendeeCapabilities;
60
- }
61
- export interface BatchCreateAttendeeRequest {
62
-
63
- MeetingId: string | undefined;
64
-
65
- Attendees: CreateAttendeeRequestItem[] | undefined;
66
- }
67
-
68
- export interface CreateAttendeeError {
69
-
70
- ExternalUserId?: string;
71
-
72
- ErrorCode?: string;
73
-
74
- ErrorMessage?: string;
75
- }
76
- export interface BatchCreateAttendeeResponse {
77
-
78
- Attendees?: Attendee[];
79
-
80
- Errors?: CreateAttendeeError[];
81
- }
82
-
83
- export declare class ForbiddenException extends __BaseException {
84
- readonly name: "ForbiddenException";
85
- readonly $fault: "client";
86
- Code?: string;
87
- Message?: string;
88
-
89
- RequestId?: string;
90
-
91
- constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
92
- }
93
-
94
- export declare class LimitExceededException extends __BaseException {
95
- readonly name: "LimitExceededException";
96
- readonly $fault: "client";
97
- Code?: string;
98
- Message?: string;
99
-
100
- RequestId?: string;
101
-
102
- constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
103
- }
104
-
105
- export declare class NotFoundException extends __BaseException {
106
- readonly name: "NotFoundException";
107
- readonly $fault: "client";
108
- Code?: string;
109
- Message?: string;
110
-
111
- RequestId?: string;
112
-
113
- constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
114
- }
115
-
116
- export declare class ServiceFailureException extends __BaseException {
117
- readonly name: "ServiceFailureException";
118
- readonly $fault: "server";
119
- Code?: string;
120
- Message?: string;
121
-
122
- RequestId?: string;
123
-
124
- constructor(opts: __ExceptionOptionType<ServiceFailureException, __BaseException>);
125
- }
126
-
127
- export declare class ServiceUnavailableException extends __BaseException {
128
- readonly name: "ServiceUnavailableException";
129
- readonly $fault: "server";
130
- Code?: string;
131
- Message?: string;
132
-
133
- RequestId?: string;
134
-
135
- RetryAfterSeconds?: string;
136
-
137
- constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
138
- }
139
-
140
- export declare class ThrottlingException extends __BaseException {
141
- readonly name: "ThrottlingException";
142
- readonly $fault: "client";
143
- Code?: string;
144
- Message?: string;
145
-
146
- RequestId?: string;
147
-
148
- constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
149
- }
150
-
151
- export declare class UnauthorizedException extends __BaseException {
152
- readonly name: "UnauthorizedException";
153
- readonly $fault: "client";
154
- Code?: string;
155
- Message?: string;
156
-
157
- RequestId?: string;
158
-
159
- constructor(opts: __ExceptionOptionType<UnauthorizedException, __BaseException>);
160
- }
161
-
162
- export declare class UnprocessableEntityException extends __BaseException {
163
- readonly name: "UnprocessableEntityException";
164
- readonly $fault: "client";
165
- Code?: string;
166
- Message?: string;
167
-
168
- RequestId?: string;
169
-
170
- constructor(opts: __ExceptionOptionType<UnprocessableEntityException, __BaseException>);
171
- }
172
- export interface BatchUpdateAttendeeCapabilitiesExceptRequest {
173
-
174
- MeetingId: string | undefined;
175
-
176
- ExcludedAttendeeIds: AttendeeIdItem[] | undefined;
177
-
178
- Capabilities: AttendeeCapabilities | undefined;
179
- }
180
-
181
- export declare class ConflictException extends __BaseException {
182
- readonly name: "ConflictException";
183
- readonly $fault: "client";
184
- Code?: string;
185
- Message?: string;
186
-
187
- RequestId?: string;
188
-
189
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
190
- }
191
- export interface CreateAttendeeRequest {
192
-
193
- MeetingId: string | undefined;
194
-
195
- ExternalUserId: string | undefined;
196
-
197
- Capabilities?: AttendeeCapabilities;
198
- }
199
- export interface CreateAttendeeResponse {
200
-
201
- Attendee?: Attendee;
202
- }
203
-
204
- export interface MeetingFeaturesConfiguration {
205
-
206
- Audio?: AudioFeatures;
207
- }
208
-
209
- export interface NotificationsConfiguration {
210
-
211
- LambdaFunctionArn?: string;
212
-
213
- SnsTopicArn?: string;
214
-
215
- SqsQueueArn?: string;
216
- }
217
-
218
- export interface Tag {
219
-
220
- Key: string | undefined;
221
-
222
- Value: string | undefined;
223
- }
224
- export interface CreateMeetingRequest {
225
-
226
- ClientRequestToken?: string;
227
-
228
- MediaRegion: string | undefined;
229
-
230
- MeetingHostId?: string;
231
-
232
- ExternalMeetingId: string | undefined;
233
-
234
- NotificationsConfiguration?: NotificationsConfiguration;
235
-
236
- MeetingFeatures?: MeetingFeaturesConfiguration;
237
-
238
- PrimaryMeetingId?: string;
239
-
240
- TenantIds?: string[];
241
-
242
- Tags?: Tag[];
243
- }
244
-
245
- export interface MediaPlacement {
246
-
247
- AudioHostUrl?: string;
248
-
249
- AudioFallbackUrl?: string;
250
-
251
- SignalingUrl?: string;
252
-
253
- TurnControlUrl?: string;
254
-
255
- ScreenDataUrl?: string;
256
-
257
- ScreenViewingUrl?: string;
258
-
259
- ScreenSharingUrl?: string;
260
-
261
- EventIngestionUrl?: string;
262
- }
263
-
264
- export interface Meeting {
265
-
266
- MeetingId?: string;
267
-
268
- MeetingHostId?: string;
269
-
270
- ExternalMeetingId?: string;
271
-
272
- MediaRegion?: string;
273
-
274
- MediaPlacement?: MediaPlacement;
275
-
276
- MeetingFeatures?: MeetingFeaturesConfiguration;
277
-
278
- PrimaryMeetingId?: string;
279
-
280
- TenantIds?: string[];
281
-
282
- MeetingArn?: string;
283
- }
284
- export interface CreateMeetingResponse {
285
-
286
- Meeting?: Meeting;
287
- }
288
- export interface CreateMeetingWithAttendeesRequest {
289
-
290
- ClientRequestToken?: string;
291
-
292
- MediaRegion: string | undefined;
293
-
294
- MeetingHostId?: string;
295
-
296
- ExternalMeetingId: string | undefined;
297
-
298
- MeetingFeatures?: MeetingFeaturesConfiguration;
299
-
300
- NotificationsConfiguration?: NotificationsConfiguration;
301
-
302
- Attendees: CreateAttendeeRequestItem[] | undefined;
303
-
304
- PrimaryMeetingId?: string;
305
-
306
- TenantIds?: string[];
307
-
308
- Tags?: Tag[];
309
- }
310
- export interface CreateMeetingWithAttendeesResponse {
311
-
312
- Meeting?: Meeting;
313
-
314
- Attendees?: Attendee[];
315
-
316
- Errors?: CreateAttendeeError[];
317
- }
318
- export interface DeleteAttendeeRequest {
319
-
320
- MeetingId: string | undefined;
321
-
322
- AttendeeId: string | undefined;
323
- }
324
- export interface DeleteMeetingRequest {
325
-
326
- MeetingId: string | undefined;
327
- }
328
- export interface GetAttendeeRequest {
329
-
330
- MeetingId: string | undefined;
331
-
332
- AttendeeId: string | undefined;
333
- }
334
- export interface GetAttendeeResponse {
335
-
336
- Attendee?: Attendee;
337
- }
338
- export interface GetMeetingRequest {
339
-
340
- MeetingId: string | undefined;
341
- }
342
- export interface GetMeetingResponse {
343
-
344
- Meeting?: Meeting;
345
- }
346
- export interface ListAttendeesRequest {
347
-
348
- MeetingId: string | undefined;
349
-
350
- NextToken?: string;
351
-
352
- MaxResults?: number;
353
- }
354
- export interface ListAttendeesResponse {
355
-
356
- Attendees?: Attendee[];
357
-
358
- NextToken?: string;
359
- }
360
- export interface ListTagsForResourceRequest {
361
-
362
- ResourceARN: string | undefined;
363
- }
364
- export interface ListTagsForResourceResponse {
365
-
366
- Tags?: Tag[];
367
- }
368
-
369
- export declare class ResourceNotFoundException extends __BaseException {
370
- readonly name: "ResourceNotFoundException";
371
- readonly $fault: "client";
372
- Code?: string;
373
- Message?: string;
374
-
375
- RequestId?: string;
376
-
377
- ResourceName?: string;
378
-
379
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
380
- }
381
- export declare enum TranscribeMedicalContentIdentificationType {
382
- PHI = "PHI"
383
- }
384
- export declare enum TranscribeMedicalLanguageCode {
385
- EN_US = "en-US"
386
- }
387
- export declare enum TranscribeMedicalRegion {
388
- AP_SOUTHEAST_2 = "ap-southeast-2",
389
- AUTO = "auto",
390
- CA_CENTRAL_1 = "ca-central-1",
391
- EU_WEST_1 = "eu-west-1",
392
- US_EAST_1 = "us-east-1",
393
- US_EAST_2 = "us-east-2",
394
- US_WEST_2 = "us-west-2"
395
- }
396
- export declare enum TranscribeMedicalSpecialty {
397
- CARDIOLOGY = "CARDIOLOGY",
398
- NEUROLOGY = "NEUROLOGY",
399
- ONCOLOGY = "ONCOLOGY",
400
- PRIMARYCARE = "PRIMARYCARE",
401
- RADIOLOGY = "RADIOLOGY",
402
- UROLOGY = "UROLOGY"
403
- }
404
- export declare enum TranscribeMedicalType {
405
- CONVERSATION = "CONVERSATION",
406
- DICTATION = "DICTATION"
407
- }
408
-
409
- export interface EngineTranscribeMedicalSettings {
410
-
411
- LanguageCode: TranscribeMedicalLanguageCode | string | undefined;
412
-
413
- Specialty: TranscribeMedicalSpecialty | string | undefined;
414
-
415
- Type: TranscribeMedicalType | string | undefined;
416
-
417
- VocabularyName?: string;
418
-
419
- Region?: TranscribeMedicalRegion | string;
420
-
421
- ContentIdentificationType?: TranscribeMedicalContentIdentificationType | string;
422
- }
423
- export declare enum TranscribeContentIdentificationType {
424
- PII = "PII"
425
- }
426
- export declare enum TranscribeContentRedactionType {
427
- PII = "PII"
428
- }
429
- export declare enum TranscribeLanguageCode {
430
- DE_DE = "de-DE",
431
- EN_AU = "en-AU",
432
- EN_GB = "en-GB",
433
- EN_US = "en-US",
434
- ES_US = "es-US",
435
- FR_CA = "fr-CA",
436
- FR_FR = "fr-FR",
437
- IT_IT = "it-IT",
438
- JA_JP = "ja-JP",
439
- KO_KR = "ko-KR",
440
- PT_BR = "pt-BR",
441
- ZH_CN = "zh-CN"
442
- }
443
- export declare enum TranscribePartialResultsStability {
444
- HIGH = "high",
445
- LOW = "low",
446
- MEDIUM = "medium"
447
- }
448
- export declare enum TranscribeRegion {
449
- AP_NORTHEAST_1 = "ap-northeast-1",
450
- AP_NORTHEAST_2 = "ap-northeast-2",
451
- AP_SOUTHEAST_2 = "ap-southeast-2",
452
- AUTO = "auto",
453
- CA_CENTRAL_1 = "ca-central-1",
454
- EU_CENTRAL_1 = "eu-central-1",
455
- EU_WEST_1 = "eu-west-1",
456
- EU_WEST_2 = "eu-west-2",
457
- SA_EAST_1 = "sa-east-1",
458
- US_EAST_1 = "us-east-1",
459
- US_EAST_2 = "us-east-2",
460
- US_GOV_WEST_1 = "us-gov-west-1",
461
- US_WEST_2 = "us-west-2"
462
- }
463
- export declare enum TranscribeVocabularyFilterMethod {
464
- MASK = "mask",
465
- REMOVE = "remove",
466
- TAG = "tag"
467
- }
468
-
469
- export interface EngineTranscribeSettings {
470
-
471
- LanguageCode?: TranscribeLanguageCode | string;
472
-
473
- VocabularyFilterMethod?: TranscribeVocabularyFilterMethod | string;
474
-
475
- VocabularyFilterName?: string;
476
-
477
- VocabularyName?: string;
478
-
479
- Region?: TranscribeRegion | string;
480
-
481
- EnablePartialResultsStabilization?: boolean;
482
-
483
- PartialResultsStability?: TranscribePartialResultsStability | string;
484
-
485
- ContentIdentificationType?: TranscribeContentIdentificationType | string;
486
-
487
- ContentRedactionType?: TranscribeContentRedactionType | string;
488
-
489
- PiiEntityTypes?: string;
490
-
491
- LanguageModelName?: string;
492
-
493
- IdentifyLanguage?: boolean;
494
-
495
- LanguageOptions?: string;
496
-
497
- PreferredLanguage?: TranscribeLanguageCode | string;
498
- }
499
-
500
- export interface TranscriptionConfiguration {
501
-
502
- EngineTranscribeSettings?: EngineTranscribeSettings;
503
-
504
- EngineTranscribeMedicalSettings?: EngineTranscribeMedicalSettings;
505
- }
506
- export interface StartMeetingTranscriptionRequest {
507
-
508
- MeetingId: string | undefined;
509
-
510
- TranscriptionConfiguration: TranscriptionConfiguration | undefined;
511
- }
512
- export interface StopMeetingTranscriptionRequest {
513
-
514
- MeetingId: string | undefined;
515
- }
516
- export interface TagResourceRequest {
517
-
518
- ResourceARN: string | undefined;
519
-
520
- Tags: Tag[] | undefined;
521
- }
522
- export interface TagResourceResponse {
523
- }
524
-
525
- export declare class TooManyTagsException extends __BaseException {
526
- readonly name: "TooManyTagsException";
527
- readonly $fault: "client";
528
- Code?: string;
529
- Message?: string;
530
-
531
- RequestId?: string;
532
-
533
- ResourceName?: string;
534
-
535
- constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
536
- }
537
- export interface UntagResourceRequest {
538
-
539
- ResourceARN: string | undefined;
540
-
541
- TagKeys: string[] | undefined;
542
- }
543
- export interface UntagResourceResponse {
544
- }
545
- export interface UpdateAttendeeCapabilitiesRequest {
546
-
547
- MeetingId: string | undefined;
548
-
549
- AttendeeId: string | undefined;
550
-
551
- Capabilities: AttendeeCapabilities | undefined;
552
- }
553
- export interface UpdateAttendeeCapabilitiesResponse {
554
-
555
- Attendee?: Attendee;
556
- }
557
-
558
- export declare const AttendeeCapabilitiesFilterSensitiveLog: (obj: AttendeeCapabilities) => any;
559
-
560
- export declare const AttendeeFilterSensitiveLog: (obj: Attendee) => any;
561
-
562
- export declare const AttendeeIdItemFilterSensitiveLog: (obj: AttendeeIdItem) => any;
563
-
564
- export declare const AudioFeaturesFilterSensitiveLog: (obj: AudioFeatures) => any;
565
-
566
- export declare const CreateAttendeeRequestItemFilterSensitiveLog: (obj: CreateAttendeeRequestItem) => any;
567
-
568
- export declare const BatchCreateAttendeeRequestFilterSensitiveLog: (obj: BatchCreateAttendeeRequest) => any;
569
-
570
- export declare const CreateAttendeeErrorFilterSensitiveLog: (obj: CreateAttendeeError) => any;
571
-
572
- export declare const BatchCreateAttendeeResponseFilterSensitiveLog: (obj: BatchCreateAttendeeResponse) => any;
573
-
574
- export declare const BatchUpdateAttendeeCapabilitiesExceptRequestFilterSensitiveLog: (obj: BatchUpdateAttendeeCapabilitiesExceptRequest) => any;
575
-
576
- export declare const CreateAttendeeRequestFilterSensitiveLog: (obj: CreateAttendeeRequest) => any;
577
-
578
- export declare const CreateAttendeeResponseFilterSensitiveLog: (obj: CreateAttendeeResponse) => any;
579
-
580
- export declare const MeetingFeaturesConfigurationFilterSensitiveLog: (obj: MeetingFeaturesConfiguration) => any;
581
-
582
- export declare const NotificationsConfigurationFilterSensitiveLog: (obj: NotificationsConfiguration) => any;
583
-
584
- export declare const TagFilterSensitiveLog: (obj: Tag) => any;
585
-
586
- export declare const CreateMeetingRequestFilterSensitiveLog: (obj: CreateMeetingRequest) => any;
587
-
588
- export declare const MediaPlacementFilterSensitiveLog: (obj: MediaPlacement) => any;
589
-
590
- export declare const MeetingFilterSensitiveLog: (obj: Meeting) => any;
591
-
592
- export declare const CreateMeetingResponseFilterSensitiveLog: (obj: CreateMeetingResponse) => any;
593
-
594
- export declare const CreateMeetingWithAttendeesRequestFilterSensitiveLog: (obj: CreateMeetingWithAttendeesRequest) => any;
595
-
596
- export declare const CreateMeetingWithAttendeesResponseFilterSensitiveLog: (obj: CreateMeetingWithAttendeesResponse) => any;
597
-
598
- export declare const DeleteAttendeeRequestFilterSensitiveLog: (obj: DeleteAttendeeRequest) => any;
599
-
600
- export declare const DeleteMeetingRequestFilterSensitiveLog: (obj: DeleteMeetingRequest) => any;
601
-
602
- export declare const GetAttendeeRequestFilterSensitiveLog: (obj: GetAttendeeRequest) => any;
603
-
604
- export declare const GetAttendeeResponseFilterSensitiveLog: (obj: GetAttendeeResponse) => any;
605
-
606
- export declare const GetMeetingRequestFilterSensitiveLog: (obj: GetMeetingRequest) => any;
607
-
608
- export declare const GetMeetingResponseFilterSensitiveLog: (obj: GetMeetingResponse) => any;
609
-
610
- export declare const ListAttendeesRequestFilterSensitiveLog: (obj: ListAttendeesRequest) => any;
611
-
612
- export declare const ListAttendeesResponseFilterSensitiveLog: (obj: ListAttendeesResponse) => any;
613
-
614
- export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
615
-
616
- export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
617
-
618
- export declare const EngineTranscribeMedicalSettingsFilterSensitiveLog: (obj: EngineTranscribeMedicalSettings) => any;
619
-
620
- export declare const EngineTranscribeSettingsFilterSensitiveLog: (obj: EngineTranscribeSettings) => any;
621
-
622
- export declare const TranscriptionConfigurationFilterSensitiveLog: (obj: TranscriptionConfiguration) => any;
623
-
624
- export declare const StartMeetingTranscriptionRequestFilterSensitiveLog: (obj: StartMeetingTranscriptionRequest) => any;
625
-
626
- export declare const StopMeetingTranscriptionRequestFilterSensitiveLog: (obj: StopMeetingTranscriptionRequest) => any;
627
-
628
- export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
629
-
630
- export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
631
-
632
- export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
633
-
634
- export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
635
-
636
- export declare const UpdateAttendeeCapabilitiesRequestFilterSensitiveLog: (obj: UpdateAttendeeCapabilitiesRequest) => any;
637
-
638
- export declare const UpdateAttendeeCapabilitiesResponseFilterSensitiveLog: (obj: UpdateAttendeeCapabilitiesResponse) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { ChimeSDKMeetingsServiceException as __BaseException } from "./ChimeSDKMeetingsServiceException";
3
+ export declare enum MediaCapabilities {
4
+ NONE = "None",
5
+ RECEIVE = "Receive",
6
+ SEND = "Send",
7
+ SEND_RECEIVE = "SendReceive",
8
+ }
9
+ export interface AttendeeCapabilities {
10
+ Audio: MediaCapabilities | string | undefined;
11
+ Video: MediaCapabilities | string | undefined;
12
+ Content: MediaCapabilities | string | undefined;
13
+ }
14
+ export interface Attendee {
15
+ ExternalUserId?: string;
16
+ AttendeeId?: string;
17
+ JoinToken?: string;
18
+ Capabilities?: AttendeeCapabilities;
19
+ }
20
+ export interface AttendeeIdItem {
21
+ AttendeeId: string | undefined;
22
+ }
23
+ export declare enum MeetingFeatureStatus {
24
+ AVAILABLE = "AVAILABLE",
25
+ UNAVAILABLE = "UNAVAILABLE",
26
+ }
27
+ export interface AudioFeatures {
28
+ EchoReduction?: MeetingFeatureStatus | string;
29
+ }
30
+ export declare class BadRequestException extends __BaseException {
31
+ readonly name: "BadRequestException";
32
+ readonly $fault: "client";
33
+ Code?: string;
34
+ Message?: string;
35
+ RequestId?: string;
36
+ constructor(
37
+ opts: __ExceptionOptionType<BadRequestException, __BaseException>
38
+ );
39
+ }
40
+ export interface CreateAttendeeRequestItem {
41
+ ExternalUserId: string | undefined;
42
+ Capabilities?: AttendeeCapabilities;
43
+ }
44
+ export interface BatchCreateAttendeeRequest {
45
+ MeetingId: string | undefined;
46
+ Attendees: CreateAttendeeRequestItem[] | undefined;
47
+ }
48
+ export interface CreateAttendeeError {
49
+ ExternalUserId?: string;
50
+ ErrorCode?: string;
51
+ ErrorMessage?: string;
52
+ }
53
+ export interface BatchCreateAttendeeResponse {
54
+ Attendees?: Attendee[];
55
+ Errors?: CreateAttendeeError[];
56
+ }
57
+ export declare class ForbiddenException extends __BaseException {
58
+ readonly name: "ForbiddenException";
59
+ readonly $fault: "client";
60
+ Code?: string;
61
+ Message?: string;
62
+ RequestId?: string;
63
+ constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
64
+ }
65
+ export declare class LimitExceededException extends __BaseException {
66
+ readonly name: "LimitExceededException";
67
+ readonly $fault: "client";
68
+ Code?: string;
69
+ Message?: string;
70
+ RequestId?: string;
71
+ constructor(
72
+ opts: __ExceptionOptionType<LimitExceededException, __BaseException>
73
+ );
74
+ }
75
+ export declare class NotFoundException extends __BaseException {
76
+ readonly name: "NotFoundException";
77
+ readonly $fault: "client";
78
+ Code?: string;
79
+ Message?: string;
80
+ RequestId?: string;
81
+ constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
82
+ }
83
+ export declare class ServiceFailureException extends __BaseException {
84
+ readonly name: "ServiceFailureException";
85
+ readonly $fault: "server";
86
+ Code?: string;
87
+ Message?: string;
88
+ RequestId?: string;
89
+ constructor(
90
+ opts: __ExceptionOptionType<ServiceFailureException, __BaseException>
91
+ );
92
+ }
93
+ export declare class ServiceUnavailableException extends __BaseException {
94
+ readonly name: "ServiceUnavailableException";
95
+ readonly $fault: "server";
96
+ Code?: string;
97
+ Message?: string;
98
+ RequestId?: string;
99
+ RetryAfterSeconds?: string;
100
+ constructor(
101
+ opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
102
+ );
103
+ }
104
+ export declare class ThrottlingException extends __BaseException {
105
+ readonly name: "ThrottlingException";
106
+ readonly $fault: "client";
107
+ Code?: string;
108
+ Message?: string;
109
+ RequestId?: string;
110
+ constructor(
111
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
112
+ );
113
+ }
114
+ export declare class UnauthorizedException extends __BaseException {
115
+ readonly name: "UnauthorizedException";
116
+ readonly $fault: "client";
117
+ Code?: string;
118
+ Message?: string;
119
+ RequestId?: string;
120
+ constructor(
121
+ opts: __ExceptionOptionType<UnauthorizedException, __BaseException>
122
+ );
123
+ }
124
+ export declare class UnprocessableEntityException extends __BaseException {
125
+ readonly name: "UnprocessableEntityException";
126
+ readonly $fault: "client";
127
+ Code?: string;
128
+ Message?: string;
129
+ RequestId?: string;
130
+ constructor(
131
+ opts: __ExceptionOptionType<UnprocessableEntityException, __BaseException>
132
+ );
133
+ }
134
+ export interface BatchUpdateAttendeeCapabilitiesExceptRequest {
135
+ MeetingId: string | undefined;
136
+ ExcludedAttendeeIds: AttendeeIdItem[] | undefined;
137
+ Capabilities: AttendeeCapabilities | undefined;
138
+ }
139
+ export declare class ConflictException extends __BaseException {
140
+ readonly name: "ConflictException";
141
+ readonly $fault: "client";
142
+ Code?: string;
143
+ Message?: string;
144
+ RequestId?: string;
145
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
146
+ }
147
+ export interface CreateAttendeeRequest {
148
+ MeetingId: string | undefined;
149
+ ExternalUserId: string | undefined;
150
+ Capabilities?: AttendeeCapabilities;
151
+ }
152
+ export interface CreateAttendeeResponse {
153
+ Attendee?: Attendee;
154
+ }
155
+ export interface MeetingFeaturesConfiguration {
156
+ Audio?: AudioFeatures;
157
+ }
158
+ export interface NotificationsConfiguration {
159
+ LambdaFunctionArn?: string;
160
+ SnsTopicArn?: string;
161
+ SqsQueueArn?: string;
162
+ }
163
+ export interface Tag {
164
+ Key: string | undefined;
165
+ Value: string | undefined;
166
+ }
167
+ export interface CreateMeetingRequest {
168
+ ClientRequestToken?: string;
169
+ MediaRegion: string | undefined;
170
+ MeetingHostId?: string;
171
+ ExternalMeetingId: string | undefined;
172
+ NotificationsConfiguration?: NotificationsConfiguration;
173
+ MeetingFeatures?: MeetingFeaturesConfiguration;
174
+ PrimaryMeetingId?: string;
175
+ TenantIds?: string[];
176
+ Tags?: Tag[];
177
+ }
178
+ export interface MediaPlacement {
179
+ AudioHostUrl?: string;
180
+ AudioFallbackUrl?: string;
181
+ SignalingUrl?: string;
182
+ TurnControlUrl?: string;
183
+ ScreenDataUrl?: string;
184
+ ScreenViewingUrl?: string;
185
+ ScreenSharingUrl?: string;
186
+ EventIngestionUrl?: string;
187
+ }
188
+ export interface Meeting {
189
+ MeetingId?: string;
190
+ MeetingHostId?: string;
191
+ ExternalMeetingId?: string;
192
+ MediaRegion?: string;
193
+ MediaPlacement?: MediaPlacement;
194
+ MeetingFeatures?: MeetingFeaturesConfiguration;
195
+ PrimaryMeetingId?: string;
196
+ TenantIds?: string[];
197
+ MeetingArn?: string;
198
+ }
199
+ export interface CreateMeetingResponse {
200
+ Meeting?: Meeting;
201
+ }
202
+ export interface CreateMeetingWithAttendeesRequest {
203
+ ClientRequestToken?: string;
204
+ MediaRegion: string | undefined;
205
+ MeetingHostId?: string;
206
+ ExternalMeetingId: string | undefined;
207
+ MeetingFeatures?: MeetingFeaturesConfiguration;
208
+ NotificationsConfiguration?: NotificationsConfiguration;
209
+ Attendees: CreateAttendeeRequestItem[] | undefined;
210
+ PrimaryMeetingId?: string;
211
+ TenantIds?: string[];
212
+ Tags?: Tag[];
213
+ }
214
+ export interface CreateMeetingWithAttendeesResponse {
215
+ Meeting?: Meeting;
216
+ Attendees?: Attendee[];
217
+ Errors?: CreateAttendeeError[];
218
+ }
219
+ export interface DeleteAttendeeRequest {
220
+ MeetingId: string | undefined;
221
+ AttendeeId: string | undefined;
222
+ }
223
+ export interface DeleteMeetingRequest {
224
+ MeetingId: string | undefined;
225
+ }
226
+ export interface GetAttendeeRequest {
227
+ MeetingId: string | undefined;
228
+ AttendeeId: string | undefined;
229
+ }
230
+ export interface GetAttendeeResponse {
231
+ Attendee?: Attendee;
232
+ }
233
+ export interface GetMeetingRequest {
234
+ MeetingId: string | undefined;
235
+ }
236
+ export interface GetMeetingResponse {
237
+ Meeting?: Meeting;
238
+ }
239
+ export interface ListAttendeesRequest {
240
+ MeetingId: string | undefined;
241
+ NextToken?: string;
242
+ MaxResults?: number;
243
+ }
244
+ export interface ListAttendeesResponse {
245
+ Attendees?: Attendee[];
246
+ NextToken?: string;
247
+ }
248
+ export interface ListTagsForResourceRequest {
249
+ ResourceARN: string | undefined;
250
+ }
251
+ export interface ListTagsForResourceResponse {
252
+ Tags?: Tag[];
253
+ }
254
+ export declare class ResourceNotFoundException extends __BaseException {
255
+ readonly name: "ResourceNotFoundException";
256
+ readonly $fault: "client";
257
+ Code?: string;
258
+ Message?: string;
259
+ RequestId?: string;
260
+ ResourceName?: string;
261
+ constructor(
262
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
263
+ );
264
+ }
265
+ export declare enum TranscribeMedicalContentIdentificationType {
266
+ PHI = "PHI",
267
+ }
268
+ export declare enum TranscribeMedicalLanguageCode {
269
+ EN_US = "en-US",
270
+ }
271
+ export declare enum TranscribeMedicalRegion {
272
+ AP_SOUTHEAST_2 = "ap-southeast-2",
273
+ AUTO = "auto",
274
+ CA_CENTRAL_1 = "ca-central-1",
275
+ EU_WEST_1 = "eu-west-1",
276
+ US_EAST_1 = "us-east-1",
277
+ US_EAST_2 = "us-east-2",
278
+ US_WEST_2 = "us-west-2",
279
+ }
280
+ export declare enum TranscribeMedicalSpecialty {
281
+ CARDIOLOGY = "CARDIOLOGY",
282
+ NEUROLOGY = "NEUROLOGY",
283
+ ONCOLOGY = "ONCOLOGY",
284
+ PRIMARYCARE = "PRIMARYCARE",
285
+ RADIOLOGY = "RADIOLOGY",
286
+ UROLOGY = "UROLOGY",
287
+ }
288
+ export declare enum TranscribeMedicalType {
289
+ CONVERSATION = "CONVERSATION",
290
+ DICTATION = "DICTATION",
291
+ }
292
+ export interface EngineTranscribeMedicalSettings {
293
+ LanguageCode: TranscribeMedicalLanguageCode | string | undefined;
294
+ Specialty: TranscribeMedicalSpecialty | string | undefined;
295
+ Type: TranscribeMedicalType | string | undefined;
296
+ VocabularyName?: string;
297
+ Region?: TranscribeMedicalRegion | string;
298
+ ContentIdentificationType?:
299
+ | TranscribeMedicalContentIdentificationType
300
+ | string;
301
+ }
302
+ export declare enum TranscribeContentIdentificationType {
303
+ PII = "PII",
304
+ }
305
+ export declare enum TranscribeContentRedactionType {
306
+ PII = "PII",
307
+ }
308
+ export declare enum TranscribeLanguageCode {
309
+ DE_DE = "de-DE",
310
+ EN_AU = "en-AU",
311
+ EN_GB = "en-GB",
312
+ EN_US = "en-US",
313
+ ES_US = "es-US",
314
+ FR_CA = "fr-CA",
315
+ FR_FR = "fr-FR",
316
+ IT_IT = "it-IT",
317
+ JA_JP = "ja-JP",
318
+ KO_KR = "ko-KR",
319
+ PT_BR = "pt-BR",
320
+ ZH_CN = "zh-CN",
321
+ }
322
+ export declare enum TranscribePartialResultsStability {
323
+ HIGH = "high",
324
+ LOW = "low",
325
+ MEDIUM = "medium",
326
+ }
327
+ export declare enum TranscribeRegion {
328
+ AP_NORTHEAST_1 = "ap-northeast-1",
329
+ AP_NORTHEAST_2 = "ap-northeast-2",
330
+ AP_SOUTHEAST_2 = "ap-southeast-2",
331
+ AUTO = "auto",
332
+ CA_CENTRAL_1 = "ca-central-1",
333
+ EU_CENTRAL_1 = "eu-central-1",
334
+ EU_WEST_1 = "eu-west-1",
335
+ EU_WEST_2 = "eu-west-2",
336
+ SA_EAST_1 = "sa-east-1",
337
+ US_EAST_1 = "us-east-1",
338
+ US_EAST_2 = "us-east-2",
339
+ US_GOV_WEST_1 = "us-gov-west-1",
340
+ US_WEST_2 = "us-west-2",
341
+ }
342
+ export declare enum TranscribeVocabularyFilterMethod {
343
+ MASK = "mask",
344
+ REMOVE = "remove",
345
+ TAG = "tag",
346
+ }
347
+ export interface EngineTranscribeSettings {
348
+ LanguageCode?: TranscribeLanguageCode | string;
349
+ VocabularyFilterMethod?: TranscribeVocabularyFilterMethod | string;
350
+ VocabularyFilterName?: string;
351
+ VocabularyName?: string;
352
+ Region?: TranscribeRegion | string;
353
+ EnablePartialResultsStabilization?: boolean;
354
+ PartialResultsStability?: TranscribePartialResultsStability | string;
355
+ ContentIdentificationType?: TranscribeContentIdentificationType | string;
356
+ ContentRedactionType?: TranscribeContentRedactionType | string;
357
+ PiiEntityTypes?: string;
358
+ LanguageModelName?: string;
359
+ IdentifyLanguage?: boolean;
360
+ LanguageOptions?: string;
361
+ PreferredLanguage?: TranscribeLanguageCode | string;
362
+ }
363
+ export interface TranscriptionConfiguration {
364
+ EngineTranscribeSettings?: EngineTranscribeSettings;
365
+ EngineTranscribeMedicalSettings?: EngineTranscribeMedicalSettings;
366
+ }
367
+ export interface StartMeetingTranscriptionRequest {
368
+ MeetingId: string | undefined;
369
+ TranscriptionConfiguration: TranscriptionConfiguration | undefined;
370
+ }
371
+ export interface StopMeetingTranscriptionRequest {
372
+ MeetingId: string | undefined;
373
+ }
374
+ export interface TagResourceRequest {
375
+ ResourceARN: string | undefined;
376
+ Tags: Tag[] | undefined;
377
+ }
378
+ export interface TagResourceResponse {}
379
+ export declare class TooManyTagsException extends __BaseException {
380
+ readonly name: "TooManyTagsException";
381
+ readonly $fault: "client";
382
+ Code?: string;
383
+ Message?: string;
384
+ RequestId?: string;
385
+ ResourceName?: string;
386
+ constructor(
387
+ opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
388
+ );
389
+ }
390
+ export interface UntagResourceRequest {
391
+ ResourceARN: string | undefined;
392
+ TagKeys: string[] | undefined;
393
+ }
394
+ export interface UntagResourceResponse {}
395
+ export interface UpdateAttendeeCapabilitiesRequest {
396
+ MeetingId: string | undefined;
397
+ AttendeeId: string | undefined;
398
+ Capabilities: AttendeeCapabilities | undefined;
399
+ }
400
+ export interface UpdateAttendeeCapabilitiesResponse {
401
+ Attendee?: Attendee;
402
+ }
403
+ export declare const AttendeeCapabilitiesFilterSensitiveLog: (
404
+ obj: AttendeeCapabilities
405
+ ) => any;
406
+ export declare const AttendeeFilterSensitiveLog: (obj: Attendee) => any;
407
+ export declare const AttendeeIdItemFilterSensitiveLog: (
408
+ obj: AttendeeIdItem
409
+ ) => any;
410
+ export declare const AudioFeaturesFilterSensitiveLog: (
411
+ obj: AudioFeatures
412
+ ) => any;
413
+ export declare const CreateAttendeeRequestItemFilterSensitiveLog: (
414
+ obj: CreateAttendeeRequestItem
415
+ ) => any;
416
+ export declare const BatchCreateAttendeeRequestFilterSensitiveLog: (
417
+ obj: BatchCreateAttendeeRequest
418
+ ) => any;
419
+ export declare const CreateAttendeeErrorFilterSensitiveLog: (
420
+ obj: CreateAttendeeError
421
+ ) => any;
422
+ export declare const BatchCreateAttendeeResponseFilterSensitiveLog: (
423
+ obj: BatchCreateAttendeeResponse
424
+ ) => any;
425
+ export declare const BatchUpdateAttendeeCapabilitiesExceptRequestFilterSensitiveLog: (
426
+ obj: BatchUpdateAttendeeCapabilitiesExceptRequest
427
+ ) => any;
428
+ export declare const CreateAttendeeRequestFilterSensitiveLog: (
429
+ obj: CreateAttendeeRequest
430
+ ) => any;
431
+ export declare const CreateAttendeeResponseFilterSensitiveLog: (
432
+ obj: CreateAttendeeResponse
433
+ ) => any;
434
+ export declare const MeetingFeaturesConfigurationFilterSensitiveLog: (
435
+ obj: MeetingFeaturesConfiguration
436
+ ) => any;
437
+ export declare const NotificationsConfigurationFilterSensitiveLog: (
438
+ obj: NotificationsConfiguration
439
+ ) => any;
440
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
441
+ export declare const CreateMeetingRequestFilterSensitiveLog: (
442
+ obj: CreateMeetingRequest
443
+ ) => any;
444
+ export declare const MediaPlacementFilterSensitiveLog: (
445
+ obj: MediaPlacement
446
+ ) => any;
447
+ export declare const MeetingFilterSensitiveLog: (obj: Meeting) => any;
448
+ export declare const CreateMeetingResponseFilterSensitiveLog: (
449
+ obj: CreateMeetingResponse
450
+ ) => any;
451
+ export declare const CreateMeetingWithAttendeesRequestFilterSensitiveLog: (
452
+ obj: CreateMeetingWithAttendeesRequest
453
+ ) => any;
454
+ export declare const CreateMeetingWithAttendeesResponseFilterSensitiveLog: (
455
+ obj: CreateMeetingWithAttendeesResponse
456
+ ) => any;
457
+ export declare const DeleteAttendeeRequestFilterSensitiveLog: (
458
+ obj: DeleteAttendeeRequest
459
+ ) => any;
460
+ export declare const DeleteMeetingRequestFilterSensitiveLog: (
461
+ obj: DeleteMeetingRequest
462
+ ) => any;
463
+ export declare const GetAttendeeRequestFilterSensitiveLog: (
464
+ obj: GetAttendeeRequest
465
+ ) => any;
466
+ export declare const GetAttendeeResponseFilterSensitiveLog: (
467
+ obj: GetAttendeeResponse
468
+ ) => any;
469
+ export declare const GetMeetingRequestFilterSensitiveLog: (
470
+ obj: GetMeetingRequest
471
+ ) => any;
472
+ export declare const GetMeetingResponseFilterSensitiveLog: (
473
+ obj: GetMeetingResponse
474
+ ) => any;
475
+ export declare const ListAttendeesRequestFilterSensitiveLog: (
476
+ obj: ListAttendeesRequest
477
+ ) => any;
478
+ export declare const ListAttendeesResponseFilterSensitiveLog: (
479
+ obj: ListAttendeesResponse
480
+ ) => any;
481
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
482
+ obj: ListTagsForResourceRequest
483
+ ) => any;
484
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
485
+ obj: ListTagsForResourceResponse
486
+ ) => any;
487
+ export declare const EngineTranscribeMedicalSettingsFilterSensitiveLog: (
488
+ obj: EngineTranscribeMedicalSettings
489
+ ) => any;
490
+ export declare const EngineTranscribeSettingsFilterSensitiveLog: (
491
+ obj: EngineTranscribeSettings
492
+ ) => any;
493
+ export declare const TranscriptionConfigurationFilterSensitiveLog: (
494
+ obj: TranscriptionConfiguration
495
+ ) => any;
496
+ export declare const StartMeetingTranscriptionRequestFilterSensitiveLog: (
497
+ obj: StartMeetingTranscriptionRequest
498
+ ) => any;
499
+ export declare const StopMeetingTranscriptionRequestFilterSensitiveLog: (
500
+ obj: StopMeetingTranscriptionRequest
501
+ ) => any;
502
+ export declare const TagResourceRequestFilterSensitiveLog: (
503
+ obj: TagResourceRequest
504
+ ) => any;
505
+ export declare const TagResourceResponseFilterSensitiveLog: (
506
+ obj: TagResourceResponse
507
+ ) => any;
508
+ export declare const UntagResourceRequestFilterSensitiveLog: (
509
+ obj: UntagResourceRequest
510
+ ) => any;
511
+ export declare const UntagResourceResponseFilterSensitiveLog: (
512
+ obj: UntagResourceResponse
513
+ ) => any;
514
+ export declare const UpdateAttendeeCapabilitiesRequestFilterSensitiveLog: (
515
+ obj: UpdateAttendeeCapabilitiesRequest
516
+ ) => any;
517
+ export declare const UpdateAttendeeCapabilitiesResponseFilterSensitiveLog: (
518
+ obj: UpdateAttendeeCapabilitiesResponse
519
+ ) => any;