@aws-sdk/client-chime-sdk-meetings 3.183.0 → 3.185.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/CHANGELOG.md +11 -0
- package/dist-cjs/protocols/Aws_restJson1.js +2 -2
- package/dist-es/ChimeSDKMeetings.js +73 -66
- package/dist-es/ChimeSDKMeetingsClient.js +28 -22
- package/dist-es/commands/BatchCreateAttendeeCommand.js +28 -21
- package/dist-es/commands/BatchUpdateAttendeeCapabilitiesExceptCommand.js +29 -22
- package/dist-es/commands/CreateAttendeeCommand.js +28 -21
- package/dist-es/commands/CreateMeetingCommand.js +28 -21
- package/dist-es/commands/CreateMeetingWithAttendeesCommand.js +28 -21
- package/dist-es/commands/DeleteAttendeeCommand.js +29 -22
- package/dist-es/commands/DeleteMeetingCommand.js +29 -22
- package/dist-es/commands/GetAttendeeCommand.js +28 -21
- package/dist-es/commands/GetMeetingCommand.js +28 -21
- package/dist-es/commands/ListAttendeesCommand.js +28 -21
- package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
- package/dist-es/commands/StartMeetingTranscriptionCommand.js +29 -22
- package/dist-es/commands/StopMeetingTranscriptionCommand.js +29 -22
- package/dist-es/commands/TagResourceCommand.js +28 -21
- package/dist-es/commands/UntagResourceCommand.js +28 -21
- package/dist-es/commands/UpdateAttendeeCapabilitiesCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/ChimeSDKMeetingsServiceException.js +10 -5
- package/dist-es/models/models_0.js +217 -329
- package/dist-es/pagination/ListAttendeesPaginator.js +68 -25
- package/dist-es/protocols/Aws_restJson1.js +1956 -1483
- package/dist-es/runtimeConfig.browser.js +12 -26
- package/dist-es/runtimeConfig.js +12 -30
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- package/package.json +5 -5
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { ChimeSDKMeetingsServiceException as __BaseException } from "./ChimeSDKMeetingsServiceException";
|
|
3
4
|
export var MediaCapabilities;
|
|
@@ -12,173 +13,173 @@ export var MeetingFeatureStatus;
|
|
|
12
13
|
MeetingFeatureStatus["AVAILABLE"] = "AVAILABLE";
|
|
13
14
|
MeetingFeatureStatus["UNAVAILABLE"] = "UNAVAILABLE";
|
|
14
15
|
})(MeetingFeatureStatus || (MeetingFeatureStatus = {}));
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
this.Message = opts.Message;
|
|
27
|
-
this.RequestId = opts.RequestId;
|
|
16
|
+
var BadRequestException = (function (_super) {
|
|
17
|
+
__extends(BadRequestException, _super);
|
|
18
|
+
function BadRequestException(opts) {
|
|
19
|
+
var _this = _super.call(this, __assign({ name: "BadRequestException", $fault: "client" }, opts)) || this;
|
|
20
|
+
_this.name = "BadRequestException";
|
|
21
|
+
_this.$fault = "client";
|
|
22
|
+
Object.setPrototypeOf(_this, BadRequestException.prototype);
|
|
23
|
+
_this.Code = opts.Code;
|
|
24
|
+
_this.Message = opts.Message;
|
|
25
|
+
_this.RequestId = opts.RequestId;
|
|
26
|
+
return _this;
|
|
28
27
|
}
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
28
|
+
return BadRequestException;
|
|
29
|
+
}(__BaseException));
|
|
30
|
+
export { BadRequestException };
|
|
31
|
+
var ForbiddenException = (function (_super) {
|
|
32
|
+
__extends(ForbiddenException, _super);
|
|
33
|
+
function ForbiddenException(opts) {
|
|
34
|
+
var _this = _super.call(this, __assign({ name: "ForbiddenException", $fault: "client" }, opts)) || this;
|
|
35
|
+
_this.name = "ForbiddenException";
|
|
36
|
+
_this.$fault = "client";
|
|
37
|
+
Object.setPrototypeOf(_this, ForbiddenException.prototype);
|
|
38
|
+
_this.Code = opts.Code;
|
|
39
|
+
_this.Message = opts.Message;
|
|
40
|
+
_this.RequestId = opts.RequestId;
|
|
41
|
+
return _this;
|
|
43
42
|
}
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
43
|
+
return ForbiddenException;
|
|
44
|
+
}(__BaseException));
|
|
45
|
+
export { ForbiddenException };
|
|
46
|
+
var LimitExceededException = (function (_super) {
|
|
47
|
+
__extends(LimitExceededException, _super);
|
|
48
|
+
function LimitExceededException(opts) {
|
|
49
|
+
var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
|
|
50
|
+
_this.name = "LimitExceededException";
|
|
51
|
+
_this.$fault = "client";
|
|
52
|
+
Object.setPrototypeOf(_this, LimitExceededException.prototype);
|
|
53
|
+
_this.Code = opts.Code;
|
|
54
|
+
_this.Message = opts.Message;
|
|
55
|
+
_this.RequestId = opts.RequestId;
|
|
56
|
+
return _this;
|
|
58
57
|
}
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
58
|
+
return LimitExceededException;
|
|
59
|
+
}(__BaseException));
|
|
60
|
+
export { LimitExceededException };
|
|
61
|
+
var NotFoundException = (function (_super) {
|
|
62
|
+
__extends(NotFoundException, _super);
|
|
63
|
+
function NotFoundException(opts) {
|
|
64
|
+
var _this = _super.call(this, __assign({ name: "NotFoundException", $fault: "client" }, opts)) || this;
|
|
65
|
+
_this.name = "NotFoundException";
|
|
66
|
+
_this.$fault = "client";
|
|
67
|
+
Object.setPrototypeOf(_this, NotFoundException.prototype);
|
|
68
|
+
_this.Code = opts.Code;
|
|
69
|
+
_this.Message = opts.Message;
|
|
70
|
+
_this.RequestId = opts.RequestId;
|
|
71
|
+
return _this;
|
|
73
72
|
}
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
73
|
+
return NotFoundException;
|
|
74
|
+
}(__BaseException));
|
|
75
|
+
export { NotFoundException };
|
|
76
|
+
var ServiceFailureException = (function (_super) {
|
|
77
|
+
__extends(ServiceFailureException, _super);
|
|
78
|
+
function ServiceFailureException(opts) {
|
|
79
|
+
var _this = _super.call(this, __assign({ name: "ServiceFailureException", $fault: "server" }, opts)) || this;
|
|
80
|
+
_this.name = "ServiceFailureException";
|
|
81
|
+
_this.$fault = "server";
|
|
82
|
+
Object.setPrototypeOf(_this, ServiceFailureException.prototype);
|
|
83
|
+
_this.Code = opts.Code;
|
|
84
|
+
_this.Message = opts.Message;
|
|
85
|
+
_this.RequestId = opts.RequestId;
|
|
86
|
+
return _this;
|
|
88
87
|
}
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
88
|
+
return ServiceFailureException;
|
|
89
|
+
}(__BaseException));
|
|
90
|
+
export { ServiceFailureException };
|
|
91
|
+
var ServiceUnavailableException = (function (_super) {
|
|
92
|
+
__extends(ServiceUnavailableException, _super);
|
|
93
|
+
function ServiceUnavailableException(opts) {
|
|
94
|
+
var _this = _super.call(this, __assign({ name: "ServiceUnavailableException", $fault: "server" }, opts)) || this;
|
|
95
|
+
_this.name = "ServiceUnavailableException";
|
|
96
|
+
_this.$fault = "server";
|
|
97
|
+
Object.setPrototypeOf(_this, ServiceUnavailableException.prototype);
|
|
98
|
+
_this.Code = opts.Code;
|
|
99
|
+
_this.Message = opts.Message;
|
|
100
|
+
_this.RequestId = opts.RequestId;
|
|
101
|
+
_this.RetryAfterSeconds = opts.RetryAfterSeconds;
|
|
102
|
+
return _this;
|
|
104
103
|
}
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
104
|
+
return ServiceUnavailableException;
|
|
105
|
+
}(__BaseException));
|
|
106
|
+
export { ServiceUnavailableException };
|
|
107
|
+
var ThrottlingException = (function (_super) {
|
|
108
|
+
__extends(ThrottlingException, _super);
|
|
109
|
+
function ThrottlingException(opts) {
|
|
110
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
111
|
+
_this.name = "ThrottlingException";
|
|
112
|
+
_this.$fault = "client";
|
|
113
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
114
|
+
_this.Code = opts.Code;
|
|
115
|
+
_this.Message = opts.Message;
|
|
116
|
+
_this.RequestId = opts.RequestId;
|
|
117
|
+
return _this;
|
|
119
118
|
}
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
119
|
+
return ThrottlingException;
|
|
120
|
+
}(__BaseException));
|
|
121
|
+
export { ThrottlingException };
|
|
122
|
+
var UnauthorizedException = (function (_super) {
|
|
123
|
+
__extends(UnauthorizedException, _super);
|
|
124
|
+
function UnauthorizedException(opts) {
|
|
125
|
+
var _this = _super.call(this, __assign({ name: "UnauthorizedException", $fault: "client" }, opts)) || this;
|
|
126
|
+
_this.name = "UnauthorizedException";
|
|
127
|
+
_this.$fault = "client";
|
|
128
|
+
Object.setPrototypeOf(_this, UnauthorizedException.prototype);
|
|
129
|
+
_this.Code = opts.Code;
|
|
130
|
+
_this.Message = opts.Message;
|
|
131
|
+
_this.RequestId = opts.RequestId;
|
|
132
|
+
return _this;
|
|
134
133
|
}
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
134
|
+
return UnauthorizedException;
|
|
135
|
+
}(__BaseException));
|
|
136
|
+
export { UnauthorizedException };
|
|
137
|
+
var UnprocessableEntityException = (function (_super) {
|
|
138
|
+
__extends(UnprocessableEntityException, _super);
|
|
139
|
+
function UnprocessableEntityException(opts) {
|
|
140
|
+
var _this = _super.call(this, __assign({ name: "UnprocessableEntityException", $fault: "client" }, opts)) || this;
|
|
141
|
+
_this.name = "UnprocessableEntityException";
|
|
142
|
+
_this.$fault = "client";
|
|
143
|
+
Object.setPrototypeOf(_this, UnprocessableEntityException.prototype);
|
|
144
|
+
_this.Code = opts.Code;
|
|
145
|
+
_this.Message = opts.Message;
|
|
146
|
+
_this.RequestId = opts.RequestId;
|
|
147
|
+
return _this;
|
|
149
148
|
}
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
149
|
+
return UnprocessableEntityException;
|
|
150
|
+
}(__BaseException));
|
|
151
|
+
export { UnprocessableEntityException };
|
|
152
|
+
var ConflictException = (function (_super) {
|
|
153
|
+
__extends(ConflictException, _super);
|
|
154
|
+
function ConflictException(opts) {
|
|
155
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
156
|
+
_this.name = "ConflictException";
|
|
157
|
+
_this.$fault = "client";
|
|
158
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
159
|
+
_this.Code = opts.Code;
|
|
160
|
+
_this.Message = opts.Message;
|
|
161
|
+
_this.RequestId = opts.RequestId;
|
|
162
|
+
return _this;
|
|
164
163
|
}
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
164
|
+
return ConflictException;
|
|
165
|
+
}(__BaseException));
|
|
166
|
+
export { ConflictException };
|
|
167
|
+
var ResourceNotFoundException = (function (_super) {
|
|
168
|
+
__extends(ResourceNotFoundException, _super);
|
|
169
|
+
function ResourceNotFoundException(opts) {
|
|
170
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
171
|
+
_this.name = "ResourceNotFoundException";
|
|
172
|
+
_this.$fault = "client";
|
|
173
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
174
|
+
_this.Code = opts.Code;
|
|
175
|
+
_this.Message = opts.Message;
|
|
176
|
+
_this.RequestId = opts.RequestId;
|
|
177
|
+
_this.ResourceName = opts.ResourceName;
|
|
178
|
+
return _this;
|
|
180
179
|
}
|
|
181
|
-
|
|
180
|
+
return ResourceNotFoundException;
|
|
181
|
+
}(__BaseException));
|
|
182
|
+
export { ResourceNotFoundException };
|
|
182
183
|
export var TranscribeMedicalContentIdentificationType;
|
|
183
184
|
(function (TranscribeMedicalContentIdentificationType) {
|
|
184
185
|
TranscribeMedicalContentIdentificationType["PHI"] = "PHI";
|
|
@@ -262,177 +263,64 @@ export var TranscribeVocabularyFilterMethod;
|
|
|
262
263
|
TranscribeVocabularyFilterMethod["REMOVE"] = "remove";
|
|
263
264
|
TranscribeVocabularyFilterMethod["TAG"] = "tag";
|
|
264
265
|
})(TranscribeVocabularyFilterMethod || (TranscribeVocabularyFilterMethod = {}));
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
this.RequestId = opts.RequestId;
|
|
278
|
-
this.ResourceName = opts.ResourceName;
|
|
266
|
+
var TooManyTagsException = (function (_super) {
|
|
267
|
+
__extends(TooManyTagsException, _super);
|
|
268
|
+
function TooManyTagsException(opts) {
|
|
269
|
+
var _this = _super.call(this, __assign({ name: "TooManyTagsException", $fault: "client" }, opts)) || this;
|
|
270
|
+
_this.name = "TooManyTagsException";
|
|
271
|
+
_this.$fault = "client";
|
|
272
|
+
Object.setPrototypeOf(_this, TooManyTagsException.prototype);
|
|
273
|
+
_this.Code = opts.Code;
|
|
274
|
+
_this.Message = opts.Message;
|
|
275
|
+
_this.RequestId = opts.RequestId;
|
|
276
|
+
_this.ResourceName = opts.ResourceName;
|
|
277
|
+
return _this;
|
|
279
278
|
}
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
});
|
|
284
|
-
export
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
});
|
|
289
|
-
export
|
|
290
|
-
|
|
291
|
-
});
|
|
292
|
-
export
|
|
293
|
-
|
|
294
|
-
});
|
|
295
|
-
export
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
});
|
|
303
|
-
export
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
});
|
|
307
|
-
export
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
});
|
|
312
|
-
export
|
|
313
|
-
|
|
314
|
-
});
|
|
315
|
-
export
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
});
|
|
319
|
-
export
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
});
|
|
323
|
-
export
|
|
324
|
-
|
|
325
|
-
});
|
|
326
|
-
export
|
|
327
|
-
|
|
328
|
-
...(obj.LambdaFunctionArn && { LambdaFunctionArn: SENSITIVE_STRING }),
|
|
329
|
-
...(obj.SnsTopicArn && { SnsTopicArn: SENSITIVE_STRING }),
|
|
330
|
-
...(obj.SqsQueueArn && { SqsQueueArn: SENSITIVE_STRING }),
|
|
331
|
-
});
|
|
332
|
-
export const TagFilterSensitiveLog = (obj) => ({
|
|
333
|
-
...obj,
|
|
334
|
-
});
|
|
335
|
-
export const CreateMeetingRequestFilterSensitiveLog = (obj) => ({
|
|
336
|
-
...obj,
|
|
337
|
-
...(obj.ClientRequestToken && { ClientRequestToken: SENSITIVE_STRING }),
|
|
338
|
-
...(obj.MeetingHostId && { MeetingHostId: SENSITIVE_STRING }),
|
|
339
|
-
...(obj.ExternalMeetingId && { ExternalMeetingId: SENSITIVE_STRING }),
|
|
340
|
-
...(obj.NotificationsConfiguration && {
|
|
341
|
-
NotificationsConfiguration: NotificationsConfigurationFilterSensitiveLog(obj.NotificationsConfiguration),
|
|
342
|
-
}),
|
|
343
|
-
});
|
|
344
|
-
export const MediaPlacementFilterSensitiveLog = (obj) => ({
|
|
345
|
-
...obj,
|
|
346
|
-
});
|
|
347
|
-
export const MeetingFilterSensitiveLog = (obj) => ({
|
|
348
|
-
...obj,
|
|
349
|
-
...(obj.MeetingHostId && { MeetingHostId: SENSITIVE_STRING }),
|
|
350
|
-
...(obj.ExternalMeetingId && { ExternalMeetingId: SENSITIVE_STRING }),
|
|
351
|
-
});
|
|
352
|
-
export const CreateMeetingResponseFilterSensitiveLog = (obj) => ({
|
|
353
|
-
...obj,
|
|
354
|
-
...(obj.Meeting && { Meeting: MeetingFilterSensitiveLog(obj.Meeting) }),
|
|
355
|
-
});
|
|
356
|
-
export const CreateMeetingWithAttendeesRequestFilterSensitiveLog = (obj) => ({
|
|
357
|
-
...obj,
|
|
358
|
-
...(obj.ClientRequestToken && { ClientRequestToken: SENSITIVE_STRING }),
|
|
359
|
-
...(obj.MeetingHostId && { MeetingHostId: SENSITIVE_STRING }),
|
|
360
|
-
...(obj.ExternalMeetingId && { ExternalMeetingId: SENSITIVE_STRING }),
|
|
361
|
-
...(obj.NotificationsConfiguration && {
|
|
362
|
-
NotificationsConfiguration: NotificationsConfigurationFilterSensitiveLog(obj.NotificationsConfiguration),
|
|
363
|
-
}),
|
|
364
|
-
...(obj.Attendees && { Attendees: obj.Attendees.map((item) => CreateAttendeeRequestItemFilterSensitiveLog(item)) }),
|
|
365
|
-
});
|
|
366
|
-
export const CreateMeetingWithAttendeesResponseFilterSensitiveLog = (obj) => ({
|
|
367
|
-
...obj,
|
|
368
|
-
...(obj.Meeting && { Meeting: MeetingFilterSensitiveLog(obj.Meeting) }),
|
|
369
|
-
...(obj.Attendees && { Attendees: obj.Attendees.map((item) => AttendeeFilterSensitiveLog(item)) }),
|
|
370
|
-
...(obj.Errors && { Errors: obj.Errors.map((item) => CreateAttendeeErrorFilterSensitiveLog(item)) }),
|
|
371
|
-
});
|
|
372
|
-
export const DeleteAttendeeRequestFilterSensitiveLog = (obj) => ({
|
|
373
|
-
...obj,
|
|
374
|
-
});
|
|
375
|
-
export const DeleteMeetingRequestFilterSensitiveLog = (obj) => ({
|
|
376
|
-
...obj,
|
|
377
|
-
});
|
|
378
|
-
export const GetAttendeeRequestFilterSensitiveLog = (obj) => ({
|
|
379
|
-
...obj,
|
|
380
|
-
});
|
|
381
|
-
export const GetAttendeeResponseFilterSensitiveLog = (obj) => ({
|
|
382
|
-
...obj,
|
|
383
|
-
...(obj.Attendee && { Attendee: AttendeeFilterSensitiveLog(obj.Attendee) }),
|
|
384
|
-
});
|
|
385
|
-
export const GetMeetingRequestFilterSensitiveLog = (obj) => ({
|
|
386
|
-
...obj,
|
|
387
|
-
});
|
|
388
|
-
export const GetMeetingResponseFilterSensitiveLog = (obj) => ({
|
|
389
|
-
...obj,
|
|
390
|
-
...(obj.Meeting && { Meeting: MeetingFilterSensitiveLog(obj.Meeting) }),
|
|
391
|
-
});
|
|
392
|
-
export const ListAttendeesRequestFilterSensitiveLog = (obj) => ({
|
|
393
|
-
...obj,
|
|
394
|
-
});
|
|
395
|
-
export const ListAttendeesResponseFilterSensitiveLog = (obj) => ({
|
|
396
|
-
...obj,
|
|
397
|
-
...(obj.Attendees && { Attendees: obj.Attendees.map((item) => AttendeeFilterSensitiveLog(item)) }),
|
|
398
|
-
});
|
|
399
|
-
export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
|
|
400
|
-
...obj,
|
|
401
|
-
});
|
|
402
|
-
export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
403
|
-
...obj,
|
|
404
|
-
});
|
|
405
|
-
export const EngineTranscribeMedicalSettingsFilterSensitiveLog = (obj) => ({
|
|
406
|
-
...obj,
|
|
407
|
-
});
|
|
408
|
-
export const EngineTranscribeSettingsFilterSensitiveLog = (obj) => ({
|
|
409
|
-
...obj,
|
|
410
|
-
});
|
|
411
|
-
export const TranscriptionConfigurationFilterSensitiveLog = (obj) => ({
|
|
412
|
-
...obj,
|
|
413
|
-
});
|
|
414
|
-
export const StartMeetingTranscriptionRequestFilterSensitiveLog = (obj) => ({
|
|
415
|
-
...obj,
|
|
416
|
-
});
|
|
417
|
-
export const StopMeetingTranscriptionRequestFilterSensitiveLog = (obj) => ({
|
|
418
|
-
...obj,
|
|
419
|
-
});
|
|
420
|
-
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
421
|
-
...obj,
|
|
422
|
-
});
|
|
423
|
-
export const TagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
424
|
-
...obj,
|
|
425
|
-
});
|
|
426
|
-
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
427
|
-
...obj,
|
|
428
|
-
});
|
|
429
|
-
export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
430
|
-
...obj,
|
|
431
|
-
});
|
|
432
|
-
export const UpdateAttendeeCapabilitiesRequestFilterSensitiveLog = (obj) => ({
|
|
433
|
-
...obj,
|
|
434
|
-
});
|
|
435
|
-
export const UpdateAttendeeCapabilitiesResponseFilterSensitiveLog = (obj) => ({
|
|
436
|
-
...obj,
|
|
437
|
-
...(obj.Attendee && { Attendee: AttendeeFilterSensitiveLog(obj.Attendee) }),
|
|
438
|
-
});
|
|
279
|
+
return TooManyTagsException;
|
|
280
|
+
}(__BaseException));
|
|
281
|
+
export { TooManyTagsException };
|
|
282
|
+
export var AttendeeCapabilitiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
283
|
+
export var AttendeeFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.ExternalUserId && { ExternalUserId: SENSITIVE_STRING })), (obj.JoinToken && { JoinToken: SENSITIVE_STRING }))); };
|
|
284
|
+
export var AttendeeIdItemFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
285
|
+
export var AudioFeaturesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
286
|
+
export var CreateAttendeeRequestItemFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.ExternalUserId && { ExternalUserId: SENSITIVE_STRING }))); };
|
|
287
|
+
export var BatchCreateAttendeeRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attendees && { Attendees: obj.Attendees.map(function (item) { return CreateAttendeeRequestItemFilterSensitiveLog(item); }) }))); };
|
|
288
|
+
export var CreateAttendeeErrorFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.ExternalUserId && { ExternalUserId: SENSITIVE_STRING }))); };
|
|
289
|
+
export var BatchCreateAttendeeResponseFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.Attendees && { Attendees: obj.Attendees.map(function (item) { return AttendeeFilterSensitiveLog(item); }) })), (obj.Errors && { Errors: obj.Errors.map(function (item) { return CreateAttendeeErrorFilterSensitiveLog(item); }) }))); };
|
|
290
|
+
export var BatchUpdateAttendeeCapabilitiesExceptRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
291
|
+
export var CreateAttendeeRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.ExternalUserId && { ExternalUserId: SENSITIVE_STRING }))); };
|
|
292
|
+
export var CreateAttendeeResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attendee && { Attendee: AttendeeFilterSensitiveLog(obj.Attendee) }))); };
|
|
293
|
+
export var MeetingFeaturesConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
294
|
+
export var NotificationsConfigurationFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign({}, obj), (obj.LambdaFunctionArn && { LambdaFunctionArn: SENSITIVE_STRING })), (obj.SnsTopicArn && { SnsTopicArn: SENSITIVE_STRING })), (obj.SqsQueueArn && { SqsQueueArn: SENSITIVE_STRING }))); };
|
|
295
|
+
export var TagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
296
|
+
export var CreateMeetingRequestFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign(__assign({}, obj), (obj.ClientRequestToken && { ClientRequestToken: SENSITIVE_STRING })), (obj.MeetingHostId && { MeetingHostId: SENSITIVE_STRING })), (obj.ExternalMeetingId && { ExternalMeetingId: SENSITIVE_STRING })), (obj.NotificationsConfiguration && {
|
|
297
|
+
NotificationsConfiguration: NotificationsConfigurationFilterSensitiveLog(obj.NotificationsConfiguration),
|
|
298
|
+
}))); };
|
|
299
|
+
export var MediaPlacementFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
300
|
+
export var MeetingFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.MeetingHostId && { MeetingHostId: SENSITIVE_STRING })), (obj.ExternalMeetingId && { ExternalMeetingId: SENSITIVE_STRING }))); };
|
|
301
|
+
export var CreateMeetingResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Meeting && { Meeting: MeetingFilterSensitiveLog(obj.Meeting) }))); };
|
|
302
|
+
export var CreateMeetingWithAttendeesRequestFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign(__assign(__assign({}, obj), (obj.ClientRequestToken && { ClientRequestToken: SENSITIVE_STRING })), (obj.MeetingHostId && { MeetingHostId: SENSITIVE_STRING })), (obj.ExternalMeetingId && { ExternalMeetingId: SENSITIVE_STRING })), (obj.NotificationsConfiguration && {
|
|
303
|
+
NotificationsConfiguration: NotificationsConfigurationFilterSensitiveLog(obj.NotificationsConfiguration),
|
|
304
|
+
})), (obj.Attendees && { Attendees: obj.Attendees.map(function (item) { return CreateAttendeeRequestItemFilterSensitiveLog(item); }) }))); };
|
|
305
|
+
export var CreateMeetingWithAttendeesResponseFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign({}, obj), (obj.Meeting && { Meeting: MeetingFilterSensitiveLog(obj.Meeting) })), (obj.Attendees && { Attendees: obj.Attendees.map(function (item) { return AttendeeFilterSensitiveLog(item); }) })), (obj.Errors && { Errors: obj.Errors.map(function (item) { return CreateAttendeeErrorFilterSensitiveLog(item); }) }))); };
|
|
306
|
+
export var DeleteAttendeeRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
307
|
+
export var DeleteMeetingRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
308
|
+
export var GetAttendeeRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
309
|
+
export var GetAttendeeResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attendee && { Attendee: AttendeeFilterSensitiveLog(obj.Attendee) }))); };
|
|
310
|
+
export var GetMeetingRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
311
|
+
export var GetMeetingResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Meeting && { Meeting: MeetingFilterSensitiveLog(obj.Meeting) }))); };
|
|
312
|
+
export var ListAttendeesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
313
|
+
export var ListAttendeesResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attendees && { Attendees: obj.Attendees.map(function (item) { return AttendeeFilterSensitiveLog(item); }) }))); };
|
|
314
|
+
export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
315
|
+
export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
316
|
+
export var EngineTranscribeMedicalSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
317
|
+
export var EngineTranscribeSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
318
|
+
export var TranscriptionConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
319
|
+
export var StartMeetingTranscriptionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
320
|
+
export var StopMeetingTranscriptionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
321
|
+
export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
322
|
+
export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
323
|
+
export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
324
|
+
export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
325
|
+
export var UpdateAttendeeCapabilitiesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
326
|
+
export var UpdateAttendeeCapabilitiesResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attendee && { Attendee: AttendeeFilterSensitiveLog(obj.Attendee) }))); };
|