@aws-sdk/client-chime-sdk-meetings 3.295.0 → 3.297.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.
- package/dist-types/ChimeSDKMeetings.d.ts +17 -0
- package/dist-types/ChimeSDKMeetingsClient.d.ts +24 -4
- package/dist-types/commands/BatchCreateAttendeeCommand.d.ts +16 -0
- package/dist-types/commands/BatchUpdateAttendeeCapabilitiesExceptCommand.d.ts +16 -0
- package/dist-types/commands/CreateAttendeeCommand.d.ts +16 -0
- package/dist-types/commands/CreateMeetingCommand.d.ts +16 -0
- package/dist-types/commands/CreateMeetingWithAttendeesCommand.d.ts +16 -0
- package/dist-types/commands/DeleteAttendeeCommand.d.ts +16 -0
- package/dist-types/commands/DeleteMeetingCommand.d.ts +16 -0
- package/dist-types/commands/GetAttendeeCommand.d.ts +16 -0
- package/dist-types/commands/GetMeetingCommand.d.ts +16 -0
- package/dist-types/commands/ListAttendeesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/StartMeetingTranscriptionCommand.d.ts +16 -0
- package/dist-types/commands/StopMeetingTranscriptionCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateAttendeeCapabilitiesCommand.d.ts +16 -0
- package/dist-types/models/ChimeSDKMeetingsServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +153 -7
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListAttendeesPaginator.d.ts +3 -0
- package/package.json +29 -29
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { ChimeSDKMeetingsServiceException as __BaseException } from "./ChimeSDKMeetingsServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
3
6
|
export declare enum MediaCapabilities {
|
|
4
7
|
NONE = "None",
|
|
5
8
|
RECEIVE = "Receive",
|
|
@@ -7,6 +10,7 @@ export declare enum MediaCapabilities {
|
|
|
7
10
|
SEND_RECEIVE = "SendReceive"
|
|
8
11
|
}
|
|
9
12
|
/**
|
|
13
|
+
* @public
|
|
10
14
|
* <p>The media capabilities of an attendee: audio, video, or content. </p>
|
|
11
15
|
* <note>
|
|
12
16
|
* <p>You use the capabilities with a set of values that control what the capabilities can do, such as <code>SendReceive</code> data. For more information about those values, see
|
|
@@ -44,6 +48,7 @@ export interface AttendeeCapabilities {
|
|
|
44
48
|
Content: MediaCapabilities | string | undefined;
|
|
45
49
|
}
|
|
46
50
|
/**
|
|
51
|
+
* @public
|
|
47
52
|
* <p>An Amazon Chime SDK meeting attendee. Includes a unique
|
|
48
53
|
* <code>AttendeeId</code> and <code>JoinToken</code>. The
|
|
49
54
|
* <code>JoinToken</code>
|
|
@@ -60,7 +65,7 @@ export interface AttendeeCapabilities {
|
|
|
60
65
|
export interface Attendee {
|
|
61
66
|
/**
|
|
62
67
|
* <p>The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application.</p>
|
|
63
|
-
* <p>Pattern: <code>[-_&@+=,(){}\[\]\/«».:|'"#a-zA-Z0-9À-ÿ\s]*</code>
|
|
68
|
+
* <p>Pattern: <code>[-_&@+=,()\{\}\[\]\/«».:|'"#a-zA-Z0-9À-ÿ\s]*</code>
|
|
64
69
|
* </p>
|
|
65
70
|
* <p>Values that begin with <code>aws:</code> are reserved. You can't configure a value that uses this prefix.
|
|
66
71
|
* Case insensitive.</p>
|
|
@@ -100,6 +105,7 @@ export interface Attendee {
|
|
|
100
105
|
Capabilities?: AttendeeCapabilities;
|
|
101
106
|
}
|
|
102
107
|
/**
|
|
108
|
+
* @public
|
|
103
109
|
* <p>A structure that contains one or more attendee IDs.</p>
|
|
104
110
|
*/
|
|
105
111
|
export interface AttendeeIdItem {
|
|
@@ -108,11 +114,15 @@ export interface AttendeeIdItem {
|
|
|
108
114
|
*/
|
|
109
115
|
AttendeeId: string | undefined;
|
|
110
116
|
}
|
|
117
|
+
/**
|
|
118
|
+
* @public
|
|
119
|
+
*/
|
|
111
120
|
export declare enum MeetingFeatureStatus {
|
|
112
121
|
AVAILABLE = "AVAILABLE",
|
|
113
122
|
UNAVAILABLE = "UNAVAILABLE"
|
|
114
123
|
}
|
|
115
124
|
/**
|
|
125
|
+
* @public
|
|
116
126
|
* <p>An optional category of meeting features that contains audio-specific configurations, such as operating parameters for Amazon Voice Focus. </p>
|
|
117
127
|
*/
|
|
118
128
|
export interface AudioFeatures {
|
|
@@ -122,6 +132,7 @@ export interface AudioFeatures {
|
|
|
122
132
|
EchoReduction?: MeetingFeatureStatus | string;
|
|
123
133
|
}
|
|
124
134
|
/**
|
|
135
|
+
* @public
|
|
125
136
|
* <p>The input parameters don't match the service's restrictions.</p>
|
|
126
137
|
*/
|
|
127
138
|
export declare class BadRequestException extends __BaseException {
|
|
@@ -139,12 +150,13 @@ export declare class BadRequestException extends __BaseException {
|
|
|
139
150
|
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
140
151
|
}
|
|
141
152
|
/**
|
|
153
|
+
* @public
|
|
142
154
|
* <p>The Amazon Chime SDK attendee fields to create, used with the BatchCreateAttendee action.</p>
|
|
143
155
|
*/
|
|
144
156
|
export interface CreateAttendeeRequestItem {
|
|
145
157
|
/**
|
|
146
158
|
* <p>The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application.</p>
|
|
147
|
-
* <p>Pattern: <code>[-_&@+=,(){}\[\]\/«».:|'"#a-zA-Z0-9À-ÿ\s]*</code>
|
|
159
|
+
* <p>Pattern: <code>[-_&@+=,()\{\}\[\]\/«».:|'"#a-zA-Z0-9À-ÿ\s]*</code>
|
|
148
160
|
* </p>
|
|
149
161
|
* <p>Values that begin with <code>aws:</code> are reserved. You can't configure a value that uses this prefix.
|
|
150
162
|
* Case insensitive.</p>
|
|
@@ -155,6 +167,9 @@ export interface CreateAttendeeRequestItem {
|
|
|
155
167
|
*/
|
|
156
168
|
Capabilities?: AttendeeCapabilities;
|
|
157
169
|
}
|
|
170
|
+
/**
|
|
171
|
+
* @public
|
|
172
|
+
*/
|
|
158
173
|
export interface BatchCreateAttendeeRequest {
|
|
159
174
|
/**
|
|
160
175
|
* <p>The Amazon Chime SDK ID of the meeting to which you're adding attendees.</p>
|
|
@@ -166,12 +181,13 @@ export interface BatchCreateAttendeeRequest {
|
|
|
166
181
|
Attendees: CreateAttendeeRequestItem[] | undefined;
|
|
167
182
|
}
|
|
168
183
|
/**
|
|
184
|
+
* @public
|
|
169
185
|
* <p>The list of errors returned when errors are encountered during the BatchCreateAttendee and CreateAttendee actions. This includes external user IDs, error codes, and error messages.</p>
|
|
170
186
|
*/
|
|
171
187
|
export interface CreateAttendeeError {
|
|
172
188
|
/**
|
|
173
189
|
* <p>The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application.</p>
|
|
174
|
-
* <p>Pattern: <code>[-_&@+=,(){}\[\]\/«».:|'"#a-zA-Z0-9À-ÿ\s]*</code>
|
|
190
|
+
* <p>Pattern: <code>[-_&@+=,()\{\}\[\]\/«».:|'"#a-zA-Z0-9À-ÿ\s]*</code>
|
|
175
191
|
* </p>
|
|
176
192
|
* <p>Values that begin with <code>aws:</code> are reserved. You can't configure a value that uses this prefix.
|
|
177
193
|
* Case insensitive.</p>
|
|
@@ -186,6 +202,9 @@ export interface CreateAttendeeError {
|
|
|
186
202
|
*/
|
|
187
203
|
ErrorMessage?: string;
|
|
188
204
|
}
|
|
205
|
+
/**
|
|
206
|
+
* @public
|
|
207
|
+
*/
|
|
189
208
|
export interface BatchCreateAttendeeResponse {
|
|
190
209
|
/**
|
|
191
210
|
* <p>The attendee information, including attendees' IDs and join tokens.</p>
|
|
@@ -197,6 +216,7 @@ export interface BatchCreateAttendeeResponse {
|
|
|
197
216
|
Errors?: CreateAttendeeError[];
|
|
198
217
|
}
|
|
199
218
|
/**
|
|
219
|
+
* @public
|
|
200
220
|
* <p>The client is permanently forbidden from making the request.</p>
|
|
201
221
|
*/
|
|
202
222
|
export declare class ForbiddenException extends __BaseException {
|
|
@@ -214,6 +234,7 @@ export declare class ForbiddenException extends __BaseException {
|
|
|
214
234
|
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
215
235
|
}
|
|
216
236
|
/**
|
|
237
|
+
* @public
|
|
217
238
|
* <p>The request exceeds the resource limit.</p>
|
|
218
239
|
*/
|
|
219
240
|
export declare class LimitExceededException extends __BaseException {
|
|
@@ -231,6 +252,7 @@ export declare class LimitExceededException extends __BaseException {
|
|
|
231
252
|
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
232
253
|
}
|
|
233
254
|
/**
|
|
255
|
+
* @public
|
|
234
256
|
* <p>One or more of the resources in the request does not exist in the system.</p>
|
|
235
257
|
*/
|
|
236
258
|
export declare class NotFoundException extends __BaseException {
|
|
@@ -248,6 +270,7 @@ export declare class NotFoundException extends __BaseException {
|
|
|
248
270
|
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
249
271
|
}
|
|
250
272
|
/**
|
|
273
|
+
* @public
|
|
251
274
|
* <p>The service encountered an unexpected error.</p>
|
|
252
275
|
*/
|
|
253
276
|
export declare class ServiceFailureException extends __BaseException {
|
|
@@ -265,6 +288,7 @@ export declare class ServiceFailureException extends __BaseException {
|
|
|
265
288
|
constructor(opts: __ExceptionOptionType<ServiceFailureException, __BaseException>);
|
|
266
289
|
}
|
|
267
290
|
/**
|
|
291
|
+
* @public
|
|
268
292
|
* <p>The service is currently unavailable.</p>
|
|
269
293
|
*/
|
|
270
294
|
export declare class ServiceUnavailableException extends __BaseException {
|
|
@@ -286,6 +310,7 @@ export declare class ServiceUnavailableException extends __BaseException {
|
|
|
286
310
|
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
287
311
|
}
|
|
288
312
|
/**
|
|
313
|
+
* @public
|
|
289
314
|
* <p>The number of customer requests exceeds the request rate limit.</p>
|
|
290
315
|
*/
|
|
291
316
|
export declare class ThrottlingException extends __BaseException {
|
|
@@ -303,6 +328,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
303
328
|
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
304
329
|
}
|
|
305
330
|
/**
|
|
331
|
+
* @public
|
|
306
332
|
* <p>The user isn't authorized to request a resource.</p>
|
|
307
333
|
*/
|
|
308
334
|
export declare class UnauthorizedException extends __BaseException {
|
|
@@ -320,6 +346,7 @@ export declare class UnauthorizedException extends __BaseException {
|
|
|
320
346
|
constructor(opts: __ExceptionOptionType<UnauthorizedException, __BaseException>);
|
|
321
347
|
}
|
|
322
348
|
/**
|
|
349
|
+
* @public
|
|
323
350
|
* <p>The request was well-formed but was unable to be followed due to semantic errors.</p>
|
|
324
351
|
*/
|
|
325
352
|
export declare class UnprocessableEntityException extends __BaseException {
|
|
@@ -336,6 +363,9 @@ export declare class UnprocessableEntityException extends __BaseException {
|
|
|
336
363
|
*/
|
|
337
364
|
constructor(opts: __ExceptionOptionType<UnprocessableEntityException, __BaseException>);
|
|
338
365
|
}
|
|
366
|
+
/**
|
|
367
|
+
* @public
|
|
368
|
+
*/
|
|
339
369
|
export interface BatchUpdateAttendeeCapabilitiesExceptRequest {
|
|
340
370
|
/**
|
|
341
371
|
* <p>The ID of the meeting associated with the update request.</p>
|
|
@@ -351,6 +381,7 @@ export interface BatchUpdateAttendeeCapabilitiesExceptRequest {
|
|
|
351
381
|
Capabilities: AttendeeCapabilities | undefined;
|
|
352
382
|
}
|
|
353
383
|
/**
|
|
384
|
+
* @public
|
|
354
385
|
* <p>Multiple instances of the same request have been made simultaneously.</p>
|
|
355
386
|
*/
|
|
356
387
|
export declare class ConflictException extends __BaseException {
|
|
@@ -367,6 +398,9 @@ export declare class ConflictException extends __BaseException {
|
|
|
367
398
|
*/
|
|
368
399
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
369
400
|
}
|
|
401
|
+
/**
|
|
402
|
+
* @public
|
|
403
|
+
*/
|
|
370
404
|
export interface CreateAttendeeRequest {
|
|
371
405
|
/**
|
|
372
406
|
* <p>The unique ID of the meeting.</p>
|
|
@@ -374,7 +408,7 @@ export interface CreateAttendeeRequest {
|
|
|
374
408
|
MeetingId: string | undefined;
|
|
375
409
|
/**
|
|
376
410
|
* <p>The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application.</p>
|
|
377
|
-
* <p>Pattern: <code>[-_&@+=,(){}\[\]\/«».:|'"#a-zA-Z0-9À-ÿ\s]*</code>
|
|
411
|
+
* <p>Pattern: <code>[-_&@+=,()\{\}\[\]\/«».:|'"#a-zA-Z0-9À-ÿ\s]*</code>
|
|
378
412
|
* </p>
|
|
379
413
|
* <p>Values that begin with <code>aws:</code> are reserved. You can't configure a value that
|
|
380
414
|
* uses this prefix.</p>
|
|
@@ -406,6 +440,9 @@ export interface CreateAttendeeRequest {
|
|
|
406
440
|
*/
|
|
407
441
|
Capabilities?: AttendeeCapabilities;
|
|
408
442
|
}
|
|
443
|
+
/**
|
|
444
|
+
* @public
|
|
445
|
+
*/
|
|
409
446
|
export interface CreateAttendeeResponse {
|
|
410
447
|
/**
|
|
411
448
|
* <p>The attendee information, including attendee ID and join token.</p>
|
|
@@ -413,6 +450,7 @@ export interface CreateAttendeeResponse {
|
|
|
413
450
|
Attendee?: Attendee;
|
|
414
451
|
}
|
|
415
452
|
/**
|
|
453
|
+
* @public
|
|
416
454
|
* <p>The configuration settings of the features available to a meeting.</p>
|
|
417
455
|
*/
|
|
418
456
|
export interface MeetingFeaturesConfiguration {
|
|
@@ -422,6 +460,7 @@ export interface MeetingFeaturesConfiguration {
|
|
|
422
460
|
Audio?: AudioFeatures;
|
|
423
461
|
}
|
|
424
462
|
/**
|
|
463
|
+
* @public
|
|
425
464
|
* <p>The configuration for resource targets to receive notifications when meeting and attendee events occur.</p>
|
|
426
465
|
*/
|
|
427
466
|
export interface NotificationsConfiguration {
|
|
@@ -439,6 +478,7 @@ export interface NotificationsConfiguration {
|
|
|
439
478
|
SqsQueueArn?: string;
|
|
440
479
|
}
|
|
441
480
|
/**
|
|
481
|
+
* @public
|
|
442
482
|
* <p>A key-value pair that you define.</p>
|
|
443
483
|
*/
|
|
444
484
|
export interface Tag {
|
|
@@ -451,6 +491,9 @@ export interface Tag {
|
|
|
451
491
|
*/
|
|
452
492
|
Value: string | undefined;
|
|
453
493
|
}
|
|
494
|
+
/**
|
|
495
|
+
* @public
|
|
496
|
+
*/
|
|
454
497
|
export interface CreateMeetingRequest {
|
|
455
498
|
/**
|
|
456
499
|
* <p>The unique identifier for the client request. Use a different token for different meetings.</p>
|
|
@@ -488,7 +531,7 @@ export interface CreateMeetingRequest {
|
|
|
488
531
|
MeetingHostId?: string;
|
|
489
532
|
/**
|
|
490
533
|
* <p>The external meeting ID.</p>
|
|
491
|
-
* <p>Pattern: <code>[-_&@+=,(){}\[\]\/«».:|'"#a-zA-Z0-9À-ÿ\s]*</code>
|
|
534
|
+
* <p>Pattern: <code>[-_&@+=,()\{\}\[\]\/«».:|'"#a-zA-Z0-9À-ÿ\s]*</code>
|
|
492
535
|
* </p>
|
|
493
536
|
* <p>Values that begin with <code>aws:</code> are reserved. You can't configure a value that uses this prefix.
|
|
494
537
|
* Case insensitive.</p>
|
|
@@ -553,6 +596,7 @@ export interface CreateMeetingRequest {
|
|
|
553
596
|
Tags?: Tag[];
|
|
554
597
|
}
|
|
555
598
|
/**
|
|
599
|
+
* @public
|
|
556
600
|
* <p>A set of endpoints used by clients to connect to the media service group for an Amazon Chime SDK meeting.</p>
|
|
557
601
|
*/
|
|
558
602
|
export interface MediaPlacement {
|
|
@@ -590,6 +634,7 @@ export interface MediaPlacement {
|
|
|
590
634
|
EventIngestionUrl?: string;
|
|
591
635
|
}
|
|
592
636
|
/**
|
|
637
|
+
* @public
|
|
593
638
|
* <p>A meeting created using the Amazon Chime SDK.</p>
|
|
594
639
|
*/
|
|
595
640
|
export interface Meeting {
|
|
@@ -603,7 +648,7 @@ export interface Meeting {
|
|
|
603
648
|
MeetingHostId?: string;
|
|
604
649
|
/**
|
|
605
650
|
* <p>The external meeting ID.</p>
|
|
606
|
-
* <p>Pattern: <code>[-_&@+=,(){}\[\]\/«».:|'"#a-zA-Z0-9À-ÿ\s]*</code>
|
|
651
|
+
* <p>Pattern: <code>[-_&@+=,()\{\}\[\]\/«».:|'"#a-zA-Z0-9À-ÿ\s]*</code>
|
|
607
652
|
* </p>
|
|
608
653
|
* <p>Values that begin with <code>aws:</code> are reserved. You can't configure a value that uses this prefix.
|
|
609
654
|
* Case insensitive.</p>
|
|
@@ -640,6 +685,9 @@ export interface Meeting {
|
|
|
640
685
|
*/
|
|
641
686
|
MeetingArn?: string;
|
|
642
687
|
}
|
|
688
|
+
/**
|
|
689
|
+
* @public
|
|
690
|
+
*/
|
|
643
691
|
export interface CreateMeetingResponse {
|
|
644
692
|
/**
|
|
645
693
|
* <p>The meeting information, including the meeting ID and
|
|
@@ -647,6 +695,9 @@ export interface CreateMeetingResponse {
|
|
|
647
695
|
*/
|
|
648
696
|
Meeting?: Meeting;
|
|
649
697
|
}
|
|
698
|
+
/**
|
|
699
|
+
* @public
|
|
700
|
+
*/
|
|
650
701
|
export interface CreateMeetingWithAttendeesRequest {
|
|
651
702
|
/**
|
|
652
703
|
* <p>The unique identifier for the client request. Use a different token for different meetings.</p>
|
|
@@ -684,7 +735,7 @@ export interface CreateMeetingWithAttendeesRequest {
|
|
|
684
735
|
MeetingHostId?: string;
|
|
685
736
|
/**
|
|
686
737
|
* <p>The external meeting ID.</p>
|
|
687
|
-
* <p>Pattern: <code>[-_&@+=,(){}\[\]\/«».:|'"#a-zA-Z0-9À-ÿ\s]*</code>
|
|
738
|
+
* <p>Pattern: <code>[-_&@+=,()\{\}\[\]\/«».:|'"#a-zA-Z0-9À-ÿ\s]*</code>
|
|
688
739
|
* </p>
|
|
689
740
|
* <p>Values that begin with <code>aws:</code> are reserved. You can't configure a value that uses this prefix.
|
|
690
741
|
* Case insensitive.</p>
|
|
@@ -715,6 +766,9 @@ export interface CreateMeetingWithAttendeesRequest {
|
|
|
715
766
|
*/
|
|
716
767
|
Tags?: Tag[];
|
|
717
768
|
}
|
|
769
|
+
/**
|
|
770
|
+
* @public
|
|
771
|
+
*/
|
|
718
772
|
export interface CreateMeetingWithAttendeesResponse {
|
|
719
773
|
/**
|
|
720
774
|
* <p>The meeting information, including the meeting ID and
|
|
@@ -730,6 +784,9 @@ export interface CreateMeetingWithAttendeesResponse {
|
|
|
730
784
|
*/
|
|
731
785
|
Errors?: CreateAttendeeError[];
|
|
732
786
|
}
|
|
787
|
+
/**
|
|
788
|
+
* @public
|
|
789
|
+
*/
|
|
733
790
|
export interface DeleteAttendeeRequest {
|
|
734
791
|
/**
|
|
735
792
|
* <p>The Amazon Chime SDK meeting ID.</p>
|
|
@@ -740,12 +797,18 @@ export interface DeleteAttendeeRequest {
|
|
|
740
797
|
*/
|
|
741
798
|
AttendeeId: string | undefined;
|
|
742
799
|
}
|
|
800
|
+
/**
|
|
801
|
+
* @public
|
|
802
|
+
*/
|
|
743
803
|
export interface DeleteMeetingRequest {
|
|
744
804
|
/**
|
|
745
805
|
* <p>The Amazon Chime SDK meeting ID.</p>
|
|
746
806
|
*/
|
|
747
807
|
MeetingId: string | undefined;
|
|
748
808
|
}
|
|
809
|
+
/**
|
|
810
|
+
* @public
|
|
811
|
+
*/
|
|
749
812
|
export interface GetAttendeeRequest {
|
|
750
813
|
/**
|
|
751
814
|
* <p>The Amazon Chime SDK meeting ID.</p>
|
|
@@ -756,24 +819,36 @@ export interface GetAttendeeRequest {
|
|
|
756
819
|
*/
|
|
757
820
|
AttendeeId: string | undefined;
|
|
758
821
|
}
|
|
822
|
+
/**
|
|
823
|
+
* @public
|
|
824
|
+
*/
|
|
759
825
|
export interface GetAttendeeResponse {
|
|
760
826
|
/**
|
|
761
827
|
* <p>The Amazon Chime SDK attendee information.</p>
|
|
762
828
|
*/
|
|
763
829
|
Attendee?: Attendee;
|
|
764
830
|
}
|
|
831
|
+
/**
|
|
832
|
+
* @public
|
|
833
|
+
*/
|
|
765
834
|
export interface GetMeetingRequest {
|
|
766
835
|
/**
|
|
767
836
|
* <p>The Amazon Chime SDK meeting ID.</p>
|
|
768
837
|
*/
|
|
769
838
|
MeetingId: string | undefined;
|
|
770
839
|
}
|
|
840
|
+
/**
|
|
841
|
+
* @public
|
|
842
|
+
*/
|
|
771
843
|
export interface GetMeetingResponse {
|
|
772
844
|
/**
|
|
773
845
|
* <p>The Amazon Chime SDK meeting information.</p>
|
|
774
846
|
*/
|
|
775
847
|
Meeting?: Meeting;
|
|
776
848
|
}
|
|
849
|
+
/**
|
|
850
|
+
* @public
|
|
851
|
+
*/
|
|
777
852
|
export interface ListAttendeesRequest {
|
|
778
853
|
/**
|
|
779
854
|
* <p>The Amazon Chime SDK meeting ID.</p>
|
|
@@ -788,6 +863,9 @@ export interface ListAttendeesRequest {
|
|
|
788
863
|
*/
|
|
789
864
|
MaxResults?: number;
|
|
790
865
|
}
|
|
866
|
+
/**
|
|
867
|
+
* @public
|
|
868
|
+
*/
|
|
791
869
|
export interface ListAttendeesResponse {
|
|
792
870
|
/**
|
|
793
871
|
* <p>The Amazon Chime SDK attendee information.</p>
|
|
@@ -798,12 +876,18 @@ export interface ListAttendeesResponse {
|
|
|
798
876
|
*/
|
|
799
877
|
NextToken?: string;
|
|
800
878
|
}
|
|
879
|
+
/**
|
|
880
|
+
* @public
|
|
881
|
+
*/
|
|
801
882
|
export interface ListTagsForResourceRequest {
|
|
802
883
|
/**
|
|
803
884
|
* <p>The ARN of the resource.</p>
|
|
804
885
|
*/
|
|
805
886
|
ResourceARN: string | undefined;
|
|
806
887
|
}
|
|
888
|
+
/**
|
|
889
|
+
* @public
|
|
890
|
+
*/
|
|
807
891
|
export interface ListTagsForResourceResponse {
|
|
808
892
|
/**
|
|
809
893
|
* <p>The tags requested for the specified resource.</p>
|
|
@@ -811,6 +895,7 @@ export interface ListTagsForResourceResponse {
|
|
|
811
895
|
Tags?: Tag[];
|
|
812
896
|
}
|
|
813
897
|
/**
|
|
898
|
+
* @public
|
|
814
899
|
* <p>The resource that you want to tag couldn't be found.</p>
|
|
815
900
|
*/
|
|
816
901
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -831,12 +916,21 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
831
916
|
*/
|
|
832
917
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
833
918
|
}
|
|
919
|
+
/**
|
|
920
|
+
* @public
|
|
921
|
+
*/
|
|
834
922
|
export declare enum TranscribeMedicalContentIdentificationType {
|
|
835
923
|
PHI = "PHI"
|
|
836
924
|
}
|
|
925
|
+
/**
|
|
926
|
+
* @public
|
|
927
|
+
*/
|
|
837
928
|
export declare enum TranscribeMedicalLanguageCode {
|
|
838
929
|
EN_US = "en-US"
|
|
839
930
|
}
|
|
931
|
+
/**
|
|
932
|
+
* @public
|
|
933
|
+
*/
|
|
840
934
|
export declare enum TranscribeMedicalRegion {
|
|
841
935
|
AP_SOUTHEAST_2 = "ap-southeast-2",
|
|
842
936
|
AUTO = "auto",
|
|
@@ -846,6 +940,9 @@ export declare enum TranscribeMedicalRegion {
|
|
|
846
940
|
US_EAST_2 = "us-east-2",
|
|
847
941
|
US_WEST_2 = "us-west-2"
|
|
848
942
|
}
|
|
943
|
+
/**
|
|
944
|
+
* @public
|
|
945
|
+
*/
|
|
849
946
|
export declare enum TranscribeMedicalSpecialty {
|
|
850
947
|
CARDIOLOGY = "CARDIOLOGY",
|
|
851
948
|
NEUROLOGY = "NEUROLOGY",
|
|
@@ -854,11 +951,15 @@ export declare enum TranscribeMedicalSpecialty {
|
|
|
854
951
|
RADIOLOGY = "RADIOLOGY",
|
|
855
952
|
UROLOGY = "UROLOGY"
|
|
856
953
|
}
|
|
954
|
+
/**
|
|
955
|
+
* @public
|
|
956
|
+
*/
|
|
857
957
|
export declare enum TranscribeMedicalType {
|
|
858
958
|
CONVERSATION = "CONVERSATION",
|
|
859
959
|
DICTATION = "DICTATION"
|
|
860
960
|
}
|
|
861
961
|
/**
|
|
962
|
+
* @public
|
|
862
963
|
* <p>Settings specific to the Amazon Transcribe Medical engine.</p>
|
|
863
964
|
*/
|
|
864
965
|
export interface EngineTranscribeMedicalSettings {
|
|
@@ -887,12 +988,21 @@ export interface EngineTranscribeMedicalSettings {
|
|
|
887
988
|
*/
|
|
888
989
|
ContentIdentificationType?: TranscribeMedicalContentIdentificationType | string;
|
|
889
990
|
}
|
|
991
|
+
/**
|
|
992
|
+
* @public
|
|
993
|
+
*/
|
|
890
994
|
export declare enum TranscribeContentIdentificationType {
|
|
891
995
|
PII = "PII"
|
|
892
996
|
}
|
|
997
|
+
/**
|
|
998
|
+
* @public
|
|
999
|
+
*/
|
|
893
1000
|
export declare enum TranscribeContentRedactionType {
|
|
894
1001
|
PII = "PII"
|
|
895
1002
|
}
|
|
1003
|
+
/**
|
|
1004
|
+
* @public
|
|
1005
|
+
*/
|
|
896
1006
|
export declare enum TranscribeLanguageCode {
|
|
897
1007
|
DE_DE = "de-DE",
|
|
898
1008
|
EN_AU = "en-AU",
|
|
@@ -907,11 +1017,17 @@ export declare enum TranscribeLanguageCode {
|
|
|
907
1017
|
PT_BR = "pt-BR",
|
|
908
1018
|
ZH_CN = "zh-CN"
|
|
909
1019
|
}
|
|
1020
|
+
/**
|
|
1021
|
+
* @public
|
|
1022
|
+
*/
|
|
910
1023
|
export declare enum TranscribePartialResultsStability {
|
|
911
1024
|
HIGH = "high",
|
|
912
1025
|
LOW = "low",
|
|
913
1026
|
MEDIUM = "medium"
|
|
914
1027
|
}
|
|
1028
|
+
/**
|
|
1029
|
+
* @public
|
|
1030
|
+
*/
|
|
915
1031
|
export declare enum TranscribeRegion {
|
|
916
1032
|
AP_NORTHEAST_1 = "ap-northeast-1",
|
|
917
1033
|
AP_NORTHEAST_2 = "ap-northeast-2",
|
|
@@ -927,12 +1043,16 @@ export declare enum TranscribeRegion {
|
|
|
927
1043
|
US_GOV_WEST_1 = "us-gov-west-1",
|
|
928
1044
|
US_WEST_2 = "us-west-2"
|
|
929
1045
|
}
|
|
1046
|
+
/**
|
|
1047
|
+
* @public
|
|
1048
|
+
*/
|
|
930
1049
|
export declare enum TranscribeVocabularyFilterMethod {
|
|
931
1050
|
MASK = "mask",
|
|
932
1051
|
REMOVE = "remove",
|
|
933
1052
|
TAG = "tag"
|
|
934
1053
|
}
|
|
935
1054
|
/**
|
|
1055
|
+
* @public
|
|
936
1056
|
* <p>Settings specific to the Amazon Transcribe engine.</p>
|
|
937
1057
|
*/
|
|
938
1058
|
export interface EngineTranscribeSettings {
|
|
@@ -1001,6 +1121,7 @@ export interface EngineTranscribeSettings {
|
|
|
1001
1121
|
PreferredLanguage?: TranscribeLanguageCode | string;
|
|
1002
1122
|
}
|
|
1003
1123
|
/**
|
|
1124
|
+
* @public
|
|
1004
1125
|
* <p>The configuration for the current transcription operation. Must contain <code>EngineTranscribeSettings</code> or <code>EngineTranscribeMedicalSettings</code>.</p>
|
|
1005
1126
|
*/
|
|
1006
1127
|
export interface TranscriptionConfiguration {
|
|
@@ -1013,6 +1134,9 @@ export interface TranscriptionConfiguration {
|
|
|
1013
1134
|
*/
|
|
1014
1135
|
EngineTranscribeMedicalSettings?: EngineTranscribeMedicalSettings;
|
|
1015
1136
|
}
|
|
1137
|
+
/**
|
|
1138
|
+
* @public
|
|
1139
|
+
*/
|
|
1016
1140
|
export interface StartMeetingTranscriptionRequest {
|
|
1017
1141
|
/**
|
|
1018
1142
|
* <p>The unique ID of the meeting being transcribed.</p>
|
|
@@ -1024,12 +1148,18 @@ export interface StartMeetingTranscriptionRequest {
|
|
|
1024
1148
|
*/
|
|
1025
1149
|
TranscriptionConfiguration: TranscriptionConfiguration | undefined;
|
|
1026
1150
|
}
|
|
1151
|
+
/**
|
|
1152
|
+
* @public
|
|
1153
|
+
*/
|
|
1027
1154
|
export interface StopMeetingTranscriptionRequest {
|
|
1028
1155
|
/**
|
|
1029
1156
|
* <p>The unique ID of the meeting for which you stop transcription.</p>
|
|
1030
1157
|
*/
|
|
1031
1158
|
MeetingId: string | undefined;
|
|
1032
1159
|
}
|
|
1160
|
+
/**
|
|
1161
|
+
* @public
|
|
1162
|
+
*/
|
|
1033
1163
|
export interface TagResourceRequest {
|
|
1034
1164
|
/**
|
|
1035
1165
|
* <p>The ARN of the resource.</p>
|
|
@@ -1040,9 +1170,13 @@ export interface TagResourceRequest {
|
|
|
1040
1170
|
*/
|
|
1041
1171
|
Tags: Tag[] | undefined;
|
|
1042
1172
|
}
|
|
1173
|
+
/**
|
|
1174
|
+
* @public
|
|
1175
|
+
*/
|
|
1043
1176
|
export interface TagResourceResponse {
|
|
1044
1177
|
}
|
|
1045
1178
|
/**
|
|
1179
|
+
* @public
|
|
1046
1180
|
* <p>Too many tags were added to the specified resource.</p>
|
|
1047
1181
|
*/
|
|
1048
1182
|
export declare class TooManyTagsException extends __BaseException {
|
|
@@ -1063,6 +1197,9 @@ export declare class TooManyTagsException extends __BaseException {
|
|
|
1063
1197
|
*/
|
|
1064
1198
|
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
1065
1199
|
}
|
|
1200
|
+
/**
|
|
1201
|
+
* @public
|
|
1202
|
+
*/
|
|
1066
1203
|
export interface UntagResourceRequest {
|
|
1067
1204
|
/**
|
|
1068
1205
|
* <p>The ARN of the resource that you're removing tags from.</p>
|
|
@@ -1073,8 +1210,14 @@ export interface UntagResourceRequest {
|
|
|
1073
1210
|
*/
|
|
1074
1211
|
TagKeys: string[] | undefined;
|
|
1075
1212
|
}
|
|
1213
|
+
/**
|
|
1214
|
+
* @public
|
|
1215
|
+
*/
|
|
1076
1216
|
export interface UntagResourceResponse {
|
|
1077
1217
|
}
|
|
1218
|
+
/**
|
|
1219
|
+
* @public
|
|
1220
|
+
*/
|
|
1078
1221
|
export interface UpdateAttendeeCapabilitiesRequest {
|
|
1079
1222
|
/**
|
|
1080
1223
|
* <p>The ID of the meeting associated with the update request.</p>
|
|
@@ -1089,6 +1232,9 @@ export interface UpdateAttendeeCapabilitiesRequest {
|
|
|
1089
1232
|
*/
|
|
1090
1233
|
Capabilities: AttendeeCapabilities | undefined;
|
|
1091
1234
|
}
|
|
1235
|
+
/**
|
|
1236
|
+
* @public
|
|
1237
|
+
*/
|
|
1092
1238
|
export interface UpdateAttendeeCapabilitiesResponse {
|
|
1093
1239
|
/**
|
|
1094
1240
|
* <p>The updated attendee data.</p>
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
2
|
import { ChimeSDKMeetingsClient } from "../ChimeSDKMeetingsClient";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
3
6
|
export interface ChimeSDKMeetingsPaginationConfiguration extends PaginationConfiguration {
|
|
4
7
|
client: ChimeSDKMeetingsClient;
|
|
5
8
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListAttendeesCommandInput, ListAttendeesCommandOutput } from "../commands/ListAttendeesCommand";
|
|
3
3
|
import { ChimeSDKMeetingsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListAttendees(config: ChimeSDKMeetingsPaginationConfiguration, input: ListAttendeesCommandInput, ...additionalArguments: any): Paginator<ListAttendeesCommandOutput>;
|