@aws-sdk/client-chime-sdk-meetings 3.952.0 → 3.953.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 +276 -189
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/BatchCreateAttendeeCommand.js +2 -2
- package/dist-es/commands/BatchUpdateAttendeeCapabilitiesExceptCommand.js +2 -2
- package/dist-es/commands/CreateAttendeeCommand.js +2 -2
- package/dist-es/commands/CreateMeetingCommand.js +2 -2
- package/dist-es/commands/CreateMeetingWithAttendeesCommand.js +2 -2
- package/dist-es/commands/DeleteAttendeeCommand.js +2 -2
- package/dist-es/commands/DeleteMeetingCommand.js +2 -2
- package/dist-es/commands/GetAttendeeCommand.js +2 -2
- package/dist-es/commands/GetMeetingCommand.js +2 -2
- package/dist-es/commands/ListAttendeesCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/StartMeetingTranscriptionCommand.js +2 -2
- package/dist-es/commands/StopMeetingTranscriptionCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateAttendeeCapabilitiesCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +160 -146
- package/dist-types/ChimeSDKMeetingsClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +74 -88
- package/dist-types/ts3.4/ChimeSDKMeetingsClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +73 -89
- package/package.json +34 -34
package/dist-cjs/index.js
CHANGED
|
@@ -110,14 +110,14 @@ class ChimeSDKMeetingsClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
|
|
113
|
+
class ChimeSDKMeetingsServiceException extends smithyClient.ServiceException {
|
|
114
114
|
constructor(options) {
|
|
115
115
|
super(options);
|
|
116
116
|
Object.setPrototypeOf(this, ChimeSDKMeetingsServiceException.prototype);
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
}
|
|
119
119
|
|
|
120
|
-
|
|
120
|
+
class BadRequestException extends ChimeSDKMeetingsServiceException {
|
|
121
121
|
name = "BadRequestException";
|
|
122
122
|
$fault = "client";
|
|
123
123
|
Code;
|
|
@@ -134,8 +134,8 @@ let BadRequestException$1 = class BadRequestException extends ChimeSDKMeetingsSe
|
|
|
134
134
|
this.Message = opts.Message;
|
|
135
135
|
this.RequestId = opts.RequestId;
|
|
136
136
|
}
|
|
137
|
-
}
|
|
138
|
-
|
|
137
|
+
}
|
|
138
|
+
class ForbiddenException extends ChimeSDKMeetingsServiceException {
|
|
139
139
|
name = "ForbiddenException";
|
|
140
140
|
$fault = "client";
|
|
141
141
|
Code;
|
|
@@ -152,8 +152,8 @@ let ForbiddenException$1 = class ForbiddenException extends ChimeSDKMeetingsServ
|
|
|
152
152
|
this.Message = opts.Message;
|
|
153
153
|
this.RequestId = opts.RequestId;
|
|
154
154
|
}
|
|
155
|
-
}
|
|
156
|
-
|
|
155
|
+
}
|
|
156
|
+
class LimitExceededException extends ChimeSDKMeetingsServiceException {
|
|
157
157
|
name = "LimitExceededException";
|
|
158
158
|
$fault = "client";
|
|
159
159
|
Code;
|
|
@@ -170,8 +170,8 @@ let LimitExceededException$1 = class LimitExceededException extends ChimeSDKMeet
|
|
|
170
170
|
this.Message = opts.Message;
|
|
171
171
|
this.RequestId = opts.RequestId;
|
|
172
172
|
}
|
|
173
|
-
}
|
|
174
|
-
|
|
173
|
+
}
|
|
174
|
+
class NotFoundException extends ChimeSDKMeetingsServiceException {
|
|
175
175
|
name = "NotFoundException";
|
|
176
176
|
$fault = "client";
|
|
177
177
|
Code;
|
|
@@ -188,8 +188,8 @@ let NotFoundException$1 = class NotFoundException extends ChimeSDKMeetingsServic
|
|
|
188
188
|
this.Message = opts.Message;
|
|
189
189
|
this.RequestId = opts.RequestId;
|
|
190
190
|
}
|
|
191
|
-
}
|
|
192
|
-
|
|
191
|
+
}
|
|
192
|
+
class ServiceFailureException extends ChimeSDKMeetingsServiceException {
|
|
193
193
|
name = "ServiceFailureException";
|
|
194
194
|
$fault = "server";
|
|
195
195
|
Code;
|
|
@@ -206,8 +206,8 @@ let ServiceFailureException$1 = class ServiceFailureException extends ChimeSDKMe
|
|
|
206
206
|
this.Message = opts.Message;
|
|
207
207
|
this.RequestId = opts.RequestId;
|
|
208
208
|
}
|
|
209
|
-
}
|
|
210
|
-
|
|
209
|
+
}
|
|
210
|
+
class ServiceUnavailableException extends ChimeSDKMeetingsServiceException {
|
|
211
211
|
name = "ServiceUnavailableException";
|
|
212
212
|
$fault = "server";
|
|
213
213
|
Code;
|
|
@@ -226,8 +226,8 @@ let ServiceUnavailableException$1 = class ServiceUnavailableException extends Ch
|
|
|
226
226
|
this.RequestId = opts.RequestId;
|
|
227
227
|
this.RetryAfterSeconds = opts.RetryAfterSeconds;
|
|
228
228
|
}
|
|
229
|
-
}
|
|
230
|
-
|
|
229
|
+
}
|
|
230
|
+
class ThrottlingException extends ChimeSDKMeetingsServiceException {
|
|
231
231
|
name = "ThrottlingException";
|
|
232
232
|
$fault = "client";
|
|
233
233
|
Code;
|
|
@@ -244,8 +244,8 @@ let ThrottlingException$1 = class ThrottlingException extends ChimeSDKMeetingsSe
|
|
|
244
244
|
this.Message = opts.Message;
|
|
245
245
|
this.RequestId = opts.RequestId;
|
|
246
246
|
}
|
|
247
|
-
}
|
|
248
|
-
|
|
247
|
+
}
|
|
248
|
+
class UnauthorizedException extends ChimeSDKMeetingsServiceException {
|
|
249
249
|
name = "UnauthorizedException";
|
|
250
250
|
$fault = "client";
|
|
251
251
|
Code;
|
|
@@ -262,8 +262,8 @@ let UnauthorizedException$1 = class UnauthorizedException extends ChimeSDKMeetin
|
|
|
262
262
|
this.Message = opts.Message;
|
|
263
263
|
this.RequestId = opts.RequestId;
|
|
264
264
|
}
|
|
265
|
-
}
|
|
266
|
-
|
|
265
|
+
}
|
|
266
|
+
class UnprocessableEntityException extends ChimeSDKMeetingsServiceException {
|
|
267
267
|
name = "UnprocessableEntityException";
|
|
268
268
|
$fault = "client";
|
|
269
269
|
Code;
|
|
@@ -280,8 +280,8 @@ let UnprocessableEntityException$1 = class UnprocessableEntityException extends
|
|
|
280
280
|
this.Message = opts.Message;
|
|
281
281
|
this.RequestId = opts.RequestId;
|
|
282
282
|
}
|
|
283
|
-
}
|
|
284
|
-
|
|
283
|
+
}
|
|
284
|
+
class ConflictException extends ChimeSDKMeetingsServiceException {
|
|
285
285
|
name = "ConflictException";
|
|
286
286
|
$fault = "client";
|
|
287
287
|
Code;
|
|
@@ -298,8 +298,8 @@ let ConflictException$1 = class ConflictException extends ChimeSDKMeetingsServic
|
|
|
298
298
|
this.Message = opts.Message;
|
|
299
299
|
this.RequestId = opts.RequestId;
|
|
300
300
|
}
|
|
301
|
-
}
|
|
302
|
-
|
|
301
|
+
}
|
|
302
|
+
class ResourceNotFoundException extends ChimeSDKMeetingsServiceException {
|
|
303
303
|
name = "ResourceNotFoundException";
|
|
304
304
|
$fault = "client";
|
|
305
305
|
Code;
|
|
@@ -318,8 +318,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends ChimeS
|
|
|
318
318
|
this.RequestId = opts.RequestId;
|
|
319
319
|
this.ResourceName = opts.ResourceName;
|
|
320
320
|
}
|
|
321
|
-
}
|
|
322
|
-
|
|
321
|
+
}
|
|
322
|
+
class TooManyTagsException extends ChimeSDKMeetingsServiceException {
|
|
323
323
|
name = "TooManyTagsException";
|
|
324
324
|
$fault = "client";
|
|
325
325
|
Code;
|
|
@@ -338,7 +338,7 @@ let TooManyTagsException$1 = class TooManyTagsException extends ChimeSDKMeetings
|
|
|
338
338
|
this.RequestId = opts.RequestId;
|
|
339
339
|
this.ResourceName = opts.ResourceName;
|
|
340
340
|
}
|
|
341
|
-
}
|
|
341
|
+
}
|
|
342
342
|
|
|
343
343
|
const _A = "Arn";
|
|
344
344
|
const _AC = "AttendeeCapabilities";
|
|
@@ -504,19 +504,19 @@ var ClientRequestToken = [0, n0, _CRT, 8, 0];
|
|
|
504
504
|
var ExternalMeetingId = [0, n0, _EMI, 8, 0];
|
|
505
505
|
var ExternalUserId = [0, n0, _EUI, 8, 0];
|
|
506
506
|
var JoinTokenString = [0, n0, _JTS, 8, 0];
|
|
507
|
-
var Attendee = [
|
|
507
|
+
var Attendee$ = [
|
|
508
508
|
3,
|
|
509
509
|
n0,
|
|
510
510
|
_At,
|
|
511
511
|
0,
|
|
512
512
|
[_EUI, _AI, _JT, _C],
|
|
513
|
-
[[() => ExternalUserId, 0], 0, [() => JoinTokenString, 0], () => AttendeeCapabilities],
|
|
513
|
+
[[() => ExternalUserId, 0], 0, [() => JoinTokenString, 0], () => AttendeeCapabilities$],
|
|
514
514
|
];
|
|
515
|
-
var AttendeeCapabilities = [3, n0, _AC, 0, [_Au, _V, _Co], [0, 0, 0]];
|
|
516
|
-
var AttendeeFeatures = [3, n0, _AF, 0, [_MC], [1]];
|
|
517
|
-
var AttendeeIdItem = [3, n0, _AII, 0, [_AI], [0]];
|
|
518
|
-
var AudioFeatures = [3, n0, _AFu, 0, [_ER], [0]];
|
|
519
|
-
var BadRequestException = [
|
|
515
|
+
var AttendeeCapabilities$ = [3, n0, _AC, 0, [_Au, _V, _Co], [0, 0, 0]];
|
|
516
|
+
var AttendeeFeatures$ = [3, n0, _AF, 0, [_MC], [1]];
|
|
517
|
+
var AttendeeIdItem$ = [3, n0, _AII, 0, [_AI], [0]];
|
|
518
|
+
var AudioFeatures$ = [3, n0, _AFu, 0, [_ER], [0]];
|
|
519
|
+
var BadRequestException$ = [
|
|
520
520
|
-3,
|
|
521
521
|
n0,
|
|
522
522
|
_BRE,
|
|
@@ -524,8 +524,8 @@ var BadRequestException = [
|
|
|
524
524
|
[_Cod, _M, _RI],
|
|
525
525
|
[0, 0, 0],
|
|
526
526
|
];
|
|
527
|
-
schema.TypeRegistry.for(n0).registerError(BadRequestException
|
|
528
|
-
var BatchCreateAttendeeRequest = [
|
|
527
|
+
schema.TypeRegistry.for(n0).registerError(BadRequestException$, BadRequestException);
|
|
528
|
+
var BatchCreateAttendeeRequest$ = [
|
|
529
529
|
3,
|
|
530
530
|
n0,
|
|
531
531
|
_BCAR,
|
|
@@ -536,7 +536,7 @@ var BatchCreateAttendeeRequest = [
|
|
|
536
536
|
[() => CreateAttendeeRequestItemList, 0],
|
|
537
537
|
],
|
|
538
538
|
];
|
|
539
|
-
var BatchCreateAttendeeResponse = [
|
|
539
|
+
var BatchCreateAttendeeResponse$ = [
|
|
540
540
|
3,
|
|
541
541
|
n0,
|
|
542
542
|
_BCARa,
|
|
@@ -547,18 +547,18 @@ var BatchCreateAttendeeResponse = [
|
|
|
547
547
|
[() => BatchCreateAttendeeErrorList, 0],
|
|
548
548
|
],
|
|
549
549
|
];
|
|
550
|
-
var BatchUpdateAttendeeCapabilitiesExceptRequest = [
|
|
550
|
+
var BatchUpdateAttendeeCapabilitiesExceptRequest$ = [
|
|
551
551
|
3,
|
|
552
552
|
n0,
|
|
553
553
|
_BUACER,
|
|
554
554
|
0,
|
|
555
555
|
[_MI, _EAI, _C],
|
|
556
|
-
[[0, 1], () => AttendeeIdsList, () => AttendeeCapabilities],
|
|
556
|
+
[[0, 1], () => AttendeeIdsList, () => AttendeeCapabilities$],
|
|
557
557
|
];
|
|
558
|
-
var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_Cod, _M, _RI], [0, 0, 0]];
|
|
559
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException
|
|
560
|
-
var ContentFeatures = [3, n0, _CF, 0, [_MR], [0]];
|
|
561
|
-
var CreateAttendeeError = [
|
|
558
|
+
var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_Cod, _M, _RI], [0, 0, 0]];
|
|
559
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
560
|
+
var ContentFeatures$ = [3, n0, _CF, 0, [_MR], [0]];
|
|
561
|
+
var CreateAttendeeError$ = [
|
|
562
562
|
3,
|
|
563
563
|
n0,
|
|
564
564
|
_CAE,
|
|
@@ -566,24 +566,24 @@ var CreateAttendeeError = [
|
|
|
566
566
|
[_EUI, _EC, _EM],
|
|
567
567
|
[[() => ExternalUserId, 0], 0, 0],
|
|
568
568
|
];
|
|
569
|
-
var CreateAttendeeRequest = [
|
|
569
|
+
var CreateAttendeeRequest$ = [
|
|
570
570
|
3,
|
|
571
571
|
n0,
|
|
572
572
|
_CAR,
|
|
573
573
|
0,
|
|
574
574
|
[_MI, _EUI, _C],
|
|
575
|
-
[[0, 1], [() => ExternalUserId, 0], () => AttendeeCapabilities],
|
|
575
|
+
[[0, 1], [() => ExternalUserId, 0], () => AttendeeCapabilities$],
|
|
576
576
|
];
|
|
577
|
-
var CreateAttendeeRequestItem = [
|
|
577
|
+
var CreateAttendeeRequestItem$ = [
|
|
578
578
|
3,
|
|
579
579
|
n0,
|
|
580
580
|
_CARI,
|
|
581
581
|
0,
|
|
582
582
|
[_EUI, _C],
|
|
583
|
-
[[() => ExternalUserId, 0], () => AttendeeCapabilities],
|
|
583
|
+
[[() => ExternalUserId, 0], () => AttendeeCapabilities$],
|
|
584
584
|
];
|
|
585
|
-
var CreateAttendeeResponse = [3, n0, _CARr, 0, [_At], [[() => Attendee
|
|
586
|
-
var CreateMeetingRequest = [
|
|
585
|
+
var CreateAttendeeResponse$ = [3, n0, _CARr, 0, [_At], [[() => Attendee$, 0]]];
|
|
586
|
+
var CreateMeetingRequest$ = [
|
|
587
587
|
3,
|
|
588
588
|
n0,
|
|
589
589
|
_CMR,
|
|
@@ -594,16 +594,16 @@ var CreateMeetingRequest = [
|
|
|
594
594
|
0,
|
|
595
595
|
[() => ExternalUserId, 0],
|
|
596
596
|
[() => ExternalMeetingId, 0],
|
|
597
|
-
[() => NotificationsConfiguration
|
|
598
|
-
() => MeetingFeaturesConfiguration
|
|
597
|
+
[() => NotificationsConfiguration$, 0],
|
|
598
|
+
() => MeetingFeaturesConfiguration$,
|
|
599
599
|
0,
|
|
600
600
|
64 | 0,
|
|
601
601
|
() => TagList,
|
|
602
602
|
0,
|
|
603
603
|
],
|
|
604
604
|
];
|
|
605
|
-
var CreateMeetingResponse = [3, n0, _CMRr, 0, [_Me], [[() => Meeting
|
|
606
|
-
var CreateMeetingWithAttendeesRequest = [
|
|
605
|
+
var CreateMeetingResponse$ = [3, n0, _CMRr, 0, [_Me], [[() => Meeting$, 0]]];
|
|
606
|
+
var CreateMeetingWithAttendeesRequest$ = [
|
|
607
607
|
3,
|
|
608
608
|
n0,
|
|
609
609
|
_CMWAR,
|
|
@@ -614,8 +614,8 @@ var CreateMeetingWithAttendeesRequest = [
|
|
|
614
614
|
0,
|
|
615
615
|
[() => ExternalUserId, 0],
|
|
616
616
|
[() => ExternalMeetingId, 0],
|
|
617
|
-
() => MeetingFeaturesConfiguration
|
|
618
|
-
[() => NotificationsConfiguration
|
|
617
|
+
() => MeetingFeaturesConfiguration$,
|
|
618
|
+
[() => NotificationsConfiguration$, 0],
|
|
619
619
|
[() => CreateMeetingWithAttendeesRequestItemList, 0],
|
|
620
620
|
0,
|
|
621
621
|
64 | 0,
|
|
@@ -623,19 +623,19 @@ var CreateMeetingWithAttendeesRequest = [
|
|
|
623
623
|
0,
|
|
624
624
|
],
|
|
625
625
|
];
|
|
626
|
-
var CreateMeetingWithAttendeesResponse = [
|
|
626
|
+
var CreateMeetingWithAttendeesResponse$ = [
|
|
627
627
|
3,
|
|
628
628
|
n0,
|
|
629
629
|
_CMWARr,
|
|
630
630
|
0,
|
|
631
631
|
[_Me, _Att, _E],
|
|
632
632
|
[
|
|
633
|
-
[() => Meeting
|
|
633
|
+
[() => Meeting$, 0],
|
|
634
634
|
[() => AttendeeList, 0],
|
|
635
635
|
[() => BatchCreateAttendeeErrorList, 0],
|
|
636
636
|
],
|
|
637
637
|
];
|
|
638
|
-
var DeleteAttendeeRequest = [
|
|
638
|
+
var DeleteAttendeeRequest$ = [
|
|
639
639
|
3,
|
|
640
640
|
n0,
|
|
641
641
|
_DAR,
|
|
@@ -646,8 +646,8 @@ var DeleteAttendeeRequest = [
|
|
|
646
646
|
[0, 1],
|
|
647
647
|
],
|
|
648
648
|
];
|
|
649
|
-
var DeleteMeetingRequest = [3, n0, _DMR, 0, [_MI], [[0, 1]]];
|
|
650
|
-
var EngineTranscribeMedicalSettings = [
|
|
649
|
+
var DeleteMeetingRequest$ = [3, n0, _DMR, 0, [_MI], [[0, 1]]];
|
|
650
|
+
var EngineTranscribeMedicalSettings$ = [
|
|
651
651
|
3,
|
|
652
652
|
n0,
|
|
653
653
|
_ETMS,
|
|
@@ -655,7 +655,7 @@ var EngineTranscribeMedicalSettings = [
|
|
|
655
655
|
[_LC, _S, _Ty, _VN, _R, _CIT],
|
|
656
656
|
[0, 0, 0, 0, 0, 0],
|
|
657
657
|
];
|
|
658
|
-
var EngineTranscribeSettings = [
|
|
658
|
+
var EngineTranscribeSettings$ = [
|
|
659
659
|
3,
|
|
660
660
|
n0,
|
|
661
661
|
_ETS,
|
|
@@ -663,9 +663,9 @@ var EngineTranscribeSettings = [
|
|
|
663
663
|
[_LC, _VFM, _VFN, _VN, _R, _EPRS, _PRS, _CIT, _CRTo, _PET, _LMN, _IL, _LO, _PL, _VNo, _VFNo],
|
|
664
664
|
[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0],
|
|
665
665
|
];
|
|
666
|
-
var ForbiddenException = [-3, n0, _FE, { [_e]: _c, [_hE]: 403 }, [_Cod, _M, _RI], [0, 0, 0]];
|
|
667
|
-
schema.TypeRegistry.for(n0).registerError(ForbiddenException
|
|
668
|
-
var GetAttendeeRequest = [
|
|
666
|
+
var ForbiddenException$ = [-3, n0, _FE, { [_e]: _c, [_hE]: 403 }, [_Cod, _M, _RI], [0, 0, 0]];
|
|
667
|
+
schema.TypeRegistry.for(n0).registerError(ForbiddenException$, ForbiddenException);
|
|
668
|
+
var GetAttendeeRequest$ = [
|
|
669
669
|
3,
|
|
670
670
|
n0,
|
|
671
671
|
_GAR,
|
|
@@ -676,10 +676,10 @@ var GetAttendeeRequest = [
|
|
|
676
676
|
[0, 1],
|
|
677
677
|
],
|
|
678
678
|
];
|
|
679
|
-
var GetAttendeeResponse = [3, n0, _GARe, 0, [_At], [[() => Attendee
|
|
680
|
-
var GetMeetingRequest = [3, n0, _GMR, 0, [_MI], [[0, 1]]];
|
|
681
|
-
var GetMeetingResponse = [3, n0, _GMRe, 0, [_Me], [[() => Meeting
|
|
682
|
-
var LimitExceededException = [
|
|
679
|
+
var GetAttendeeResponse$ = [3, n0, _GARe, 0, [_At], [[() => Attendee$, 0]]];
|
|
680
|
+
var GetMeetingRequest$ = [3, n0, _GMR, 0, [_MI], [[0, 1]]];
|
|
681
|
+
var GetMeetingResponse$ = [3, n0, _GMRe, 0, [_Me], [[() => Meeting$, 0]]];
|
|
682
|
+
var LimitExceededException$ = [
|
|
683
683
|
-3,
|
|
684
684
|
n0,
|
|
685
685
|
_LEE,
|
|
@@ -687,8 +687,8 @@ var LimitExceededException = [
|
|
|
687
687
|
[_Cod, _M, _RI],
|
|
688
688
|
[0, 0, 0],
|
|
689
689
|
];
|
|
690
|
-
schema.TypeRegistry.for(n0).registerError(LimitExceededException
|
|
691
|
-
var ListAttendeesRequest = [
|
|
690
|
+
schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
|
|
691
|
+
var ListAttendeesRequest$ = [
|
|
692
692
|
3,
|
|
693
693
|
n0,
|
|
694
694
|
_LAR,
|
|
@@ -700,10 +700,10 @@ var ListAttendeesRequest = [
|
|
|
700
700
|
[1, { [_hQ]: _mr }],
|
|
701
701
|
],
|
|
702
702
|
];
|
|
703
|
-
var ListAttendeesResponse = [3, n0, _LARi, 0, [_Att, _NT], [[() => AttendeeList, 0], 0]];
|
|
704
|
-
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RARN], [[0, { [_hQ]: _a }]]];
|
|
705
|
-
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_T], [() => TagList]];
|
|
706
|
-
var MediaPlacement = [
|
|
703
|
+
var ListAttendeesResponse$ = [3, n0, _LARi, 0, [_Att, _NT], [[() => AttendeeList, 0], 0]];
|
|
704
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_RARN], [[0, { [_hQ]: _a }]]];
|
|
705
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_T], [() => TagList]];
|
|
706
|
+
var MediaPlacement$ = [
|
|
707
707
|
3,
|
|
708
708
|
n0,
|
|
709
709
|
_MP,
|
|
@@ -711,7 +711,7 @@ var MediaPlacement = [
|
|
|
711
711
|
[_AHU, _AFU, _SU, _TCU, _SDU, _SVU, _SSU, _EIU],
|
|
712
712
|
[0, 0, 0, 0, 0, 0, 0, 0],
|
|
713
713
|
];
|
|
714
|
-
var Meeting = [
|
|
714
|
+
var Meeting$ = [
|
|
715
715
|
3,
|
|
716
716
|
n0,
|
|
717
717
|
_Me,
|
|
@@ -722,24 +722,24 @@ var Meeting = [
|
|
|
722
722
|
[() => ExternalUserId, 0],
|
|
723
723
|
[() => ExternalMeetingId, 0],
|
|
724
724
|
0,
|
|
725
|
-
() => MediaPlacement
|
|
726
|
-
() => MeetingFeaturesConfiguration
|
|
725
|
+
() => MediaPlacement$,
|
|
726
|
+
() => MeetingFeaturesConfiguration$,
|
|
727
727
|
0,
|
|
728
728
|
64 | 0,
|
|
729
729
|
0,
|
|
730
730
|
],
|
|
731
731
|
];
|
|
732
|
-
var MeetingFeaturesConfiguration = [
|
|
732
|
+
var MeetingFeaturesConfiguration$ = [
|
|
733
733
|
3,
|
|
734
734
|
n0,
|
|
735
735
|
_MFC,
|
|
736
736
|
0,
|
|
737
737
|
[_Au, _V, _Co, _At],
|
|
738
|
-
[() => AudioFeatures
|
|
738
|
+
[() => AudioFeatures$, () => VideoFeatures$, () => ContentFeatures$, () => AttendeeFeatures$],
|
|
739
739
|
];
|
|
740
|
-
var NotFoundException = [-3, n0, _NFE, { [_e]: _c, [_hE]: 404 }, [_Cod, _M, _RI], [0, 0, 0]];
|
|
741
|
-
schema.TypeRegistry.for(n0).registerError(NotFoundException
|
|
742
|
-
var NotificationsConfiguration = [
|
|
740
|
+
var NotFoundException$ = [-3, n0, _NFE, { [_e]: _c, [_hE]: 404 }, [_Cod, _M, _RI], [0, 0, 0]];
|
|
741
|
+
schema.TypeRegistry.for(n0).registerError(NotFoundException$, NotFoundException);
|
|
742
|
+
var NotificationsConfiguration$ = [
|
|
743
743
|
3,
|
|
744
744
|
n0,
|
|
745
745
|
_NC,
|
|
@@ -751,7 +751,7 @@ var NotificationsConfiguration = [
|
|
|
751
751
|
[() => Arn, 0],
|
|
752
752
|
],
|
|
753
753
|
];
|
|
754
|
-
var ResourceNotFoundException = [
|
|
754
|
+
var ResourceNotFoundException$ = [
|
|
755
755
|
-3,
|
|
756
756
|
n0,
|
|
757
757
|
_RNFE,
|
|
@@ -759,8 +759,8 @@ var ResourceNotFoundException = [
|
|
|
759
759
|
[_Cod, _M, _RI, _RN],
|
|
760
760
|
[0, 0, 0, 0],
|
|
761
761
|
];
|
|
762
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException
|
|
763
|
-
var ServiceFailureException = [
|
|
762
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
763
|
+
var ServiceFailureException$ = [
|
|
764
764
|
-3,
|
|
765
765
|
n0,
|
|
766
766
|
_SFE,
|
|
@@ -768,8 +768,8 @@ var ServiceFailureException = [
|
|
|
768
768
|
[_Cod, _M, _RI],
|
|
769
769
|
[0, 0, 0],
|
|
770
770
|
];
|
|
771
|
-
schema.TypeRegistry.for(n0).registerError(ServiceFailureException
|
|
772
|
-
var ServiceUnavailableException = [
|
|
771
|
+
schema.TypeRegistry.for(n0).registerError(ServiceFailureException$, ServiceFailureException);
|
|
772
|
+
var ServiceUnavailableException$ = [
|
|
773
773
|
-3,
|
|
774
774
|
n0,
|
|
775
775
|
_SUE,
|
|
@@ -777,22 +777,29 @@ var ServiceUnavailableException = [
|
|
|
777
777
|
[_Cod, _M, _RI, _RAS],
|
|
778
778
|
[0, 0, 0, [0, { [_hH]: _RA }]],
|
|
779
779
|
];
|
|
780
|
-
schema.TypeRegistry.for(n0).registerError(ServiceUnavailableException
|
|
781
|
-
var StartMeetingTranscriptionRequest = [
|
|
780
|
+
schema.TypeRegistry.for(n0).registerError(ServiceUnavailableException$, ServiceUnavailableException);
|
|
781
|
+
var StartMeetingTranscriptionRequest$ = [
|
|
782
782
|
3,
|
|
783
783
|
n0,
|
|
784
784
|
_SMTR,
|
|
785
785
|
0,
|
|
786
786
|
[_MI, _TC],
|
|
787
|
-
[[0, 1], () => TranscriptionConfiguration],
|
|
787
|
+
[[0, 1], () => TranscriptionConfiguration$],
|
|
788
788
|
];
|
|
789
|
-
var StopMeetingTranscriptionRequest = [3, n0, _SMTRt, 0, [_MI], [[0, 1]]];
|
|
790
|
-
var Tag = [3, n0, _Ta, 0, [_K, _Va], [0, 0]];
|
|
791
|
-
var TagResourceRequest = [3, n0, _TRR, 0, [_RARN, _T], [0, () => TagList]];
|
|
792
|
-
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
793
|
-
var ThrottlingException = [
|
|
794
|
-
|
|
795
|
-
|
|
789
|
+
var StopMeetingTranscriptionRequest$ = [3, n0, _SMTRt, 0, [_MI], [[0, 1]]];
|
|
790
|
+
var Tag$ = [3, n0, _Ta, 0, [_K, _Va], [0, 0]];
|
|
791
|
+
var TagResourceRequest$ = [3, n0, _TRR, 0, [_RARN, _T], [0, () => TagList]];
|
|
792
|
+
var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
|
|
793
|
+
var ThrottlingException$ = [
|
|
794
|
+
-3,
|
|
795
|
+
n0,
|
|
796
|
+
_TE,
|
|
797
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
798
|
+
[_Cod, _M, _RI],
|
|
799
|
+
[0, 0, 0],
|
|
800
|
+
];
|
|
801
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
802
|
+
var TooManyTagsException$ = [
|
|
796
803
|
-3,
|
|
797
804
|
n0,
|
|
798
805
|
_TMTE,
|
|
@@ -800,16 +807,16 @@ var TooManyTagsException = [
|
|
|
800
807
|
[_Cod, _M, _RI, _RN],
|
|
801
808
|
[0, 0, 0, 0],
|
|
802
809
|
];
|
|
803
|
-
schema.TypeRegistry.for(n0).registerError(TooManyTagsException
|
|
804
|
-
var TranscriptionConfiguration = [
|
|
810
|
+
schema.TypeRegistry.for(n0).registerError(TooManyTagsException$, TooManyTagsException);
|
|
811
|
+
var TranscriptionConfiguration$ = [
|
|
805
812
|
3,
|
|
806
813
|
n0,
|
|
807
814
|
_TC,
|
|
808
815
|
0,
|
|
809
816
|
[_ETS, _ETMS],
|
|
810
|
-
[() => EngineTranscribeSettings
|
|
817
|
+
[() => EngineTranscribeSettings$, () => EngineTranscribeMedicalSettings$],
|
|
811
818
|
];
|
|
812
|
-
var UnauthorizedException = [
|
|
819
|
+
var UnauthorizedException$ = [
|
|
813
820
|
-3,
|
|
814
821
|
n0,
|
|
815
822
|
_UE,
|
|
@@ -817,8 +824,8 @@ var UnauthorizedException = [
|
|
|
817
824
|
[_Cod, _M, _RI],
|
|
818
825
|
[0, 0, 0],
|
|
819
826
|
];
|
|
820
|
-
schema.TypeRegistry.for(n0).registerError(UnauthorizedException
|
|
821
|
-
var UnprocessableEntityException = [
|
|
827
|
+
schema.TypeRegistry.for(n0).registerError(UnauthorizedException$, UnauthorizedException);
|
|
828
|
+
var UnprocessableEntityException$ = [
|
|
822
829
|
-3,
|
|
823
830
|
n0,
|
|
824
831
|
_UEE,
|
|
@@ -826,21 +833,28 @@ var UnprocessableEntityException = [
|
|
|
826
833
|
[_Cod, _M, _RI],
|
|
827
834
|
[0, 0, 0],
|
|
828
835
|
];
|
|
829
|
-
schema.TypeRegistry.for(n0).registerError(UnprocessableEntityException
|
|
830
|
-
var UntagResourceRequest = [3, n0, _URR, 0, [_RARN, _TK], [0, 64 | 0]];
|
|
831
|
-
var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
832
|
-
var UpdateAttendeeCapabilitiesRequest = [
|
|
836
|
+
schema.TypeRegistry.for(n0).registerError(UnprocessableEntityException$, UnprocessableEntityException);
|
|
837
|
+
var UntagResourceRequest$ = [3, n0, _URR, 0, [_RARN, _TK], [0, 64 | 0]];
|
|
838
|
+
var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
|
|
839
|
+
var UpdateAttendeeCapabilitiesRequest$ = [
|
|
833
840
|
3,
|
|
834
841
|
n0,
|
|
835
842
|
_UACR,
|
|
836
843
|
0,
|
|
837
844
|
[_MI, _AI, _C],
|
|
838
|
-
[[0, 1], [0, 1], () => AttendeeCapabilities],
|
|
845
|
+
[[0, 1], [0, 1], () => AttendeeCapabilities$],
|
|
846
|
+
];
|
|
847
|
+
var UpdateAttendeeCapabilitiesResponse$ = [
|
|
848
|
+
3,
|
|
849
|
+
n0,
|
|
850
|
+
_UACRp,
|
|
851
|
+
0,
|
|
852
|
+
[_At],
|
|
853
|
+
[[() => Attendee$, 0]],
|
|
839
854
|
];
|
|
840
|
-
var
|
|
841
|
-
var VideoFeatures = [3, n0, _VF, 0, [_MR], [0]];
|
|
855
|
+
var VideoFeatures$ = [3, n0, _VF, 0, [_MR], [0]];
|
|
842
856
|
var __Unit = "unit";
|
|
843
|
-
var ChimeSDKMeetingsServiceException = [
|
|
857
|
+
var ChimeSDKMeetingsServiceException$ = [
|
|
844
858
|
-3,
|
|
845
859
|
_sm,
|
|
846
860
|
"ChimeSDKMeetingsServiceException",
|
|
@@ -848,146 +862,146 @@ var ChimeSDKMeetingsServiceException = [
|
|
|
848
862
|
[],
|
|
849
863
|
[],
|
|
850
864
|
];
|
|
851
|
-
schema.TypeRegistry.for(_sm).registerError(ChimeSDKMeetingsServiceException
|
|
852
|
-
var AttendeeIdsList = [1, n0, _AIL, 0, () => AttendeeIdItem];
|
|
853
|
-
var AttendeeList = [1, n0, _AL, 0, [() => Attendee
|
|
854
|
-
var BatchCreateAttendeeErrorList = [1, n0, _BCAEL, 0, [() => CreateAttendeeError
|
|
855
|
-
var CreateAttendeeRequestItemList = [1, n0, _CARIL, 0, [() => CreateAttendeeRequestItem
|
|
865
|
+
schema.TypeRegistry.for(_sm).registerError(ChimeSDKMeetingsServiceException$, ChimeSDKMeetingsServiceException);
|
|
866
|
+
var AttendeeIdsList = [1, n0, _AIL, 0, () => AttendeeIdItem$];
|
|
867
|
+
var AttendeeList = [1, n0, _AL, 0, [() => Attendee$, 0]];
|
|
868
|
+
var BatchCreateAttendeeErrorList = [1, n0, _BCAEL, 0, [() => CreateAttendeeError$, 0]];
|
|
869
|
+
var CreateAttendeeRequestItemList = [1, n0, _CARIL, 0, [() => CreateAttendeeRequestItem$, 0]];
|
|
856
870
|
var CreateMeetingWithAttendeesRequestItemList = [
|
|
857
871
|
1,
|
|
858
872
|
n0,
|
|
859
873
|
_CMWARIL,
|
|
860
874
|
0,
|
|
861
|
-
[() => CreateAttendeeRequestItem
|
|
875
|
+
[() => CreateAttendeeRequestItem$, 0],
|
|
862
876
|
];
|
|
863
|
-
var TagList = [1, n0, _TL, 0, () => Tag];
|
|
864
|
-
var BatchCreateAttendee = [
|
|
877
|
+
var TagList = [1, n0, _TL, 0, () => Tag$];
|
|
878
|
+
var BatchCreateAttendee$ = [
|
|
865
879
|
9,
|
|
866
880
|
n0,
|
|
867
881
|
_BCA,
|
|
868
882
|
{ [_h]: ["POST", "/meetings/{MeetingId}/attendees?operation=batch-create", 200] },
|
|
869
|
-
() => BatchCreateAttendeeRequest
|
|
870
|
-
() => BatchCreateAttendeeResponse
|
|
883
|
+
() => BatchCreateAttendeeRequest$,
|
|
884
|
+
() => BatchCreateAttendeeResponse$,
|
|
871
885
|
];
|
|
872
|
-
var BatchUpdateAttendeeCapabilitiesExcept = [
|
|
886
|
+
var BatchUpdateAttendeeCapabilitiesExcept$ = [
|
|
873
887
|
9,
|
|
874
888
|
n0,
|
|
875
889
|
_BUACE,
|
|
876
890
|
{ [_h]: ["PUT", "/meetings/{MeetingId}/attendees/capabilities?operation=batch-update-except", 200] },
|
|
877
|
-
() => BatchUpdateAttendeeCapabilitiesExceptRequest
|
|
891
|
+
() => BatchUpdateAttendeeCapabilitiesExceptRequest$,
|
|
878
892
|
() => __Unit,
|
|
879
893
|
];
|
|
880
|
-
var CreateAttendee = [
|
|
894
|
+
var CreateAttendee$ = [
|
|
881
895
|
9,
|
|
882
896
|
n0,
|
|
883
897
|
_CA,
|
|
884
898
|
{ [_h]: ["POST", "/meetings/{MeetingId}/attendees", 200] },
|
|
885
|
-
() => CreateAttendeeRequest
|
|
886
|
-
() => CreateAttendeeResponse
|
|
899
|
+
() => CreateAttendeeRequest$,
|
|
900
|
+
() => CreateAttendeeResponse$,
|
|
887
901
|
];
|
|
888
|
-
var CreateMeeting = [
|
|
902
|
+
var CreateMeeting$ = [
|
|
889
903
|
9,
|
|
890
904
|
n0,
|
|
891
905
|
_CM,
|
|
892
906
|
{ [_h]: ["POST", "/meetings", 200] },
|
|
893
|
-
() => CreateMeetingRequest
|
|
894
|
-
() => CreateMeetingResponse
|
|
907
|
+
() => CreateMeetingRequest$,
|
|
908
|
+
() => CreateMeetingResponse$,
|
|
895
909
|
];
|
|
896
|
-
var CreateMeetingWithAttendees = [
|
|
910
|
+
var CreateMeetingWithAttendees$ = [
|
|
897
911
|
9,
|
|
898
912
|
n0,
|
|
899
913
|
_CMWA,
|
|
900
914
|
{ [_h]: ["POST", "/meetings?operation=create-attendees", 200] },
|
|
901
|
-
() => CreateMeetingWithAttendeesRequest
|
|
902
|
-
() => CreateMeetingWithAttendeesResponse
|
|
915
|
+
() => CreateMeetingWithAttendeesRequest$,
|
|
916
|
+
() => CreateMeetingWithAttendeesResponse$,
|
|
903
917
|
];
|
|
904
|
-
var DeleteAttendee = [
|
|
918
|
+
var DeleteAttendee$ = [
|
|
905
919
|
9,
|
|
906
920
|
n0,
|
|
907
921
|
_DA,
|
|
908
922
|
{ [_h]: ["DELETE", "/meetings/{MeetingId}/attendees/{AttendeeId}", 204] },
|
|
909
|
-
() => DeleteAttendeeRequest
|
|
923
|
+
() => DeleteAttendeeRequest$,
|
|
910
924
|
() => __Unit,
|
|
911
925
|
];
|
|
912
|
-
var DeleteMeeting = [
|
|
926
|
+
var DeleteMeeting$ = [
|
|
913
927
|
9,
|
|
914
928
|
n0,
|
|
915
929
|
_DM,
|
|
916
930
|
{ [_h]: ["DELETE", "/meetings/{MeetingId}", 204] },
|
|
917
|
-
() => DeleteMeetingRequest
|
|
931
|
+
() => DeleteMeetingRequest$,
|
|
918
932
|
() => __Unit,
|
|
919
933
|
];
|
|
920
|
-
var GetAttendee = [
|
|
934
|
+
var GetAttendee$ = [
|
|
921
935
|
9,
|
|
922
936
|
n0,
|
|
923
937
|
_GA,
|
|
924
938
|
{ [_h]: ["GET", "/meetings/{MeetingId}/attendees/{AttendeeId}", 200] },
|
|
925
|
-
() => GetAttendeeRequest
|
|
926
|
-
() => GetAttendeeResponse
|
|
939
|
+
() => GetAttendeeRequest$,
|
|
940
|
+
() => GetAttendeeResponse$,
|
|
927
941
|
];
|
|
928
|
-
var GetMeeting = [
|
|
942
|
+
var GetMeeting$ = [
|
|
929
943
|
9,
|
|
930
944
|
n0,
|
|
931
945
|
_GM,
|
|
932
946
|
{ [_h]: ["GET", "/meetings/{MeetingId}", 200] },
|
|
933
|
-
() => GetMeetingRequest
|
|
934
|
-
() => GetMeetingResponse
|
|
947
|
+
() => GetMeetingRequest$,
|
|
948
|
+
() => GetMeetingResponse$,
|
|
935
949
|
];
|
|
936
|
-
var ListAttendees = [
|
|
950
|
+
var ListAttendees$ = [
|
|
937
951
|
9,
|
|
938
952
|
n0,
|
|
939
953
|
_LA,
|
|
940
954
|
{ [_h]: ["GET", "/meetings/{MeetingId}/attendees", 200] },
|
|
941
|
-
() => ListAttendeesRequest
|
|
942
|
-
() => ListAttendeesResponse
|
|
955
|
+
() => ListAttendeesRequest$,
|
|
956
|
+
() => ListAttendeesResponse$,
|
|
943
957
|
];
|
|
944
|
-
var ListTagsForResource = [
|
|
958
|
+
var ListTagsForResource$ = [
|
|
945
959
|
9,
|
|
946
960
|
n0,
|
|
947
961
|
_LTFR,
|
|
948
962
|
{ [_h]: ["GET", "/tags", 200] },
|
|
949
|
-
() => ListTagsForResourceRequest
|
|
950
|
-
() => ListTagsForResourceResponse
|
|
963
|
+
() => ListTagsForResourceRequest$,
|
|
964
|
+
() => ListTagsForResourceResponse$,
|
|
951
965
|
];
|
|
952
|
-
var StartMeetingTranscription = [
|
|
966
|
+
var StartMeetingTranscription$ = [
|
|
953
967
|
9,
|
|
954
968
|
n0,
|
|
955
969
|
_SMT,
|
|
956
970
|
{ [_h]: ["POST", "/meetings/{MeetingId}/transcription?operation=start", 200] },
|
|
957
|
-
() => StartMeetingTranscriptionRequest
|
|
971
|
+
() => StartMeetingTranscriptionRequest$,
|
|
958
972
|
() => __Unit,
|
|
959
973
|
];
|
|
960
|
-
var StopMeetingTranscription = [
|
|
974
|
+
var StopMeetingTranscription$ = [
|
|
961
975
|
9,
|
|
962
976
|
n0,
|
|
963
977
|
_SMTt,
|
|
964
978
|
{ [_h]: ["POST", "/meetings/{MeetingId}/transcription?operation=stop", 200] },
|
|
965
|
-
() => StopMeetingTranscriptionRequest
|
|
979
|
+
() => StopMeetingTranscriptionRequest$,
|
|
966
980
|
() => __Unit,
|
|
967
981
|
];
|
|
968
|
-
var TagResource = [
|
|
982
|
+
var TagResource$ = [
|
|
969
983
|
9,
|
|
970
984
|
n0,
|
|
971
985
|
_TR,
|
|
972
986
|
{ [_h]: ["POST", "/tags?operation=tag-resource", 204] },
|
|
973
|
-
() => TagResourceRequest
|
|
974
|
-
() => TagResourceResponse
|
|
987
|
+
() => TagResourceRequest$,
|
|
988
|
+
() => TagResourceResponse$,
|
|
975
989
|
];
|
|
976
|
-
var UntagResource = [
|
|
990
|
+
var UntagResource$ = [
|
|
977
991
|
9,
|
|
978
992
|
n0,
|
|
979
993
|
_UR,
|
|
980
994
|
{ [_h]: ["POST", "/tags?operation=untag-resource", 204] },
|
|
981
|
-
() => UntagResourceRequest
|
|
982
|
-
() => UntagResourceResponse
|
|
995
|
+
() => UntagResourceRequest$,
|
|
996
|
+
() => UntagResourceResponse$,
|
|
983
997
|
];
|
|
984
|
-
var UpdateAttendeeCapabilities = [
|
|
998
|
+
var UpdateAttendeeCapabilities$ = [
|
|
985
999
|
9,
|
|
986
1000
|
n0,
|
|
987
1001
|
_UAC,
|
|
988
1002
|
{ [_h]: ["PUT", "/meetings/{MeetingId}/attendees/{AttendeeId}/capabilities", 200] },
|
|
989
|
-
() => UpdateAttendeeCapabilitiesRequest
|
|
990
|
-
() => UpdateAttendeeCapabilitiesResponse
|
|
1003
|
+
() => UpdateAttendeeCapabilitiesRequest$,
|
|
1004
|
+
() => UpdateAttendeeCapabilitiesResponse$,
|
|
991
1005
|
];
|
|
992
1006
|
|
|
993
1007
|
class BatchCreateAttendeeCommand extends smithyClient.Command
|
|
@@ -998,7 +1012,7 @@ class BatchCreateAttendeeCommand extends smithyClient.Command
|
|
|
998
1012
|
})
|
|
999
1013
|
.s("ChimeMeetingsSDKService", "BatchCreateAttendee", {})
|
|
1000
1014
|
.n("ChimeSDKMeetingsClient", "BatchCreateAttendeeCommand")
|
|
1001
|
-
.sc(BatchCreateAttendee)
|
|
1015
|
+
.sc(BatchCreateAttendee$)
|
|
1002
1016
|
.build() {
|
|
1003
1017
|
}
|
|
1004
1018
|
|
|
@@ -1010,7 +1024,7 @@ class BatchUpdateAttendeeCapabilitiesExceptCommand extends smithyClient.Command
|
|
|
1010
1024
|
})
|
|
1011
1025
|
.s("ChimeMeetingsSDKService", "BatchUpdateAttendeeCapabilitiesExcept", {})
|
|
1012
1026
|
.n("ChimeSDKMeetingsClient", "BatchUpdateAttendeeCapabilitiesExceptCommand")
|
|
1013
|
-
.sc(BatchUpdateAttendeeCapabilitiesExcept)
|
|
1027
|
+
.sc(BatchUpdateAttendeeCapabilitiesExcept$)
|
|
1014
1028
|
.build() {
|
|
1015
1029
|
}
|
|
1016
1030
|
|
|
@@ -1022,7 +1036,7 @@ class CreateAttendeeCommand extends smithyClient.Command
|
|
|
1022
1036
|
})
|
|
1023
1037
|
.s("ChimeMeetingsSDKService", "CreateAttendee", {})
|
|
1024
1038
|
.n("ChimeSDKMeetingsClient", "CreateAttendeeCommand")
|
|
1025
|
-
.sc(CreateAttendee)
|
|
1039
|
+
.sc(CreateAttendee$)
|
|
1026
1040
|
.build() {
|
|
1027
1041
|
}
|
|
1028
1042
|
|
|
@@ -1034,7 +1048,7 @@ class CreateMeetingCommand extends smithyClient.Command
|
|
|
1034
1048
|
})
|
|
1035
1049
|
.s("ChimeMeetingsSDKService", "CreateMeeting", {})
|
|
1036
1050
|
.n("ChimeSDKMeetingsClient", "CreateMeetingCommand")
|
|
1037
|
-
.sc(CreateMeeting)
|
|
1051
|
+
.sc(CreateMeeting$)
|
|
1038
1052
|
.build() {
|
|
1039
1053
|
}
|
|
1040
1054
|
|
|
@@ -1046,7 +1060,7 @@ class CreateMeetingWithAttendeesCommand extends smithyClient.Command
|
|
|
1046
1060
|
})
|
|
1047
1061
|
.s("ChimeMeetingsSDKService", "CreateMeetingWithAttendees", {})
|
|
1048
1062
|
.n("ChimeSDKMeetingsClient", "CreateMeetingWithAttendeesCommand")
|
|
1049
|
-
.sc(CreateMeetingWithAttendees)
|
|
1063
|
+
.sc(CreateMeetingWithAttendees$)
|
|
1050
1064
|
.build() {
|
|
1051
1065
|
}
|
|
1052
1066
|
|
|
@@ -1058,7 +1072,7 @@ class DeleteAttendeeCommand extends smithyClient.Command
|
|
|
1058
1072
|
})
|
|
1059
1073
|
.s("ChimeMeetingsSDKService", "DeleteAttendee", {})
|
|
1060
1074
|
.n("ChimeSDKMeetingsClient", "DeleteAttendeeCommand")
|
|
1061
|
-
.sc(DeleteAttendee)
|
|
1075
|
+
.sc(DeleteAttendee$)
|
|
1062
1076
|
.build() {
|
|
1063
1077
|
}
|
|
1064
1078
|
|
|
@@ -1070,7 +1084,7 @@ class DeleteMeetingCommand extends smithyClient.Command
|
|
|
1070
1084
|
})
|
|
1071
1085
|
.s("ChimeMeetingsSDKService", "DeleteMeeting", {})
|
|
1072
1086
|
.n("ChimeSDKMeetingsClient", "DeleteMeetingCommand")
|
|
1073
|
-
.sc(DeleteMeeting)
|
|
1087
|
+
.sc(DeleteMeeting$)
|
|
1074
1088
|
.build() {
|
|
1075
1089
|
}
|
|
1076
1090
|
|
|
@@ -1082,7 +1096,7 @@ class GetAttendeeCommand extends smithyClient.Command
|
|
|
1082
1096
|
})
|
|
1083
1097
|
.s("ChimeMeetingsSDKService", "GetAttendee", {})
|
|
1084
1098
|
.n("ChimeSDKMeetingsClient", "GetAttendeeCommand")
|
|
1085
|
-
.sc(GetAttendee)
|
|
1099
|
+
.sc(GetAttendee$)
|
|
1086
1100
|
.build() {
|
|
1087
1101
|
}
|
|
1088
1102
|
|
|
@@ -1094,7 +1108,7 @@ class GetMeetingCommand extends smithyClient.Command
|
|
|
1094
1108
|
})
|
|
1095
1109
|
.s("ChimeMeetingsSDKService", "GetMeeting", {})
|
|
1096
1110
|
.n("ChimeSDKMeetingsClient", "GetMeetingCommand")
|
|
1097
|
-
.sc(GetMeeting)
|
|
1111
|
+
.sc(GetMeeting$)
|
|
1098
1112
|
.build() {
|
|
1099
1113
|
}
|
|
1100
1114
|
|
|
@@ -1106,7 +1120,7 @@ class ListAttendeesCommand extends smithyClient.Command
|
|
|
1106
1120
|
})
|
|
1107
1121
|
.s("ChimeMeetingsSDKService", "ListAttendees", {})
|
|
1108
1122
|
.n("ChimeSDKMeetingsClient", "ListAttendeesCommand")
|
|
1109
|
-
.sc(ListAttendees)
|
|
1123
|
+
.sc(ListAttendees$)
|
|
1110
1124
|
.build() {
|
|
1111
1125
|
}
|
|
1112
1126
|
|
|
@@ -1118,7 +1132,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1118
1132
|
})
|
|
1119
1133
|
.s("ChimeMeetingsSDKService", "ListTagsForResource", {})
|
|
1120
1134
|
.n("ChimeSDKMeetingsClient", "ListTagsForResourceCommand")
|
|
1121
|
-
.sc(ListTagsForResource)
|
|
1135
|
+
.sc(ListTagsForResource$)
|
|
1122
1136
|
.build() {
|
|
1123
1137
|
}
|
|
1124
1138
|
|
|
@@ -1130,7 +1144,7 @@ class StartMeetingTranscriptionCommand extends smithyClient.Command
|
|
|
1130
1144
|
})
|
|
1131
1145
|
.s("ChimeMeetingsSDKService", "StartMeetingTranscription", {})
|
|
1132
1146
|
.n("ChimeSDKMeetingsClient", "StartMeetingTranscriptionCommand")
|
|
1133
|
-
.sc(StartMeetingTranscription)
|
|
1147
|
+
.sc(StartMeetingTranscription$)
|
|
1134
1148
|
.build() {
|
|
1135
1149
|
}
|
|
1136
1150
|
|
|
@@ -1142,7 +1156,7 @@ class StopMeetingTranscriptionCommand extends smithyClient.Command
|
|
|
1142
1156
|
})
|
|
1143
1157
|
.s("ChimeMeetingsSDKService", "StopMeetingTranscription", {})
|
|
1144
1158
|
.n("ChimeSDKMeetingsClient", "StopMeetingTranscriptionCommand")
|
|
1145
|
-
.sc(StopMeetingTranscription)
|
|
1159
|
+
.sc(StopMeetingTranscription$)
|
|
1146
1160
|
.build() {
|
|
1147
1161
|
}
|
|
1148
1162
|
|
|
@@ -1154,7 +1168,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1154
1168
|
})
|
|
1155
1169
|
.s("ChimeMeetingsSDKService", "TagResource", {})
|
|
1156
1170
|
.n("ChimeSDKMeetingsClient", "TagResourceCommand")
|
|
1157
|
-
.sc(TagResource)
|
|
1171
|
+
.sc(TagResource$)
|
|
1158
1172
|
.build() {
|
|
1159
1173
|
}
|
|
1160
1174
|
|
|
@@ -1166,7 +1180,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1166
1180
|
})
|
|
1167
1181
|
.s("ChimeMeetingsSDKService", "UntagResource", {})
|
|
1168
1182
|
.n("ChimeSDKMeetingsClient", "UntagResourceCommand")
|
|
1169
|
-
.sc(UntagResource)
|
|
1183
|
+
.sc(UntagResource$)
|
|
1170
1184
|
.build() {
|
|
1171
1185
|
}
|
|
1172
1186
|
|
|
@@ -1178,7 +1192,7 @@ class UpdateAttendeeCapabilitiesCommand extends smithyClient.Command
|
|
|
1178
1192
|
})
|
|
1179
1193
|
.s("ChimeMeetingsSDKService", "UpdateAttendeeCapabilities", {})
|
|
1180
1194
|
.n("ChimeSDKMeetingsClient", "UpdateAttendeeCapabilitiesCommand")
|
|
1181
|
-
.sc(UpdateAttendeeCapabilities)
|
|
1195
|
+
.sc(UpdateAttendeeCapabilities$)
|
|
1182
1196
|
.build() {
|
|
1183
1197
|
}
|
|
1184
1198
|
|
|
@@ -1313,37 +1327,100 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1313
1327
|
enumerable: true,
|
|
1314
1328
|
get: function () { return smithyClient.Client; }
|
|
1315
1329
|
});
|
|
1316
|
-
exports.
|
|
1330
|
+
exports.Attendee$ = Attendee$;
|
|
1331
|
+
exports.AttendeeCapabilities$ = AttendeeCapabilities$;
|
|
1332
|
+
exports.AttendeeFeatures$ = AttendeeFeatures$;
|
|
1333
|
+
exports.AttendeeIdItem$ = AttendeeIdItem$;
|
|
1334
|
+
exports.AudioFeatures$ = AudioFeatures$;
|
|
1335
|
+
exports.BadRequestException = BadRequestException;
|
|
1336
|
+
exports.BadRequestException$ = BadRequestException$;
|
|
1337
|
+
exports.BatchCreateAttendee$ = BatchCreateAttendee$;
|
|
1317
1338
|
exports.BatchCreateAttendeeCommand = BatchCreateAttendeeCommand;
|
|
1339
|
+
exports.BatchCreateAttendeeRequest$ = BatchCreateAttendeeRequest$;
|
|
1340
|
+
exports.BatchCreateAttendeeResponse$ = BatchCreateAttendeeResponse$;
|
|
1341
|
+
exports.BatchUpdateAttendeeCapabilitiesExcept$ = BatchUpdateAttendeeCapabilitiesExcept$;
|
|
1318
1342
|
exports.BatchUpdateAttendeeCapabilitiesExceptCommand = BatchUpdateAttendeeCapabilitiesExceptCommand;
|
|
1343
|
+
exports.BatchUpdateAttendeeCapabilitiesExceptRequest$ = BatchUpdateAttendeeCapabilitiesExceptRequest$;
|
|
1319
1344
|
exports.ChimeSDKMeetings = ChimeSDKMeetings;
|
|
1320
1345
|
exports.ChimeSDKMeetingsClient = ChimeSDKMeetingsClient;
|
|
1321
|
-
exports.ChimeSDKMeetingsServiceException = ChimeSDKMeetingsServiceException
|
|
1322
|
-
exports.
|
|
1346
|
+
exports.ChimeSDKMeetingsServiceException = ChimeSDKMeetingsServiceException;
|
|
1347
|
+
exports.ChimeSDKMeetingsServiceException$ = ChimeSDKMeetingsServiceException$;
|
|
1348
|
+
exports.ConflictException = ConflictException;
|
|
1349
|
+
exports.ConflictException$ = ConflictException$;
|
|
1350
|
+
exports.ContentFeatures$ = ContentFeatures$;
|
|
1323
1351
|
exports.ContentResolution = ContentResolution;
|
|
1352
|
+
exports.CreateAttendee$ = CreateAttendee$;
|
|
1324
1353
|
exports.CreateAttendeeCommand = CreateAttendeeCommand;
|
|
1354
|
+
exports.CreateAttendeeError$ = CreateAttendeeError$;
|
|
1355
|
+
exports.CreateAttendeeRequest$ = CreateAttendeeRequest$;
|
|
1356
|
+
exports.CreateAttendeeRequestItem$ = CreateAttendeeRequestItem$;
|
|
1357
|
+
exports.CreateAttendeeResponse$ = CreateAttendeeResponse$;
|
|
1358
|
+
exports.CreateMeeting$ = CreateMeeting$;
|
|
1325
1359
|
exports.CreateMeetingCommand = CreateMeetingCommand;
|
|
1360
|
+
exports.CreateMeetingRequest$ = CreateMeetingRequest$;
|
|
1361
|
+
exports.CreateMeetingResponse$ = CreateMeetingResponse$;
|
|
1362
|
+
exports.CreateMeetingWithAttendees$ = CreateMeetingWithAttendees$;
|
|
1326
1363
|
exports.CreateMeetingWithAttendeesCommand = CreateMeetingWithAttendeesCommand;
|
|
1364
|
+
exports.CreateMeetingWithAttendeesRequest$ = CreateMeetingWithAttendeesRequest$;
|
|
1365
|
+
exports.CreateMeetingWithAttendeesResponse$ = CreateMeetingWithAttendeesResponse$;
|
|
1366
|
+
exports.DeleteAttendee$ = DeleteAttendee$;
|
|
1327
1367
|
exports.DeleteAttendeeCommand = DeleteAttendeeCommand;
|
|
1368
|
+
exports.DeleteAttendeeRequest$ = DeleteAttendeeRequest$;
|
|
1369
|
+
exports.DeleteMeeting$ = DeleteMeeting$;
|
|
1328
1370
|
exports.DeleteMeetingCommand = DeleteMeetingCommand;
|
|
1329
|
-
exports.
|
|
1371
|
+
exports.DeleteMeetingRequest$ = DeleteMeetingRequest$;
|
|
1372
|
+
exports.EngineTranscribeMedicalSettings$ = EngineTranscribeMedicalSettings$;
|
|
1373
|
+
exports.EngineTranscribeSettings$ = EngineTranscribeSettings$;
|
|
1374
|
+
exports.ForbiddenException = ForbiddenException;
|
|
1375
|
+
exports.ForbiddenException$ = ForbiddenException$;
|
|
1376
|
+
exports.GetAttendee$ = GetAttendee$;
|
|
1330
1377
|
exports.GetAttendeeCommand = GetAttendeeCommand;
|
|
1378
|
+
exports.GetAttendeeRequest$ = GetAttendeeRequest$;
|
|
1379
|
+
exports.GetAttendeeResponse$ = GetAttendeeResponse$;
|
|
1380
|
+
exports.GetMeeting$ = GetMeeting$;
|
|
1331
1381
|
exports.GetMeetingCommand = GetMeetingCommand;
|
|
1332
|
-
exports.
|
|
1382
|
+
exports.GetMeetingRequest$ = GetMeetingRequest$;
|
|
1383
|
+
exports.GetMeetingResponse$ = GetMeetingResponse$;
|
|
1384
|
+
exports.LimitExceededException = LimitExceededException;
|
|
1385
|
+
exports.LimitExceededException$ = LimitExceededException$;
|
|
1386
|
+
exports.ListAttendees$ = ListAttendees$;
|
|
1333
1387
|
exports.ListAttendeesCommand = ListAttendeesCommand;
|
|
1388
|
+
exports.ListAttendeesRequest$ = ListAttendeesRequest$;
|
|
1389
|
+
exports.ListAttendeesResponse$ = ListAttendeesResponse$;
|
|
1390
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1334
1391
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1392
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1393
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1335
1394
|
exports.MediaCapabilities = MediaCapabilities;
|
|
1395
|
+
exports.MediaPlacement$ = MediaPlacement$;
|
|
1336
1396
|
exports.MediaPlacementNetworkType = MediaPlacementNetworkType;
|
|
1397
|
+
exports.Meeting$ = Meeting$;
|
|
1337
1398
|
exports.MeetingFeatureStatus = MeetingFeatureStatus;
|
|
1338
|
-
exports.
|
|
1339
|
-
exports.
|
|
1340
|
-
exports.
|
|
1341
|
-
exports.
|
|
1399
|
+
exports.MeetingFeaturesConfiguration$ = MeetingFeaturesConfiguration$;
|
|
1400
|
+
exports.NotFoundException = NotFoundException;
|
|
1401
|
+
exports.NotFoundException$ = NotFoundException$;
|
|
1402
|
+
exports.NotificationsConfiguration$ = NotificationsConfiguration$;
|
|
1403
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1404
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1405
|
+
exports.ServiceFailureException = ServiceFailureException;
|
|
1406
|
+
exports.ServiceFailureException$ = ServiceFailureException$;
|
|
1407
|
+
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
1408
|
+
exports.ServiceUnavailableException$ = ServiceUnavailableException$;
|
|
1409
|
+
exports.StartMeetingTranscription$ = StartMeetingTranscription$;
|
|
1342
1410
|
exports.StartMeetingTranscriptionCommand = StartMeetingTranscriptionCommand;
|
|
1411
|
+
exports.StartMeetingTranscriptionRequest$ = StartMeetingTranscriptionRequest$;
|
|
1412
|
+
exports.StopMeetingTranscription$ = StopMeetingTranscription$;
|
|
1343
1413
|
exports.StopMeetingTranscriptionCommand = StopMeetingTranscriptionCommand;
|
|
1414
|
+
exports.StopMeetingTranscriptionRequest$ = StopMeetingTranscriptionRequest$;
|
|
1415
|
+
exports.Tag$ = Tag$;
|
|
1416
|
+
exports.TagResource$ = TagResource$;
|
|
1344
1417
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1345
|
-
exports.
|
|
1346
|
-
exports.
|
|
1418
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1419
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1420
|
+
exports.ThrottlingException = ThrottlingException;
|
|
1421
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
1422
|
+
exports.TooManyTagsException = TooManyTagsException;
|
|
1423
|
+
exports.TooManyTagsException$ = TooManyTagsException$;
|
|
1347
1424
|
exports.TranscribeContentIdentificationType = TranscribeContentIdentificationType;
|
|
1348
1425
|
exports.TranscribeContentRedactionType = TranscribeContentRedactionType;
|
|
1349
1426
|
exports.TranscribeLanguageCode = TranscribeLanguageCode;
|
|
@@ -1355,9 +1432,19 @@ exports.TranscribeMedicalType = TranscribeMedicalType;
|
|
|
1355
1432
|
exports.TranscribePartialResultsStability = TranscribePartialResultsStability;
|
|
1356
1433
|
exports.TranscribeRegion = TranscribeRegion;
|
|
1357
1434
|
exports.TranscribeVocabularyFilterMethod = TranscribeVocabularyFilterMethod;
|
|
1358
|
-
exports.
|
|
1359
|
-
exports.
|
|
1435
|
+
exports.TranscriptionConfiguration$ = TranscriptionConfiguration$;
|
|
1436
|
+
exports.UnauthorizedException = UnauthorizedException;
|
|
1437
|
+
exports.UnauthorizedException$ = UnauthorizedException$;
|
|
1438
|
+
exports.UnprocessableEntityException = UnprocessableEntityException;
|
|
1439
|
+
exports.UnprocessableEntityException$ = UnprocessableEntityException$;
|
|
1440
|
+
exports.UntagResource$ = UntagResource$;
|
|
1360
1441
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1442
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1443
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1444
|
+
exports.UpdateAttendeeCapabilities$ = UpdateAttendeeCapabilities$;
|
|
1361
1445
|
exports.UpdateAttendeeCapabilitiesCommand = UpdateAttendeeCapabilitiesCommand;
|
|
1446
|
+
exports.UpdateAttendeeCapabilitiesRequest$ = UpdateAttendeeCapabilitiesRequest$;
|
|
1447
|
+
exports.UpdateAttendeeCapabilitiesResponse$ = UpdateAttendeeCapabilitiesResponse$;
|
|
1448
|
+
exports.VideoFeatures$ = VideoFeatures$;
|
|
1362
1449
|
exports.VideoResolution = VideoResolution;
|
|
1363
1450
|
exports.paginateListAttendees = paginateListAttendees;
|