@aws-sdk/client-chime-sdk-meetings 3.987.0 → 3.988.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-cjs/index.js +35 -862
- package/dist-cjs/models/ChimeSDKMeetingsServiceException.js +12 -0
- package/dist-cjs/models/errors.js +238 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +544 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +89 -83
- package/dist-types/schemas/schemas_0.d.ts +20 -13
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +15 -13
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var ChimeSDKMeetingsServiceException = require('./models/ChimeSDKMeetingsServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,766 +113,6 @@ class ChimeSDKMeetingsClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class ChimeSDKMeetingsServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, ChimeSDKMeetingsServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class BadRequestException extends ChimeSDKMeetingsServiceException {
|
|
121
|
-
name = "BadRequestException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
Code;
|
|
124
|
-
Message;
|
|
125
|
-
RequestId;
|
|
126
|
-
constructor(opts) {
|
|
127
|
-
super({
|
|
128
|
-
name: "BadRequestException",
|
|
129
|
-
$fault: "client",
|
|
130
|
-
...opts,
|
|
131
|
-
});
|
|
132
|
-
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
133
|
-
this.Code = opts.Code;
|
|
134
|
-
this.Message = opts.Message;
|
|
135
|
-
this.RequestId = opts.RequestId;
|
|
136
|
-
}
|
|
137
|
-
}
|
|
138
|
-
class ForbiddenException extends ChimeSDKMeetingsServiceException {
|
|
139
|
-
name = "ForbiddenException";
|
|
140
|
-
$fault = "client";
|
|
141
|
-
Code;
|
|
142
|
-
Message;
|
|
143
|
-
RequestId;
|
|
144
|
-
constructor(opts) {
|
|
145
|
-
super({
|
|
146
|
-
name: "ForbiddenException",
|
|
147
|
-
$fault: "client",
|
|
148
|
-
...opts,
|
|
149
|
-
});
|
|
150
|
-
Object.setPrototypeOf(this, ForbiddenException.prototype);
|
|
151
|
-
this.Code = opts.Code;
|
|
152
|
-
this.Message = opts.Message;
|
|
153
|
-
this.RequestId = opts.RequestId;
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
class LimitExceededException extends ChimeSDKMeetingsServiceException {
|
|
157
|
-
name = "LimitExceededException";
|
|
158
|
-
$fault = "client";
|
|
159
|
-
Code;
|
|
160
|
-
Message;
|
|
161
|
-
RequestId;
|
|
162
|
-
constructor(opts) {
|
|
163
|
-
super({
|
|
164
|
-
name: "LimitExceededException",
|
|
165
|
-
$fault: "client",
|
|
166
|
-
...opts,
|
|
167
|
-
});
|
|
168
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
169
|
-
this.Code = opts.Code;
|
|
170
|
-
this.Message = opts.Message;
|
|
171
|
-
this.RequestId = opts.RequestId;
|
|
172
|
-
}
|
|
173
|
-
}
|
|
174
|
-
class NotFoundException extends ChimeSDKMeetingsServiceException {
|
|
175
|
-
name = "NotFoundException";
|
|
176
|
-
$fault = "client";
|
|
177
|
-
Code;
|
|
178
|
-
Message;
|
|
179
|
-
RequestId;
|
|
180
|
-
constructor(opts) {
|
|
181
|
-
super({
|
|
182
|
-
name: "NotFoundException",
|
|
183
|
-
$fault: "client",
|
|
184
|
-
...opts,
|
|
185
|
-
});
|
|
186
|
-
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
187
|
-
this.Code = opts.Code;
|
|
188
|
-
this.Message = opts.Message;
|
|
189
|
-
this.RequestId = opts.RequestId;
|
|
190
|
-
}
|
|
191
|
-
}
|
|
192
|
-
class ServiceFailureException extends ChimeSDKMeetingsServiceException {
|
|
193
|
-
name = "ServiceFailureException";
|
|
194
|
-
$fault = "server";
|
|
195
|
-
Code;
|
|
196
|
-
Message;
|
|
197
|
-
RequestId;
|
|
198
|
-
constructor(opts) {
|
|
199
|
-
super({
|
|
200
|
-
name: "ServiceFailureException",
|
|
201
|
-
$fault: "server",
|
|
202
|
-
...opts,
|
|
203
|
-
});
|
|
204
|
-
Object.setPrototypeOf(this, ServiceFailureException.prototype);
|
|
205
|
-
this.Code = opts.Code;
|
|
206
|
-
this.Message = opts.Message;
|
|
207
|
-
this.RequestId = opts.RequestId;
|
|
208
|
-
}
|
|
209
|
-
}
|
|
210
|
-
class ServiceUnavailableException extends ChimeSDKMeetingsServiceException {
|
|
211
|
-
name = "ServiceUnavailableException";
|
|
212
|
-
$fault = "server";
|
|
213
|
-
Code;
|
|
214
|
-
Message;
|
|
215
|
-
RequestId;
|
|
216
|
-
RetryAfterSeconds;
|
|
217
|
-
constructor(opts) {
|
|
218
|
-
super({
|
|
219
|
-
name: "ServiceUnavailableException",
|
|
220
|
-
$fault: "server",
|
|
221
|
-
...opts,
|
|
222
|
-
});
|
|
223
|
-
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
224
|
-
this.Code = opts.Code;
|
|
225
|
-
this.Message = opts.Message;
|
|
226
|
-
this.RequestId = opts.RequestId;
|
|
227
|
-
this.RetryAfterSeconds = opts.RetryAfterSeconds;
|
|
228
|
-
}
|
|
229
|
-
}
|
|
230
|
-
class ThrottlingException extends ChimeSDKMeetingsServiceException {
|
|
231
|
-
name = "ThrottlingException";
|
|
232
|
-
$fault = "client";
|
|
233
|
-
Code;
|
|
234
|
-
Message;
|
|
235
|
-
RequestId;
|
|
236
|
-
constructor(opts) {
|
|
237
|
-
super({
|
|
238
|
-
name: "ThrottlingException",
|
|
239
|
-
$fault: "client",
|
|
240
|
-
...opts,
|
|
241
|
-
});
|
|
242
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
243
|
-
this.Code = opts.Code;
|
|
244
|
-
this.Message = opts.Message;
|
|
245
|
-
this.RequestId = opts.RequestId;
|
|
246
|
-
}
|
|
247
|
-
}
|
|
248
|
-
class UnauthorizedException extends ChimeSDKMeetingsServiceException {
|
|
249
|
-
name = "UnauthorizedException";
|
|
250
|
-
$fault = "client";
|
|
251
|
-
Code;
|
|
252
|
-
Message;
|
|
253
|
-
RequestId;
|
|
254
|
-
constructor(opts) {
|
|
255
|
-
super({
|
|
256
|
-
name: "UnauthorizedException",
|
|
257
|
-
$fault: "client",
|
|
258
|
-
...opts,
|
|
259
|
-
});
|
|
260
|
-
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
261
|
-
this.Code = opts.Code;
|
|
262
|
-
this.Message = opts.Message;
|
|
263
|
-
this.RequestId = opts.RequestId;
|
|
264
|
-
}
|
|
265
|
-
}
|
|
266
|
-
class UnprocessableEntityException extends ChimeSDKMeetingsServiceException {
|
|
267
|
-
name = "UnprocessableEntityException";
|
|
268
|
-
$fault = "client";
|
|
269
|
-
Code;
|
|
270
|
-
Message;
|
|
271
|
-
RequestId;
|
|
272
|
-
constructor(opts) {
|
|
273
|
-
super({
|
|
274
|
-
name: "UnprocessableEntityException",
|
|
275
|
-
$fault: "client",
|
|
276
|
-
...opts,
|
|
277
|
-
});
|
|
278
|
-
Object.setPrototypeOf(this, UnprocessableEntityException.prototype);
|
|
279
|
-
this.Code = opts.Code;
|
|
280
|
-
this.Message = opts.Message;
|
|
281
|
-
this.RequestId = opts.RequestId;
|
|
282
|
-
}
|
|
283
|
-
}
|
|
284
|
-
class ConflictException extends ChimeSDKMeetingsServiceException {
|
|
285
|
-
name = "ConflictException";
|
|
286
|
-
$fault = "client";
|
|
287
|
-
Code;
|
|
288
|
-
Message;
|
|
289
|
-
RequestId;
|
|
290
|
-
constructor(opts) {
|
|
291
|
-
super({
|
|
292
|
-
name: "ConflictException",
|
|
293
|
-
$fault: "client",
|
|
294
|
-
...opts,
|
|
295
|
-
});
|
|
296
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
297
|
-
this.Code = opts.Code;
|
|
298
|
-
this.Message = opts.Message;
|
|
299
|
-
this.RequestId = opts.RequestId;
|
|
300
|
-
}
|
|
301
|
-
}
|
|
302
|
-
class ResourceNotFoundException extends ChimeSDKMeetingsServiceException {
|
|
303
|
-
name = "ResourceNotFoundException";
|
|
304
|
-
$fault = "client";
|
|
305
|
-
Code;
|
|
306
|
-
Message;
|
|
307
|
-
RequestId;
|
|
308
|
-
ResourceName;
|
|
309
|
-
constructor(opts) {
|
|
310
|
-
super({
|
|
311
|
-
name: "ResourceNotFoundException",
|
|
312
|
-
$fault: "client",
|
|
313
|
-
...opts,
|
|
314
|
-
});
|
|
315
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
316
|
-
this.Code = opts.Code;
|
|
317
|
-
this.Message = opts.Message;
|
|
318
|
-
this.RequestId = opts.RequestId;
|
|
319
|
-
this.ResourceName = opts.ResourceName;
|
|
320
|
-
}
|
|
321
|
-
}
|
|
322
|
-
class TooManyTagsException extends ChimeSDKMeetingsServiceException {
|
|
323
|
-
name = "TooManyTagsException";
|
|
324
|
-
$fault = "client";
|
|
325
|
-
Code;
|
|
326
|
-
Message;
|
|
327
|
-
RequestId;
|
|
328
|
-
ResourceName;
|
|
329
|
-
constructor(opts) {
|
|
330
|
-
super({
|
|
331
|
-
name: "TooManyTagsException",
|
|
332
|
-
$fault: "client",
|
|
333
|
-
...opts,
|
|
334
|
-
});
|
|
335
|
-
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
336
|
-
this.Code = opts.Code;
|
|
337
|
-
this.Message = opts.Message;
|
|
338
|
-
this.RequestId = opts.RequestId;
|
|
339
|
-
this.ResourceName = opts.ResourceName;
|
|
340
|
-
}
|
|
341
|
-
}
|
|
342
|
-
|
|
343
|
-
const _A = "Arn";
|
|
344
|
-
const _AC = "AttendeeCapabilities";
|
|
345
|
-
const _AF = "AttendeeFeatures";
|
|
346
|
-
const _AFU = "AudioFallbackUrl";
|
|
347
|
-
const _AFu = "AudioFeatures";
|
|
348
|
-
const _AHU = "AudioHostUrl";
|
|
349
|
-
const _AI = "AttendeeId";
|
|
350
|
-
const _AII = "AttendeeIdItem";
|
|
351
|
-
const _AIL = "AttendeeIdsList";
|
|
352
|
-
const _AL = "AttendeeList";
|
|
353
|
-
const _At = "Attendee";
|
|
354
|
-
const _Att = "Attendees";
|
|
355
|
-
const _Au = "Audio";
|
|
356
|
-
const _BCA = "BatchCreateAttendee";
|
|
357
|
-
const _BCAEL = "BatchCreateAttendeeErrorList";
|
|
358
|
-
const _BCAR = "BatchCreateAttendeeRequest";
|
|
359
|
-
const _BCARa = "BatchCreateAttendeeResponse";
|
|
360
|
-
const _BRE = "BadRequestException";
|
|
361
|
-
const _BUACE = "BatchUpdateAttendeeCapabilitiesExcept";
|
|
362
|
-
const _BUACER = "BatchUpdateAttendeeCapabilitiesExceptRequest";
|
|
363
|
-
const _C = "Capabilities";
|
|
364
|
-
const _CA = "CreateAttendee";
|
|
365
|
-
const _CAE = "CreateAttendeeError";
|
|
366
|
-
const _CAR = "CreateAttendeeRequest";
|
|
367
|
-
const _CARI = "CreateAttendeeRequestItem";
|
|
368
|
-
const _CARIL = "CreateAttendeeRequestItemList";
|
|
369
|
-
const _CARr = "CreateAttendeeResponse";
|
|
370
|
-
const _CE = "ConflictException";
|
|
371
|
-
const _CF = "ContentFeatures";
|
|
372
|
-
const _CIT = "ContentIdentificationType";
|
|
373
|
-
const _CM = "CreateMeeting";
|
|
374
|
-
const _CMR = "CreateMeetingRequest";
|
|
375
|
-
const _CMRr = "CreateMeetingResponse";
|
|
376
|
-
const _CMWA = "CreateMeetingWithAttendees";
|
|
377
|
-
const _CMWAR = "CreateMeetingWithAttendeesRequest";
|
|
378
|
-
const _CMWARIL = "CreateMeetingWithAttendeesRequestItemList";
|
|
379
|
-
const _CMWARr = "CreateMeetingWithAttendeesResponse";
|
|
380
|
-
const _CRT = "ClientRequestToken";
|
|
381
|
-
const _CRTo = "ContentRedactionType";
|
|
382
|
-
const _Co = "Content";
|
|
383
|
-
const _Cod = "Code";
|
|
384
|
-
const _DA = "DeleteAttendee";
|
|
385
|
-
const _DAR = "DeleteAttendeeRequest";
|
|
386
|
-
const _DM = "DeleteMeeting";
|
|
387
|
-
const _DMR = "DeleteMeetingRequest";
|
|
388
|
-
const _E = "Errors";
|
|
389
|
-
const _EAI = "ExcludedAttendeeIds";
|
|
390
|
-
const _EC = "ErrorCode";
|
|
391
|
-
const _EIU = "EventIngestionUrl";
|
|
392
|
-
const _EM = "ErrorMessage";
|
|
393
|
-
const _EMI = "ExternalMeetingId";
|
|
394
|
-
const _EPRS = "EnablePartialResultsStabilization";
|
|
395
|
-
const _ER = "EchoReduction";
|
|
396
|
-
const _ETMS = "EngineTranscribeMedicalSettings";
|
|
397
|
-
const _ETS = "EngineTranscribeSettings";
|
|
398
|
-
const _EUI = "ExternalUserId";
|
|
399
|
-
const _FE = "ForbiddenException";
|
|
400
|
-
const _GA = "GetAttendee";
|
|
401
|
-
const _GAR = "GetAttendeeRequest";
|
|
402
|
-
const _GARe = "GetAttendeeResponse";
|
|
403
|
-
const _GM = "GetMeeting";
|
|
404
|
-
const _GMR = "GetMeetingRequest";
|
|
405
|
-
const _GMRe = "GetMeetingResponse";
|
|
406
|
-
const _IL = "IdentifyLanguage";
|
|
407
|
-
const _JT = "JoinToken";
|
|
408
|
-
const _JTS = "JoinTokenString";
|
|
409
|
-
const _K = "Key";
|
|
410
|
-
const _LA = "ListAttendees";
|
|
411
|
-
const _LAR = "ListAttendeesRequest";
|
|
412
|
-
const _LARi = "ListAttendeesResponse";
|
|
413
|
-
const _LC = "LanguageCode";
|
|
414
|
-
const _LEE = "LimitExceededException";
|
|
415
|
-
const _LFA = "LambdaFunctionArn";
|
|
416
|
-
const _LMN = "LanguageModelName";
|
|
417
|
-
const _LO = "LanguageOptions";
|
|
418
|
-
const _LTFR = "ListTagsForResource";
|
|
419
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
420
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
421
|
-
const _M = "Message";
|
|
422
|
-
const _MA = "MeetingArn";
|
|
423
|
-
const _MC = "MaxCount";
|
|
424
|
-
const _MF = "MeetingFeatures";
|
|
425
|
-
const _MFC = "MeetingFeaturesConfiguration";
|
|
426
|
-
const _MHI = "MeetingHostId";
|
|
427
|
-
const _MI = "MeetingId";
|
|
428
|
-
const _MP = "MediaPlacement";
|
|
429
|
-
const _MPNT = "MediaPlacementNetworkType";
|
|
430
|
-
const _MR = "MaxResolution";
|
|
431
|
-
const _MRa = "MaxResults";
|
|
432
|
-
const _MRe = "MediaRegion";
|
|
433
|
-
const _Me = "Meeting";
|
|
434
|
-
const _NC = "NotificationsConfiguration";
|
|
435
|
-
const _NFE = "NotFoundException";
|
|
436
|
-
const _NT = "NextToken";
|
|
437
|
-
const _PET = "PiiEntityTypes";
|
|
438
|
-
const _PL = "PreferredLanguage";
|
|
439
|
-
const _PMI = "PrimaryMeetingId";
|
|
440
|
-
const _PRS = "PartialResultsStability";
|
|
441
|
-
const _R = "Region";
|
|
442
|
-
const _RA = "Retry-After";
|
|
443
|
-
const _RARN = "ResourceARN";
|
|
444
|
-
const _RAS = "RetryAfterSeconds";
|
|
445
|
-
const _RI = "RequestId";
|
|
446
|
-
const _RN = "ResourceName";
|
|
447
|
-
const _RNFE = "ResourceNotFoundException";
|
|
448
|
-
const _S = "Specialty";
|
|
449
|
-
const _SDU = "ScreenDataUrl";
|
|
450
|
-
const _SFE = "ServiceFailureException";
|
|
451
|
-
const _SMT = "StartMeetingTranscription";
|
|
452
|
-
const _SMTR = "StartMeetingTranscriptionRequest";
|
|
453
|
-
const _SMTRt = "StopMeetingTranscriptionRequest";
|
|
454
|
-
const _SMTt = "StopMeetingTranscription";
|
|
455
|
-
const _SQA = "SqsQueueArn";
|
|
456
|
-
const _SSU = "ScreenSharingUrl";
|
|
457
|
-
const _STA = "SnsTopicArn";
|
|
458
|
-
const _SU = "SignalingUrl";
|
|
459
|
-
const _SUE = "ServiceUnavailableException";
|
|
460
|
-
const _SVU = "ScreenViewingUrl";
|
|
461
|
-
const _T = "Tags";
|
|
462
|
-
const _TC = "TranscriptionConfiguration";
|
|
463
|
-
const _TCU = "TurnControlUrl";
|
|
464
|
-
const _TE = "ThrottlingException";
|
|
465
|
-
const _TI = "TenantIds";
|
|
466
|
-
const _TK = "TagKeys";
|
|
467
|
-
const _TL = "TagList";
|
|
468
|
-
const _TMTE = "TooManyTagsException";
|
|
469
|
-
const _TR = "TagResource";
|
|
470
|
-
const _TRR = "TagResourceRequest";
|
|
471
|
-
const _TRRa = "TagResourceResponse";
|
|
472
|
-
const _Ta = "Tag";
|
|
473
|
-
const _Ty = "Type";
|
|
474
|
-
const _UAC = "UpdateAttendeeCapabilities";
|
|
475
|
-
const _UACR = "UpdateAttendeeCapabilitiesRequest";
|
|
476
|
-
const _UACRp = "UpdateAttendeeCapabilitiesResponse";
|
|
477
|
-
const _UE = "UnauthorizedException";
|
|
478
|
-
const _UEE = "UnprocessableEntityException";
|
|
479
|
-
const _UR = "UntagResource";
|
|
480
|
-
const _URR = "UntagResourceRequest";
|
|
481
|
-
const _URRn = "UntagResourceResponse";
|
|
482
|
-
const _V = "Video";
|
|
483
|
-
const _VF = "VideoFeatures";
|
|
484
|
-
const _VFM = "VocabularyFilterMethod";
|
|
485
|
-
const _VFN = "VocabularyFilterName";
|
|
486
|
-
const _VFNo = "VocabularyFilterNames";
|
|
487
|
-
const _VN = "VocabularyName";
|
|
488
|
-
const _VNo = "VocabularyNames";
|
|
489
|
-
const _Va = "Value";
|
|
490
|
-
const _a = "arn";
|
|
491
|
-
const _c = "client";
|
|
492
|
-
const _e = "error";
|
|
493
|
-
const _h = "http";
|
|
494
|
-
const _hE = "httpError";
|
|
495
|
-
const _hH = "httpHeader";
|
|
496
|
-
const _hQ = "httpQuery";
|
|
497
|
-
const _mr = "max-results";
|
|
498
|
-
const _nt = "next-token";
|
|
499
|
-
const _s = "server";
|
|
500
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.chimesdkmeetings";
|
|
501
|
-
const n0 = "com.amazonaws.chimesdkmeetings";
|
|
502
|
-
var Arn = [0, n0, _A, 8, 0];
|
|
503
|
-
var ClientRequestToken = [0, n0, _CRT, 8, 0];
|
|
504
|
-
var ExternalMeetingId = [0, n0, _EMI, 8, 0];
|
|
505
|
-
var ExternalUserId = [0, n0, _EUI, 8, 0];
|
|
506
|
-
var JoinTokenString = [0, n0, _JTS, 8, 0];
|
|
507
|
-
var Attendee$ = [3, n0, _At,
|
|
508
|
-
0,
|
|
509
|
-
[_EUI, _AI, _JT, _C],
|
|
510
|
-
[[() => ExternalUserId, 0], 0, [() => JoinTokenString, 0], () => AttendeeCapabilities$]
|
|
511
|
-
];
|
|
512
|
-
var AttendeeCapabilities$ = [3, n0, _AC,
|
|
513
|
-
0,
|
|
514
|
-
[_Au, _V, _Co],
|
|
515
|
-
[0, 0, 0], 3
|
|
516
|
-
];
|
|
517
|
-
var AttendeeFeatures$ = [3, n0, _AF,
|
|
518
|
-
0,
|
|
519
|
-
[_MC],
|
|
520
|
-
[1]
|
|
521
|
-
];
|
|
522
|
-
var AttendeeIdItem$ = [3, n0, _AII,
|
|
523
|
-
0,
|
|
524
|
-
[_AI],
|
|
525
|
-
[0], 1
|
|
526
|
-
];
|
|
527
|
-
var AudioFeatures$ = [3, n0, _AFu,
|
|
528
|
-
0,
|
|
529
|
-
[_ER],
|
|
530
|
-
[0]
|
|
531
|
-
];
|
|
532
|
-
var BadRequestException$ = [-3, n0, _BRE,
|
|
533
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
534
|
-
[_Cod, _M, _RI],
|
|
535
|
-
[0, 0, 0]
|
|
536
|
-
];
|
|
537
|
-
schema.TypeRegistry.for(n0).registerError(BadRequestException$, BadRequestException);
|
|
538
|
-
var BatchCreateAttendeeRequest$ = [3, n0, _BCAR,
|
|
539
|
-
0,
|
|
540
|
-
[_MI, _Att],
|
|
541
|
-
[[0, 1], [() => CreateAttendeeRequestItemList, 0]], 2
|
|
542
|
-
];
|
|
543
|
-
var BatchCreateAttendeeResponse$ = [3, n0, _BCARa,
|
|
544
|
-
0,
|
|
545
|
-
[_Att, _E],
|
|
546
|
-
[[() => AttendeeList, 0], [() => BatchCreateAttendeeErrorList, 0]]
|
|
547
|
-
];
|
|
548
|
-
var BatchUpdateAttendeeCapabilitiesExceptRequest$ = [3, n0, _BUACER,
|
|
549
|
-
0,
|
|
550
|
-
[_MI, _EAI, _C],
|
|
551
|
-
[[0, 1], () => AttendeeIdsList, () => AttendeeCapabilities$], 3
|
|
552
|
-
];
|
|
553
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
554
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
555
|
-
[_Cod, _M, _RI],
|
|
556
|
-
[0, 0, 0]
|
|
557
|
-
];
|
|
558
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
559
|
-
var ContentFeatures$ = [3, n0, _CF,
|
|
560
|
-
0,
|
|
561
|
-
[_MR],
|
|
562
|
-
[0]
|
|
563
|
-
];
|
|
564
|
-
var CreateAttendeeError$ = [3, n0, _CAE,
|
|
565
|
-
0,
|
|
566
|
-
[_EUI, _EC, _EM],
|
|
567
|
-
[[() => ExternalUserId, 0], 0, 0]
|
|
568
|
-
];
|
|
569
|
-
var CreateAttendeeRequest$ = [3, n0, _CAR,
|
|
570
|
-
0,
|
|
571
|
-
[_MI, _EUI, _C],
|
|
572
|
-
[[0, 1], [() => ExternalUserId, 0], () => AttendeeCapabilities$], 2
|
|
573
|
-
];
|
|
574
|
-
var CreateAttendeeRequestItem$ = [3, n0, _CARI,
|
|
575
|
-
0,
|
|
576
|
-
[_EUI, _C],
|
|
577
|
-
[[() => ExternalUserId, 0], () => AttendeeCapabilities$], 1
|
|
578
|
-
];
|
|
579
|
-
var CreateAttendeeResponse$ = [3, n0, _CARr,
|
|
580
|
-
0,
|
|
581
|
-
[_At],
|
|
582
|
-
[[() => Attendee$, 0]]
|
|
583
|
-
];
|
|
584
|
-
var CreateMeetingRequest$ = [3, n0, _CMR,
|
|
585
|
-
0,
|
|
586
|
-
[_MRe, _EMI, _CRT, _MHI, _NC, _MF, _PMI, _TI, _T, _MPNT],
|
|
587
|
-
[0, [() => ExternalMeetingId, 0], [() => ClientRequestToken, 4], [() => ExternalUserId, 0], [() => NotificationsConfiguration$, 0], () => MeetingFeaturesConfiguration$, 0, 64 | 0, () => TagList, 0], 2
|
|
588
|
-
];
|
|
589
|
-
var CreateMeetingResponse$ = [3, n0, _CMRr,
|
|
590
|
-
0,
|
|
591
|
-
[_Me],
|
|
592
|
-
[[() => Meeting$, 0]]
|
|
593
|
-
];
|
|
594
|
-
var CreateMeetingWithAttendeesRequest$ = [3, n0, _CMWAR,
|
|
595
|
-
0,
|
|
596
|
-
[_MRe, _EMI, _Att, _CRT, _MHI, _MF, _NC, _PMI, _TI, _T, _MPNT],
|
|
597
|
-
[0, [() => ExternalMeetingId, 0], [() => CreateMeetingWithAttendeesRequestItemList, 0], [() => ClientRequestToken, 4], [() => ExternalUserId, 0], () => MeetingFeaturesConfiguration$, [() => NotificationsConfiguration$, 0], 0, 64 | 0, () => TagList, 0], 3
|
|
598
|
-
];
|
|
599
|
-
var CreateMeetingWithAttendeesResponse$ = [3, n0, _CMWARr,
|
|
600
|
-
0,
|
|
601
|
-
[_Me, _Att, _E],
|
|
602
|
-
[[() => Meeting$, 0], [() => AttendeeList, 0], [() => BatchCreateAttendeeErrorList, 0]]
|
|
603
|
-
];
|
|
604
|
-
var DeleteAttendeeRequest$ = [3, n0, _DAR,
|
|
605
|
-
0,
|
|
606
|
-
[_MI, _AI],
|
|
607
|
-
[[0, 1], [0, 1]], 2
|
|
608
|
-
];
|
|
609
|
-
var DeleteMeetingRequest$ = [3, n0, _DMR,
|
|
610
|
-
0,
|
|
611
|
-
[_MI],
|
|
612
|
-
[[0, 1]], 1
|
|
613
|
-
];
|
|
614
|
-
var EngineTranscribeMedicalSettings$ = [3, n0, _ETMS,
|
|
615
|
-
0,
|
|
616
|
-
[_LC, _S, _Ty, _VN, _R, _CIT],
|
|
617
|
-
[0, 0, 0, 0, 0, 0], 3
|
|
618
|
-
];
|
|
619
|
-
var EngineTranscribeSettings$ = [3, n0, _ETS,
|
|
620
|
-
0,
|
|
621
|
-
[_LC, _VFM, _VFN, _VN, _R, _EPRS, _PRS, _CIT, _CRTo, _PET, _LMN, _IL, _LO, _PL, _VNo, _VFNo],
|
|
622
|
-
[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]
|
|
623
|
-
];
|
|
624
|
-
var ForbiddenException$ = [-3, n0, _FE,
|
|
625
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
626
|
-
[_Cod, _M, _RI],
|
|
627
|
-
[0, 0, 0]
|
|
628
|
-
];
|
|
629
|
-
schema.TypeRegistry.for(n0).registerError(ForbiddenException$, ForbiddenException);
|
|
630
|
-
var GetAttendeeRequest$ = [3, n0, _GAR,
|
|
631
|
-
0,
|
|
632
|
-
[_MI, _AI],
|
|
633
|
-
[[0, 1], [0, 1]], 2
|
|
634
|
-
];
|
|
635
|
-
var GetAttendeeResponse$ = [3, n0, _GARe,
|
|
636
|
-
0,
|
|
637
|
-
[_At],
|
|
638
|
-
[[() => Attendee$, 0]]
|
|
639
|
-
];
|
|
640
|
-
var GetMeetingRequest$ = [3, n0, _GMR,
|
|
641
|
-
0,
|
|
642
|
-
[_MI],
|
|
643
|
-
[[0, 1]], 1
|
|
644
|
-
];
|
|
645
|
-
var GetMeetingResponse$ = [3, n0, _GMRe,
|
|
646
|
-
0,
|
|
647
|
-
[_Me],
|
|
648
|
-
[[() => Meeting$, 0]]
|
|
649
|
-
];
|
|
650
|
-
var LimitExceededException$ = [-3, n0, _LEE,
|
|
651
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
652
|
-
[_Cod, _M, _RI],
|
|
653
|
-
[0, 0, 0]
|
|
654
|
-
];
|
|
655
|
-
schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
|
|
656
|
-
var ListAttendeesRequest$ = [3, n0, _LAR,
|
|
657
|
-
0,
|
|
658
|
-
[_MI, _NT, _MRa],
|
|
659
|
-
[[0, 1], [0, { [_hQ]: _nt }], [1, { [_hQ]: _mr }]], 1
|
|
660
|
-
];
|
|
661
|
-
var ListAttendeesResponse$ = [3, n0, _LARi,
|
|
662
|
-
0,
|
|
663
|
-
[_Att, _NT],
|
|
664
|
-
[[() => AttendeeList, 0], 0]
|
|
665
|
-
];
|
|
666
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
667
|
-
0,
|
|
668
|
-
[_RARN],
|
|
669
|
-
[[0, { [_hQ]: _a }]], 1
|
|
670
|
-
];
|
|
671
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
672
|
-
0,
|
|
673
|
-
[_T],
|
|
674
|
-
[() => TagList]
|
|
675
|
-
];
|
|
676
|
-
var MediaPlacement$ = [3, n0, _MP,
|
|
677
|
-
0,
|
|
678
|
-
[_AHU, _AFU, _SU, _TCU, _SDU, _SVU, _SSU, _EIU],
|
|
679
|
-
[0, 0, 0, 0, 0, 0, 0, 0]
|
|
680
|
-
];
|
|
681
|
-
var Meeting$ = [3, n0, _Me,
|
|
682
|
-
0,
|
|
683
|
-
[_MI, _MHI, _EMI, _MRe, _MP, _MF, _PMI, _TI, _MA],
|
|
684
|
-
[0, [() => ExternalUserId, 0], [() => ExternalMeetingId, 0], 0, () => MediaPlacement$, () => MeetingFeaturesConfiguration$, 0, 64 | 0, 0]
|
|
685
|
-
];
|
|
686
|
-
var MeetingFeaturesConfiguration$ = [3, n0, _MFC,
|
|
687
|
-
0,
|
|
688
|
-
[_Au, _V, _Co, _At],
|
|
689
|
-
[() => AudioFeatures$, () => VideoFeatures$, () => ContentFeatures$, () => AttendeeFeatures$]
|
|
690
|
-
];
|
|
691
|
-
var NotFoundException$ = [-3, n0, _NFE,
|
|
692
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
693
|
-
[_Cod, _M, _RI],
|
|
694
|
-
[0, 0, 0]
|
|
695
|
-
];
|
|
696
|
-
schema.TypeRegistry.for(n0).registerError(NotFoundException$, NotFoundException);
|
|
697
|
-
var NotificationsConfiguration$ = [3, n0, _NC,
|
|
698
|
-
0,
|
|
699
|
-
[_LFA, _STA, _SQA],
|
|
700
|
-
[[() => Arn, 0], [() => Arn, 0], [() => Arn, 0]]
|
|
701
|
-
];
|
|
702
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
703
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
704
|
-
[_Cod, _M, _RI, _RN],
|
|
705
|
-
[0, 0, 0, 0]
|
|
706
|
-
];
|
|
707
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
708
|
-
var ServiceFailureException$ = [-3, n0, _SFE,
|
|
709
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
710
|
-
[_Cod, _M, _RI],
|
|
711
|
-
[0, 0, 0]
|
|
712
|
-
];
|
|
713
|
-
schema.TypeRegistry.for(n0).registerError(ServiceFailureException$, ServiceFailureException);
|
|
714
|
-
var ServiceUnavailableException$ = [-3, n0, _SUE,
|
|
715
|
-
{ [_e]: _s, [_hE]: 503 },
|
|
716
|
-
[_Cod, _M, _RI, _RAS],
|
|
717
|
-
[0, 0, 0, [0, { [_hH]: _RA }]]
|
|
718
|
-
];
|
|
719
|
-
schema.TypeRegistry.for(n0).registerError(ServiceUnavailableException$, ServiceUnavailableException);
|
|
720
|
-
var StartMeetingTranscriptionRequest$ = [3, n0, _SMTR,
|
|
721
|
-
0,
|
|
722
|
-
[_MI, _TC],
|
|
723
|
-
[[0, 1], () => TranscriptionConfiguration$], 2
|
|
724
|
-
];
|
|
725
|
-
var StopMeetingTranscriptionRequest$ = [3, n0, _SMTRt,
|
|
726
|
-
0,
|
|
727
|
-
[_MI],
|
|
728
|
-
[[0, 1]], 1
|
|
729
|
-
];
|
|
730
|
-
var Tag$ = [3, n0, _Ta,
|
|
731
|
-
0,
|
|
732
|
-
[_K, _Va],
|
|
733
|
-
[0, 0], 2
|
|
734
|
-
];
|
|
735
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
736
|
-
0,
|
|
737
|
-
[_RARN, _T],
|
|
738
|
-
[0, () => TagList], 2
|
|
739
|
-
];
|
|
740
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
741
|
-
0,
|
|
742
|
-
[],
|
|
743
|
-
[]
|
|
744
|
-
];
|
|
745
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
746
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
747
|
-
[_Cod, _M, _RI],
|
|
748
|
-
[0, 0, 0]
|
|
749
|
-
];
|
|
750
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
751
|
-
var TooManyTagsException$ = [-3, n0, _TMTE,
|
|
752
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
753
|
-
[_Cod, _M, _RI, _RN],
|
|
754
|
-
[0, 0, 0, 0]
|
|
755
|
-
];
|
|
756
|
-
schema.TypeRegistry.for(n0).registerError(TooManyTagsException$, TooManyTagsException);
|
|
757
|
-
var TranscriptionConfiguration$ = [3, n0, _TC,
|
|
758
|
-
0,
|
|
759
|
-
[_ETS, _ETMS],
|
|
760
|
-
[() => EngineTranscribeSettings$, () => EngineTranscribeMedicalSettings$]
|
|
761
|
-
];
|
|
762
|
-
var UnauthorizedException$ = [-3, n0, _UE,
|
|
763
|
-
{ [_e]: _c, [_hE]: 401 },
|
|
764
|
-
[_Cod, _M, _RI],
|
|
765
|
-
[0, 0, 0]
|
|
766
|
-
];
|
|
767
|
-
schema.TypeRegistry.for(n0).registerError(UnauthorizedException$, UnauthorizedException);
|
|
768
|
-
var UnprocessableEntityException$ = [-3, n0, _UEE,
|
|
769
|
-
{ [_e]: _c, [_hE]: 422 },
|
|
770
|
-
[_Cod, _M, _RI],
|
|
771
|
-
[0, 0, 0]
|
|
772
|
-
];
|
|
773
|
-
schema.TypeRegistry.for(n0).registerError(UnprocessableEntityException$, UnprocessableEntityException);
|
|
774
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
775
|
-
0,
|
|
776
|
-
[_RARN, _TK],
|
|
777
|
-
[0, 64 | 0], 2
|
|
778
|
-
];
|
|
779
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
780
|
-
0,
|
|
781
|
-
[],
|
|
782
|
-
[]
|
|
783
|
-
];
|
|
784
|
-
var UpdateAttendeeCapabilitiesRequest$ = [3, n0, _UACR,
|
|
785
|
-
0,
|
|
786
|
-
[_MI, _AI, _C],
|
|
787
|
-
[[0, 1], [0, 1], () => AttendeeCapabilities$], 3
|
|
788
|
-
];
|
|
789
|
-
var UpdateAttendeeCapabilitiesResponse$ = [3, n0, _UACRp,
|
|
790
|
-
0,
|
|
791
|
-
[_At],
|
|
792
|
-
[[() => Attendee$, 0]]
|
|
793
|
-
];
|
|
794
|
-
var VideoFeatures$ = [3, n0, _VF,
|
|
795
|
-
0,
|
|
796
|
-
[_MR],
|
|
797
|
-
[0]
|
|
798
|
-
];
|
|
799
|
-
var __Unit = "unit";
|
|
800
|
-
var ChimeSDKMeetingsServiceException$ = [-3, _sm, "ChimeSDKMeetingsServiceException", 0, [], []];
|
|
801
|
-
schema.TypeRegistry.for(_sm).registerError(ChimeSDKMeetingsServiceException$, ChimeSDKMeetingsServiceException);
|
|
802
|
-
var AttendeeIdsList = [1, n0, _AIL,
|
|
803
|
-
0, () => AttendeeIdItem$
|
|
804
|
-
];
|
|
805
|
-
var AttendeeList = [1, n0, _AL,
|
|
806
|
-
0, [() => Attendee$,
|
|
807
|
-
0]
|
|
808
|
-
];
|
|
809
|
-
var BatchCreateAttendeeErrorList = [1, n0, _BCAEL,
|
|
810
|
-
0, [() => CreateAttendeeError$,
|
|
811
|
-
0]
|
|
812
|
-
];
|
|
813
|
-
var CreateAttendeeRequestItemList = [1, n0, _CARIL,
|
|
814
|
-
0, [() => CreateAttendeeRequestItem$,
|
|
815
|
-
0]
|
|
816
|
-
];
|
|
817
|
-
var CreateMeetingWithAttendeesRequestItemList = [1, n0, _CMWARIL,
|
|
818
|
-
0, [() => CreateAttendeeRequestItem$,
|
|
819
|
-
0]
|
|
820
|
-
];
|
|
821
|
-
var TagList = [1, n0, _TL,
|
|
822
|
-
0, () => Tag$
|
|
823
|
-
];
|
|
824
|
-
var BatchCreateAttendee$ = [9, n0, _BCA,
|
|
825
|
-
{ [_h]: ["POST", "/meetings/{MeetingId}/attendees?operation=batch-create", 200] }, () => BatchCreateAttendeeRequest$, () => BatchCreateAttendeeResponse$
|
|
826
|
-
];
|
|
827
|
-
var BatchUpdateAttendeeCapabilitiesExcept$ = [9, n0, _BUACE,
|
|
828
|
-
{ [_h]: ["PUT", "/meetings/{MeetingId}/attendees/capabilities?operation=batch-update-except", 200] }, () => BatchUpdateAttendeeCapabilitiesExceptRequest$, () => __Unit
|
|
829
|
-
];
|
|
830
|
-
var CreateAttendee$ = [9, n0, _CA,
|
|
831
|
-
{ [_h]: ["POST", "/meetings/{MeetingId}/attendees", 200] }, () => CreateAttendeeRequest$, () => CreateAttendeeResponse$
|
|
832
|
-
];
|
|
833
|
-
var CreateMeeting$ = [9, n0, _CM,
|
|
834
|
-
{ [_h]: ["POST", "/meetings", 200] }, () => CreateMeetingRequest$, () => CreateMeetingResponse$
|
|
835
|
-
];
|
|
836
|
-
var CreateMeetingWithAttendees$ = [9, n0, _CMWA,
|
|
837
|
-
{ [_h]: ["POST", "/meetings?operation=create-attendees", 200] }, () => CreateMeetingWithAttendeesRequest$, () => CreateMeetingWithAttendeesResponse$
|
|
838
|
-
];
|
|
839
|
-
var DeleteAttendee$ = [9, n0, _DA,
|
|
840
|
-
{ [_h]: ["DELETE", "/meetings/{MeetingId}/attendees/{AttendeeId}", 204] }, () => DeleteAttendeeRequest$, () => __Unit
|
|
841
|
-
];
|
|
842
|
-
var DeleteMeeting$ = [9, n0, _DM,
|
|
843
|
-
{ [_h]: ["DELETE", "/meetings/{MeetingId}", 204] }, () => DeleteMeetingRequest$, () => __Unit
|
|
844
|
-
];
|
|
845
|
-
var GetAttendee$ = [9, n0, _GA,
|
|
846
|
-
{ [_h]: ["GET", "/meetings/{MeetingId}/attendees/{AttendeeId}", 200] }, () => GetAttendeeRequest$, () => GetAttendeeResponse$
|
|
847
|
-
];
|
|
848
|
-
var GetMeeting$ = [9, n0, _GM,
|
|
849
|
-
{ [_h]: ["GET", "/meetings/{MeetingId}", 200] }, () => GetMeetingRequest$, () => GetMeetingResponse$
|
|
850
|
-
];
|
|
851
|
-
var ListAttendees$ = [9, n0, _LA,
|
|
852
|
-
{ [_h]: ["GET", "/meetings/{MeetingId}/attendees", 200] }, () => ListAttendeesRequest$, () => ListAttendeesResponse$
|
|
853
|
-
];
|
|
854
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
855
|
-
{ [_h]: ["GET", "/tags", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
856
|
-
];
|
|
857
|
-
var StartMeetingTranscription$ = [9, n0, _SMT,
|
|
858
|
-
{ [_h]: ["POST", "/meetings/{MeetingId}/transcription?operation=start", 200] }, () => StartMeetingTranscriptionRequest$, () => __Unit
|
|
859
|
-
];
|
|
860
|
-
var StopMeetingTranscription$ = [9, n0, _SMTt,
|
|
861
|
-
{ [_h]: ["POST", "/meetings/{MeetingId}/transcription?operation=stop", 200] }, () => StopMeetingTranscriptionRequest$, () => __Unit
|
|
862
|
-
];
|
|
863
|
-
var TagResource$ = [9, n0, _TR,
|
|
864
|
-
{ [_h]: ["POST", "/tags?operation=tag-resource", 204] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
865
|
-
];
|
|
866
|
-
var UntagResource$ = [9, n0, _UR,
|
|
867
|
-
{ [_h]: ["POST", "/tags?operation=untag-resource", 204] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
868
|
-
];
|
|
869
|
-
var UpdateAttendeeCapabilities$ = [9, n0, _UAC,
|
|
870
|
-
{ [_h]: ["PUT", "/meetings/{MeetingId}/attendees/{AttendeeId}/capabilities", 200] }, () => UpdateAttendeeCapabilitiesRequest$, () => UpdateAttendeeCapabilitiesResponse$
|
|
871
|
-
];
|
|
872
|
-
|
|
873
116
|
class BatchCreateAttendeeCommand extends smithyClient.Command
|
|
874
117
|
.classBuilder()
|
|
875
118
|
.ep(commonParams)
|
|
@@ -878,7 +121,7 @@ class BatchCreateAttendeeCommand extends smithyClient.Command
|
|
|
878
121
|
})
|
|
879
122
|
.s("ChimeMeetingsSDKService", "BatchCreateAttendee", {})
|
|
880
123
|
.n("ChimeSDKMeetingsClient", "BatchCreateAttendeeCommand")
|
|
881
|
-
.sc(BatchCreateAttendee$)
|
|
124
|
+
.sc(schemas_0.BatchCreateAttendee$)
|
|
882
125
|
.build() {
|
|
883
126
|
}
|
|
884
127
|
|
|
@@ -890,7 +133,7 @@ class BatchUpdateAttendeeCapabilitiesExceptCommand extends smithyClient.Command
|
|
|
890
133
|
})
|
|
891
134
|
.s("ChimeMeetingsSDKService", "BatchUpdateAttendeeCapabilitiesExcept", {})
|
|
892
135
|
.n("ChimeSDKMeetingsClient", "BatchUpdateAttendeeCapabilitiesExceptCommand")
|
|
893
|
-
.sc(BatchUpdateAttendeeCapabilitiesExcept$)
|
|
136
|
+
.sc(schemas_0.BatchUpdateAttendeeCapabilitiesExcept$)
|
|
894
137
|
.build() {
|
|
895
138
|
}
|
|
896
139
|
|
|
@@ -902,7 +145,7 @@ class CreateAttendeeCommand extends smithyClient.Command
|
|
|
902
145
|
})
|
|
903
146
|
.s("ChimeMeetingsSDKService", "CreateAttendee", {})
|
|
904
147
|
.n("ChimeSDKMeetingsClient", "CreateAttendeeCommand")
|
|
905
|
-
.sc(CreateAttendee$)
|
|
148
|
+
.sc(schemas_0.CreateAttendee$)
|
|
906
149
|
.build() {
|
|
907
150
|
}
|
|
908
151
|
|
|
@@ -914,7 +157,7 @@ class CreateMeetingCommand extends smithyClient.Command
|
|
|
914
157
|
})
|
|
915
158
|
.s("ChimeMeetingsSDKService", "CreateMeeting", {})
|
|
916
159
|
.n("ChimeSDKMeetingsClient", "CreateMeetingCommand")
|
|
917
|
-
.sc(CreateMeeting$)
|
|
160
|
+
.sc(schemas_0.CreateMeeting$)
|
|
918
161
|
.build() {
|
|
919
162
|
}
|
|
920
163
|
|
|
@@ -926,7 +169,7 @@ class CreateMeetingWithAttendeesCommand extends smithyClient.Command
|
|
|
926
169
|
})
|
|
927
170
|
.s("ChimeMeetingsSDKService", "CreateMeetingWithAttendees", {})
|
|
928
171
|
.n("ChimeSDKMeetingsClient", "CreateMeetingWithAttendeesCommand")
|
|
929
|
-
.sc(CreateMeetingWithAttendees$)
|
|
172
|
+
.sc(schemas_0.CreateMeetingWithAttendees$)
|
|
930
173
|
.build() {
|
|
931
174
|
}
|
|
932
175
|
|
|
@@ -938,7 +181,7 @@ class DeleteAttendeeCommand extends smithyClient.Command
|
|
|
938
181
|
})
|
|
939
182
|
.s("ChimeMeetingsSDKService", "DeleteAttendee", {})
|
|
940
183
|
.n("ChimeSDKMeetingsClient", "DeleteAttendeeCommand")
|
|
941
|
-
.sc(DeleteAttendee$)
|
|
184
|
+
.sc(schemas_0.DeleteAttendee$)
|
|
942
185
|
.build() {
|
|
943
186
|
}
|
|
944
187
|
|
|
@@ -950,7 +193,7 @@ class DeleteMeetingCommand extends smithyClient.Command
|
|
|
950
193
|
})
|
|
951
194
|
.s("ChimeMeetingsSDKService", "DeleteMeeting", {})
|
|
952
195
|
.n("ChimeSDKMeetingsClient", "DeleteMeetingCommand")
|
|
953
|
-
.sc(DeleteMeeting$)
|
|
196
|
+
.sc(schemas_0.DeleteMeeting$)
|
|
954
197
|
.build() {
|
|
955
198
|
}
|
|
956
199
|
|
|
@@ -962,7 +205,7 @@ class GetAttendeeCommand extends smithyClient.Command
|
|
|
962
205
|
})
|
|
963
206
|
.s("ChimeMeetingsSDKService", "GetAttendee", {})
|
|
964
207
|
.n("ChimeSDKMeetingsClient", "GetAttendeeCommand")
|
|
965
|
-
.sc(GetAttendee$)
|
|
208
|
+
.sc(schemas_0.GetAttendee$)
|
|
966
209
|
.build() {
|
|
967
210
|
}
|
|
968
211
|
|
|
@@ -974,7 +217,7 @@ class GetMeetingCommand extends smithyClient.Command
|
|
|
974
217
|
})
|
|
975
218
|
.s("ChimeMeetingsSDKService", "GetMeeting", {})
|
|
976
219
|
.n("ChimeSDKMeetingsClient", "GetMeetingCommand")
|
|
977
|
-
.sc(GetMeeting$)
|
|
220
|
+
.sc(schemas_0.GetMeeting$)
|
|
978
221
|
.build() {
|
|
979
222
|
}
|
|
980
223
|
|
|
@@ -986,7 +229,7 @@ class ListAttendeesCommand extends smithyClient.Command
|
|
|
986
229
|
})
|
|
987
230
|
.s("ChimeMeetingsSDKService", "ListAttendees", {})
|
|
988
231
|
.n("ChimeSDKMeetingsClient", "ListAttendeesCommand")
|
|
989
|
-
.sc(ListAttendees$)
|
|
232
|
+
.sc(schemas_0.ListAttendees$)
|
|
990
233
|
.build() {
|
|
991
234
|
}
|
|
992
235
|
|
|
@@ -998,7 +241,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
998
241
|
})
|
|
999
242
|
.s("ChimeMeetingsSDKService", "ListTagsForResource", {})
|
|
1000
243
|
.n("ChimeSDKMeetingsClient", "ListTagsForResourceCommand")
|
|
1001
|
-
.sc(ListTagsForResource$)
|
|
244
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1002
245
|
.build() {
|
|
1003
246
|
}
|
|
1004
247
|
|
|
@@ -1010,7 +253,7 @@ class StartMeetingTranscriptionCommand extends smithyClient.Command
|
|
|
1010
253
|
})
|
|
1011
254
|
.s("ChimeMeetingsSDKService", "StartMeetingTranscription", {})
|
|
1012
255
|
.n("ChimeSDKMeetingsClient", "StartMeetingTranscriptionCommand")
|
|
1013
|
-
.sc(StartMeetingTranscription$)
|
|
256
|
+
.sc(schemas_0.StartMeetingTranscription$)
|
|
1014
257
|
.build() {
|
|
1015
258
|
}
|
|
1016
259
|
|
|
@@ -1022,7 +265,7 @@ class StopMeetingTranscriptionCommand extends smithyClient.Command
|
|
|
1022
265
|
})
|
|
1023
266
|
.s("ChimeMeetingsSDKService", "StopMeetingTranscription", {})
|
|
1024
267
|
.n("ChimeSDKMeetingsClient", "StopMeetingTranscriptionCommand")
|
|
1025
|
-
.sc(StopMeetingTranscription$)
|
|
268
|
+
.sc(schemas_0.StopMeetingTranscription$)
|
|
1026
269
|
.build() {
|
|
1027
270
|
}
|
|
1028
271
|
|
|
@@ -1034,7 +277,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1034
277
|
})
|
|
1035
278
|
.s("ChimeMeetingsSDKService", "TagResource", {})
|
|
1036
279
|
.n("ChimeSDKMeetingsClient", "TagResourceCommand")
|
|
1037
|
-
.sc(TagResource$)
|
|
280
|
+
.sc(schemas_0.TagResource$)
|
|
1038
281
|
.build() {
|
|
1039
282
|
}
|
|
1040
283
|
|
|
@@ -1046,7 +289,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1046
289
|
})
|
|
1047
290
|
.s("ChimeMeetingsSDKService", "UntagResource", {})
|
|
1048
291
|
.n("ChimeSDKMeetingsClient", "UntagResourceCommand")
|
|
1049
|
-
.sc(UntagResource$)
|
|
292
|
+
.sc(schemas_0.UntagResource$)
|
|
1050
293
|
.build() {
|
|
1051
294
|
}
|
|
1052
295
|
|
|
@@ -1058,7 +301,7 @@ class UpdateAttendeeCapabilitiesCommand extends smithyClient.Command
|
|
|
1058
301
|
})
|
|
1059
302
|
.s("ChimeMeetingsSDKService", "UpdateAttendeeCapabilities", {})
|
|
1060
303
|
.n("ChimeSDKMeetingsClient", "UpdateAttendeeCapabilitiesCommand")
|
|
1061
|
-
.sc(UpdateAttendeeCapabilities$)
|
|
304
|
+
.sc(schemas_0.UpdateAttendeeCapabilities$)
|
|
1062
305
|
.build() {
|
|
1063
306
|
}
|
|
1064
307
|
|
|
@@ -1196,100 +439,30 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1196
439
|
enumerable: true,
|
|
1197
440
|
get: function () { return smithyClient.Client; }
|
|
1198
441
|
});
|
|
1199
|
-
exports
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
exports.AudioFeatures$ = AudioFeatures$;
|
|
1204
|
-
exports.BadRequestException = BadRequestException;
|
|
1205
|
-
exports.BadRequestException$ = BadRequestException$;
|
|
1206
|
-
exports.BatchCreateAttendee$ = BatchCreateAttendee$;
|
|
442
|
+
Object.defineProperty(exports, "ChimeSDKMeetingsServiceException", {
|
|
443
|
+
enumerable: true,
|
|
444
|
+
get: function () { return ChimeSDKMeetingsServiceException.ChimeSDKMeetingsServiceException; }
|
|
445
|
+
});
|
|
1207
446
|
exports.BatchCreateAttendeeCommand = BatchCreateAttendeeCommand;
|
|
1208
|
-
exports.BatchCreateAttendeeRequest$ = BatchCreateAttendeeRequest$;
|
|
1209
|
-
exports.BatchCreateAttendeeResponse$ = BatchCreateAttendeeResponse$;
|
|
1210
|
-
exports.BatchUpdateAttendeeCapabilitiesExcept$ = BatchUpdateAttendeeCapabilitiesExcept$;
|
|
1211
447
|
exports.BatchUpdateAttendeeCapabilitiesExceptCommand = BatchUpdateAttendeeCapabilitiesExceptCommand;
|
|
1212
|
-
exports.BatchUpdateAttendeeCapabilitiesExceptRequest$ = BatchUpdateAttendeeCapabilitiesExceptRequest$;
|
|
1213
448
|
exports.ChimeSDKMeetings = ChimeSDKMeetings;
|
|
1214
449
|
exports.ChimeSDKMeetingsClient = ChimeSDKMeetingsClient;
|
|
1215
|
-
exports.ChimeSDKMeetingsServiceException = ChimeSDKMeetingsServiceException;
|
|
1216
|
-
exports.ChimeSDKMeetingsServiceException$ = ChimeSDKMeetingsServiceException$;
|
|
1217
|
-
exports.ConflictException = ConflictException;
|
|
1218
|
-
exports.ConflictException$ = ConflictException$;
|
|
1219
|
-
exports.ContentFeatures$ = ContentFeatures$;
|
|
1220
450
|
exports.ContentResolution = ContentResolution;
|
|
1221
|
-
exports.CreateAttendee$ = CreateAttendee$;
|
|
1222
451
|
exports.CreateAttendeeCommand = CreateAttendeeCommand;
|
|
1223
|
-
exports.CreateAttendeeError$ = CreateAttendeeError$;
|
|
1224
|
-
exports.CreateAttendeeRequest$ = CreateAttendeeRequest$;
|
|
1225
|
-
exports.CreateAttendeeRequestItem$ = CreateAttendeeRequestItem$;
|
|
1226
|
-
exports.CreateAttendeeResponse$ = CreateAttendeeResponse$;
|
|
1227
|
-
exports.CreateMeeting$ = CreateMeeting$;
|
|
1228
452
|
exports.CreateMeetingCommand = CreateMeetingCommand;
|
|
1229
|
-
exports.CreateMeetingRequest$ = CreateMeetingRequest$;
|
|
1230
|
-
exports.CreateMeetingResponse$ = CreateMeetingResponse$;
|
|
1231
|
-
exports.CreateMeetingWithAttendees$ = CreateMeetingWithAttendees$;
|
|
1232
453
|
exports.CreateMeetingWithAttendeesCommand = CreateMeetingWithAttendeesCommand;
|
|
1233
|
-
exports.CreateMeetingWithAttendeesRequest$ = CreateMeetingWithAttendeesRequest$;
|
|
1234
|
-
exports.CreateMeetingWithAttendeesResponse$ = CreateMeetingWithAttendeesResponse$;
|
|
1235
|
-
exports.DeleteAttendee$ = DeleteAttendee$;
|
|
1236
454
|
exports.DeleteAttendeeCommand = DeleteAttendeeCommand;
|
|
1237
|
-
exports.DeleteAttendeeRequest$ = DeleteAttendeeRequest$;
|
|
1238
|
-
exports.DeleteMeeting$ = DeleteMeeting$;
|
|
1239
455
|
exports.DeleteMeetingCommand = DeleteMeetingCommand;
|
|
1240
|
-
exports.DeleteMeetingRequest$ = DeleteMeetingRequest$;
|
|
1241
|
-
exports.EngineTranscribeMedicalSettings$ = EngineTranscribeMedicalSettings$;
|
|
1242
|
-
exports.EngineTranscribeSettings$ = EngineTranscribeSettings$;
|
|
1243
|
-
exports.ForbiddenException = ForbiddenException;
|
|
1244
|
-
exports.ForbiddenException$ = ForbiddenException$;
|
|
1245
|
-
exports.GetAttendee$ = GetAttendee$;
|
|
1246
456
|
exports.GetAttendeeCommand = GetAttendeeCommand;
|
|
1247
|
-
exports.GetAttendeeRequest$ = GetAttendeeRequest$;
|
|
1248
|
-
exports.GetAttendeeResponse$ = GetAttendeeResponse$;
|
|
1249
|
-
exports.GetMeeting$ = GetMeeting$;
|
|
1250
457
|
exports.GetMeetingCommand = GetMeetingCommand;
|
|
1251
|
-
exports.GetMeetingRequest$ = GetMeetingRequest$;
|
|
1252
|
-
exports.GetMeetingResponse$ = GetMeetingResponse$;
|
|
1253
|
-
exports.LimitExceededException = LimitExceededException;
|
|
1254
|
-
exports.LimitExceededException$ = LimitExceededException$;
|
|
1255
|
-
exports.ListAttendees$ = ListAttendees$;
|
|
1256
458
|
exports.ListAttendeesCommand = ListAttendeesCommand;
|
|
1257
|
-
exports.ListAttendeesRequest$ = ListAttendeesRequest$;
|
|
1258
|
-
exports.ListAttendeesResponse$ = ListAttendeesResponse$;
|
|
1259
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1260
459
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1261
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1262
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1263
460
|
exports.MediaCapabilities = MediaCapabilities;
|
|
1264
|
-
exports.MediaPlacement$ = MediaPlacement$;
|
|
1265
461
|
exports.MediaPlacementNetworkType = MediaPlacementNetworkType;
|
|
1266
|
-
exports.Meeting$ = Meeting$;
|
|
1267
462
|
exports.MeetingFeatureStatus = MeetingFeatureStatus;
|
|
1268
|
-
exports.MeetingFeaturesConfiguration$ = MeetingFeaturesConfiguration$;
|
|
1269
|
-
exports.NotFoundException = NotFoundException;
|
|
1270
|
-
exports.NotFoundException$ = NotFoundException$;
|
|
1271
|
-
exports.NotificationsConfiguration$ = NotificationsConfiguration$;
|
|
1272
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1273
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1274
|
-
exports.ServiceFailureException = ServiceFailureException;
|
|
1275
|
-
exports.ServiceFailureException$ = ServiceFailureException$;
|
|
1276
|
-
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
1277
|
-
exports.ServiceUnavailableException$ = ServiceUnavailableException$;
|
|
1278
|
-
exports.StartMeetingTranscription$ = StartMeetingTranscription$;
|
|
1279
463
|
exports.StartMeetingTranscriptionCommand = StartMeetingTranscriptionCommand;
|
|
1280
|
-
exports.StartMeetingTranscriptionRequest$ = StartMeetingTranscriptionRequest$;
|
|
1281
|
-
exports.StopMeetingTranscription$ = StopMeetingTranscription$;
|
|
1282
464
|
exports.StopMeetingTranscriptionCommand = StopMeetingTranscriptionCommand;
|
|
1283
|
-
exports.StopMeetingTranscriptionRequest$ = StopMeetingTranscriptionRequest$;
|
|
1284
|
-
exports.Tag$ = Tag$;
|
|
1285
|
-
exports.TagResource$ = TagResource$;
|
|
1286
465
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1287
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1288
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1289
|
-
exports.ThrottlingException = ThrottlingException;
|
|
1290
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
1291
|
-
exports.TooManyTagsException = TooManyTagsException;
|
|
1292
|
-
exports.TooManyTagsException$ = TooManyTagsException$;
|
|
1293
466
|
exports.TranscribeContentIdentificationType = TranscribeContentIdentificationType;
|
|
1294
467
|
exports.TranscribeContentRedactionType = TranscribeContentRedactionType;
|
|
1295
468
|
exports.TranscribeLanguageCode = TranscribeLanguageCode;
|
|
@@ -1301,19 +474,19 @@ exports.TranscribeMedicalType = TranscribeMedicalType;
|
|
|
1301
474
|
exports.TranscribePartialResultsStability = TranscribePartialResultsStability;
|
|
1302
475
|
exports.TranscribeRegion = TranscribeRegion;
|
|
1303
476
|
exports.TranscribeVocabularyFilterMethod = TranscribeVocabularyFilterMethod;
|
|
1304
|
-
exports.TranscriptionConfiguration$ = TranscriptionConfiguration$;
|
|
1305
|
-
exports.UnauthorizedException = UnauthorizedException;
|
|
1306
|
-
exports.UnauthorizedException$ = UnauthorizedException$;
|
|
1307
|
-
exports.UnprocessableEntityException = UnprocessableEntityException;
|
|
1308
|
-
exports.UnprocessableEntityException$ = UnprocessableEntityException$;
|
|
1309
|
-
exports.UntagResource$ = UntagResource$;
|
|
1310
477
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1311
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1312
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1313
|
-
exports.UpdateAttendeeCapabilities$ = UpdateAttendeeCapabilities$;
|
|
1314
478
|
exports.UpdateAttendeeCapabilitiesCommand = UpdateAttendeeCapabilitiesCommand;
|
|
1315
|
-
exports.UpdateAttendeeCapabilitiesRequest$ = UpdateAttendeeCapabilitiesRequest$;
|
|
1316
|
-
exports.UpdateAttendeeCapabilitiesResponse$ = UpdateAttendeeCapabilitiesResponse$;
|
|
1317
|
-
exports.VideoFeatures$ = VideoFeatures$;
|
|
1318
479
|
exports.VideoResolution = VideoResolution;
|
|
1319
480
|
exports.paginateListAttendees = paginateListAttendees;
|
|
481
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
482
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
483
|
+
enumerable: true,
|
|
484
|
+
get: function () { return schemas_0[k]; }
|
|
485
|
+
});
|
|
486
|
+
});
|
|
487
|
+
Object.keys(errors).forEach(function (k) {
|
|
488
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
489
|
+
enumerable: true,
|
|
490
|
+
get: function () { return errors[k]; }
|
|
491
|
+
});
|
|
492
|
+
});
|