@aws-sdk/client-chime-sdk-meetings 3.186.0 → 3.190.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 +16 -0
- package/dist-es/ChimeSDKMeetings.js +66 -73
- package/dist-es/ChimeSDKMeetingsClient.js +22 -28
- package/dist-es/commands/BatchCreateAttendeeCommand.js +21 -28
- package/dist-es/commands/BatchUpdateAttendeeCapabilitiesExceptCommand.js +22 -29
- package/dist-es/commands/CreateAttendeeCommand.js +21 -28
- package/dist-es/commands/CreateMeetingCommand.js +21 -28
- package/dist-es/commands/CreateMeetingWithAttendeesCommand.js +21 -28
- package/dist-es/commands/DeleteAttendeeCommand.js +22 -29
- package/dist-es/commands/DeleteMeetingCommand.js +22 -29
- package/dist-es/commands/GetAttendeeCommand.js +21 -28
- package/dist-es/commands/GetMeetingCommand.js +21 -28
- package/dist-es/commands/ListAttendeesCommand.js +21 -28
- package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
- package/dist-es/commands/StartMeetingTranscriptionCommand.js +22 -29
- package/dist-es/commands/StopMeetingTranscriptionCommand.js +22 -29
- package/dist-es/commands/TagResourceCommand.js +21 -28
- package/dist-es/commands/UntagResourceCommand.js +21 -28
- package/dist-es/commands/UpdateAttendeeCapabilitiesCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/ChimeSDKMeetingsServiceException.js +5 -10
- package/dist-es/models/models_0.js +329 -217
- package/dist-es/pagination/ListAttendeesPaginator.js +25 -68
- package/dist-es/protocols/Aws_restJson1.js +1483 -1956
- package/dist-es/runtimeConfig.browser.js +26 -12
- package/dist-es/runtimeConfig.js +30 -12
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- package/package.json +33 -33
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { __assign, __extends } from "tslib";
|
|
2
1
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
3
2
|
import { ChimeSDKMeetingsServiceException as __BaseException } from "./ChimeSDKMeetingsServiceException";
|
|
4
3
|
export var MediaCapabilities;
|
|
@@ -13,173 +12,173 @@ export var MeetingFeatureStatus;
|
|
|
13
12
|
MeetingFeatureStatus["AVAILABLE"] = "AVAILABLE";
|
|
14
13
|
MeetingFeatureStatus["UNAVAILABLE"] = "UNAVAILABLE";
|
|
15
14
|
})(MeetingFeatureStatus || (MeetingFeatureStatus = {}));
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
15
|
+
export class BadRequestException extends __BaseException {
|
|
16
|
+
constructor(opts) {
|
|
17
|
+
super({
|
|
18
|
+
name: "BadRequestException",
|
|
19
|
+
$fault: "client",
|
|
20
|
+
...opts,
|
|
21
|
+
});
|
|
22
|
+
this.name = "BadRequestException";
|
|
23
|
+
this.$fault = "client";
|
|
24
|
+
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
25
|
+
this.Code = opts.Code;
|
|
26
|
+
this.Message = opts.Message;
|
|
27
|
+
this.RequestId = opts.RequestId;
|
|
27
28
|
}
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
29
|
+
}
|
|
30
|
+
export class ForbiddenException extends __BaseException {
|
|
31
|
+
constructor(opts) {
|
|
32
|
+
super({
|
|
33
|
+
name: "ForbiddenException",
|
|
34
|
+
$fault: "client",
|
|
35
|
+
...opts,
|
|
36
|
+
});
|
|
37
|
+
this.name = "ForbiddenException";
|
|
38
|
+
this.$fault = "client";
|
|
39
|
+
Object.setPrototypeOf(this, ForbiddenException.prototype);
|
|
40
|
+
this.Code = opts.Code;
|
|
41
|
+
this.Message = opts.Message;
|
|
42
|
+
this.RequestId = opts.RequestId;
|
|
42
43
|
}
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
44
|
+
}
|
|
45
|
+
export class LimitExceededException extends __BaseException {
|
|
46
|
+
constructor(opts) {
|
|
47
|
+
super({
|
|
48
|
+
name: "LimitExceededException",
|
|
49
|
+
$fault: "client",
|
|
50
|
+
...opts,
|
|
51
|
+
});
|
|
52
|
+
this.name = "LimitExceededException";
|
|
53
|
+
this.$fault = "client";
|
|
54
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
55
|
+
this.Code = opts.Code;
|
|
56
|
+
this.Message = opts.Message;
|
|
57
|
+
this.RequestId = opts.RequestId;
|
|
57
58
|
}
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
59
|
+
}
|
|
60
|
+
export class NotFoundException extends __BaseException {
|
|
61
|
+
constructor(opts) {
|
|
62
|
+
super({
|
|
63
|
+
name: "NotFoundException",
|
|
64
|
+
$fault: "client",
|
|
65
|
+
...opts,
|
|
66
|
+
});
|
|
67
|
+
this.name = "NotFoundException";
|
|
68
|
+
this.$fault = "client";
|
|
69
|
+
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
70
|
+
this.Code = opts.Code;
|
|
71
|
+
this.Message = opts.Message;
|
|
72
|
+
this.RequestId = opts.RequestId;
|
|
72
73
|
}
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
74
|
+
}
|
|
75
|
+
export class ServiceFailureException extends __BaseException {
|
|
76
|
+
constructor(opts) {
|
|
77
|
+
super({
|
|
78
|
+
name: "ServiceFailureException",
|
|
79
|
+
$fault: "server",
|
|
80
|
+
...opts,
|
|
81
|
+
});
|
|
82
|
+
this.name = "ServiceFailureException";
|
|
83
|
+
this.$fault = "server";
|
|
84
|
+
Object.setPrototypeOf(this, ServiceFailureException.prototype);
|
|
85
|
+
this.Code = opts.Code;
|
|
86
|
+
this.Message = opts.Message;
|
|
87
|
+
this.RequestId = opts.RequestId;
|
|
87
88
|
}
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
89
|
+
}
|
|
90
|
+
export class ServiceUnavailableException extends __BaseException {
|
|
91
|
+
constructor(opts) {
|
|
92
|
+
super({
|
|
93
|
+
name: "ServiceUnavailableException",
|
|
94
|
+
$fault: "server",
|
|
95
|
+
...opts,
|
|
96
|
+
});
|
|
97
|
+
this.name = "ServiceUnavailableException";
|
|
98
|
+
this.$fault = "server";
|
|
99
|
+
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
100
|
+
this.Code = opts.Code;
|
|
101
|
+
this.Message = opts.Message;
|
|
102
|
+
this.RequestId = opts.RequestId;
|
|
103
|
+
this.RetryAfterSeconds = opts.RetryAfterSeconds;
|
|
103
104
|
}
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
105
|
+
}
|
|
106
|
+
export class ThrottlingException extends __BaseException {
|
|
107
|
+
constructor(opts) {
|
|
108
|
+
super({
|
|
109
|
+
name: "ThrottlingException",
|
|
110
|
+
$fault: "client",
|
|
111
|
+
...opts,
|
|
112
|
+
});
|
|
113
|
+
this.name = "ThrottlingException";
|
|
114
|
+
this.$fault = "client";
|
|
115
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
116
|
+
this.Code = opts.Code;
|
|
117
|
+
this.Message = opts.Message;
|
|
118
|
+
this.RequestId = opts.RequestId;
|
|
118
119
|
}
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
120
|
+
}
|
|
121
|
+
export class UnauthorizedException extends __BaseException {
|
|
122
|
+
constructor(opts) {
|
|
123
|
+
super({
|
|
124
|
+
name: "UnauthorizedException",
|
|
125
|
+
$fault: "client",
|
|
126
|
+
...opts,
|
|
127
|
+
});
|
|
128
|
+
this.name = "UnauthorizedException";
|
|
129
|
+
this.$fault = "client";
|
|
130
|
+
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
131
|
+
this.Code = opts.Code;
|
|
132
|
+
this.Message = opts.Message;
|
|
133
|
+
this.RequestId = opts.RequestId;
|
|
133
134
|
}
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
135
|
+
}
|
|
136
|
+
export class UnprocessableEntityException extends __BaseException {
|
|
137
|
+
constructor(opts) {
|
|
138
|
+
super({
|
|
139
|
+
name: "UnprocessableEntityException",
|
|
140
|
+
$fault: "client",
|
|
141
|
+
...opts,
|
|
142
|
+
});
|
|
143
|
+
this.name = "UnprocessableEntityException";
|
|
144
|
+
this.$fault = "client";
|
|
145
|
+
Object.setPrototypeOf(this, UnprocessableEntityException.prototype);
|
|
146
|
+
this.Code = opts.Code;
|
|
147
|
+
this.Message = opts.Message;
|
|
148
|
+
this.RequestId = opts.RequestId;
|
|
148
149
|
}
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
150
|
+
}
|
|
151
|
+
export class ConflictException extends __BaseException {
|
|
152
|
+
constructor(opts) {
|
|
153
|
+
super({
|
|
154
|
+
name: "ConflictException",
|
|
155
|
+
$fault: "client",
|
|
156
|
+
...opts,
|
|
157
|
+
});
|
|
158
|
+
this.name = "ConflictException";
|
|
159
|
+
this.$fault = "client";
|
|
160
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
161
|
+
this.Code = opts.Code;
|
|
162
|
+
this.Message = opts.Message;
|
|
163
|
+
this.RequestId = opts.RequestId;
|
|
163
164
|
}
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
165
|
+
}
|
|
166
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
167
|
+
constructor(opts) {
|
|
168
|
+
super({
|
|
169
|
+
name: "ResourceNotFoundException",
|
|
170
|
+
$fault: "client",
|
|
171
|
+
...opts,
|
|
172
|
+
});
|
|
173
|
+
this.name = "ResourceNotFoundException";
|
|
174
|
+
this.$fault = "client";
|
|
175
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
176
|
+
this.Code = opts.Code;
|
|
177
|
+
this.Message = opts.Message;
|
|
178
|
+
this.RequestId = opts.RequestId;
|
|
179
|
+
this.ResourceName = opts.ResourceName;
|
|
179
180
|
}
|
|
180
|
-
|
|
181
|
-
}(__BaseException));
|
|
182
|
-
export { ResourceNotFoundException };
|
|
181
|
+
}
|
|
183
182
|
export var TranscribeMedicalContentIdentificationType;
|
|
184
183
|
(function (TranscribeMedicalContentIdentificationType) {
|
|
185
184
|
TranscribeMedicalContentIdentificationType["PHI"] = "PHI";
|
|
@@ -263,64 +262,177 @@ export var TranscribeVocabularyFilterMethod;
|
|
|
263
262
|
TranscribeVocabularyFilterMethod["REMOVE"] = "remove";
|
|
264
263
|
TranscribeVocabularyFilterMethod["TAG"] = "tag";
|
|
265
264
|
})(TranscribeVocabularyFilterMethod || (TranscribeVocabularyFilterMethod = {}));
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
265
|
+
export class TooManyTagsException extends __BaseException {
|
|
266
|
+
constructor(opts) {
|
|
267
|
+
super({
|
|
268
|
+
name: "TooManyTagsException",
|
|
269
|
+
$fault: "client",
|
|
270
|
+
...opts,
|
|
271
|
+
});
|
|
272
|
+
this.name = "TooManyTagsException";
|
|
273
|
+
this.$fault = "client";
|
|
274
|
+
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
275
|
+
this.Code = opts.Code;
|
|
276
|
+
this.Message = opts.Message;
|
|
277
|
+
this.RequestId = opts.RequestId;
|
|
278
|
+
this.ResourceName = opts.ResourceName;
|
|
278
279
|
}
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
export
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
export
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
export
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
export
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
export
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
export
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
export
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
export
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
export
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
export
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
export
|
|
326
|
-
|
|
280
|
+
}
|
|
281
|
+
export const AttendeeCapabilitiesFilterSensitiveLog = (obj) => ({
|
|
282
|
+
...obj,
|
|
283
|
+
});
|
|
284
|
+
export const AttendeeFilterSensitiveLog = (obj) => ({
|
|
285
|
+
...obj,
|
|
286
|
+
...(obj.ExternalUserId && { ExternalUserId: SENSITIVE_STRING }),
|
|
287
|
+
...(obj.JoinToken && { JoinToken: SENSITIVE_STRING }),
|
|
288
|
+
});
|
|
289
|
+
export const AttendeeIdItemFilterSensitiveLog = (obj) => ({
|
|
290
|
+
...obj,
|
|
291
|
+
});
|
|
292
|
+
export const AudioFeaturesFilterSensitiveLog = (obj) => ({
|
|
293
|
+
...obj,
|
|
294
|
+
});
|
|
295
|
+
export const CreateAttendeeRequestItemFilterSensitiveLog = (obj) => ({
|
|
296
|
+
...obj,
|
|
297
|
+
...(obj.ExternalUserId && { ExternalUserId: SENSITIVE_STRING }),
|
|
298
|
+
});
|
|
299
|
+
export const BatchCreateAttendeeRequestFilterSensitiveLog = (obj) => ({
|
|
300
|
+
...obj,
|
|
301
|
+
...(obj.Attendees && { Attendees: obj.Attendees.map((item) => CreateAttendeeRequestItemFilterSensitiveLog(item)) }),
|
|
302
|
+
});
|
|
303
|
+
export const CreateAttendeeErrorFilterSensitiveLog = (obj) => ({
|
|
304
|
+
...obj,
|
|
305
|
+
...(obj.ExternalUserId && { ExternalUserId: SENSITIVE_STRING }),
|
|
306
|
+
});
|
|
307
|
+
export const BatchCreateAttendeeResponseFilterSensitiveLog = (obj) => ({
|
|
308
|
+
...obj,
|
|
309
|
+
...(obj.Attendees && { Attendees: obj.Attendees.map((item) => AttendeeFilterSensitiveLog(item)) }),
|
|
310
|
+
...(obj.Errors && { Errors: obj.Errors.map((item) => CreateAttendeeErrorFilterSensitiveLog(item)) }),
|
|
311
|
+
});
|
|
312
|
+
export const BatchUpdateAttendeeCapabilitiesExceptRequestFilterSensitiveLog = (obj) => ({
|
|
313
|
+
...obj,
|
|
314
|
+
});
|
|
315
|
+
export const CreateAttendeeRequestFilterSensitiveLog = (obj) => ({
|
|
316
|
+
...obj,
|
|
317
|
+
...(obj.ExternalUserId && { ExternalUserId: SENSITIVE_STRING }),
|
|
318
|
+
});
|
|
319
|
+
export const CreateAttendeeResponseFilterSensitiveLog = (obj) => ({
|
|
320
|
+
...obj,
|
|
321
|
+
...(obj.Attendee && { Attendee: AttendeeFilterSensitiveLog(obj.Attendee) }),
|
|
322
|
+
});
|
|
323
|
+
export const MeetingFeaturesConfigurationFilterSensitiveLog = (obj) => ({
|
|
324
|
+
...obj,
|
|
325
|
+
});
|
|
326
|
+
export const NotificationsConfigurationFilterSensitiveLog = (obj) => ({
|
|
327
|
+
...obj,
|
|
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
|
+
});
|