@aws-sdk/client-chime-sdk-meetings 3.180.0 → 3.183.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.
Files changed (30) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/dist-cjs/protocols/Aws_restJson1.js +22 -16
  3. package/dist-es/ChimeSDKMeetings.js +66 -73
  4. package/dist-es/ChimeSDKMeetingsClient.js +22 -28
  5. package/dist-es/commands/BatchCreateAttendeeCommand.js +21 -28
  6. package/dist-es/commands/BatchUpdateAttendeeCapabilitiesExceptCommand.js +22 -29
  7. package/dist-es/commands/CreateAttendeeCommand.js +21 -28
  8. package/dist-es/commands/CreateMeetingCommand.js +21 -28
  9. package/dist-es/commands/CreateMeetingWithAttendeesCommand.js +21 -28
  10. package/dist-es/commands/DeleteAttendeeCommand.js +22 -29
  11. package/dist-es/commands/DeleteMeetingCommand.js +22 -29
  12. package/dist-es/commands/GetAttendeeCommand.js +21 -28
  13. package/dist-es/commands/GetMeetingCommand.js +21 -28
  14. package/dist-es/commands/ListAttendeesCommand.js +21 -28
  15. package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
  16. package/dist-es/commands/StartMeetingTranscriptionCommand.js +22 -29
  17. package/dist-es/commands/StopMeetingTranscriptionCommand.js +22 -29
  18. package/dist-es/commands/TagResourceCommand.js +21 -28
  19. package/dist-es/commands/UntagResourceCommand.js +21 -28
  20. package/dist-es/commands/UpdateAttendeeCapabilitiesCommand.js +21 -28
  21. package/dist-es/endpoints.js +8 -8
  22. package/dist-es/models/ChimeSDKMeetingsServiceException.js +5 -10
  23. package/dist-es/models/models_0.js +329 -217
  24. package/dist-es/pagination/ListAttendeesPaginator.js +25 -68
  25. package/dist-es/protocols/Aws_restJson1.js +1483 -1943
  26. package/dist-es/runtimeConfig.browser.js +26 -12
  27. package/dist-es/runtimeConfig.js +30 -12
  28. package/dist-es/runtimeConfig.native.js +8 -5
  29. package/dist-es/runtimeConfig.shared.js +8 -11
  30. 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
- 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;
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
- 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;
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
- 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;
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
- 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;
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
- 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;
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
- 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;
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
- 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;
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
- 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;
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
- 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;
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
- 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;
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
- 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;
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
- return ResourceNotFoundException;
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
- 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;
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
- 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) }))); };
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
+ });