@aws-sdk/client-chime-sdk-meetings 3.142.0 → 3.150.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 +27 -0
- package/dist-cjs/ChimeSDKMeetings.js +45 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +36 -0
- package/dist-cjs/commands/TagResourceCommand.js +36 -0
- package/dist-cjs/commands/UntagResourceCommand.js +36 -0
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/models/models_0.js +64 -2
- package/dist-cjs/protocols/Aws_restJson1.js +260 -1
- package/dist-es/ChimeSDKMeetings.js +45 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +39 -0
- package/dist-es/commands/TagResourceCommand.js +39 -0
- package/dist-es/commands/UntagResourceCommand.js +39 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +39 -0
- package/dist-es/protocols/Aws_restJson1.js +333 -5
- package/dist-types/ChimeSDKMeetings.d.ts +46 -0
- package/dist-types/ChimeSDKMeetingsClient.d.ts +5 -2
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +35 -0
- package/dist-types/commands/TagResourceCommand.d.ts +35 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +60 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +181 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/ChimeSDKMeetings.d.ts +15 -0
- package/dist-types/ts3.4/ChimeSDKMeetingsClient.d.ts +5 -2
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +80 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +9 -0
- package/package.json +8 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.150.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.149.0...v3.150.0) (2022-08-15)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-chime-sdk-meetings
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.145.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.144.0...v3.145.0) (2022-08-08)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-chime-sdk-meetings
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [3.144.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.143.0...v3.144.0) (2022-08-04)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* **client-chime-sdk-meetings:** Adds support for Tags on Amazon Chime SDK WebRTC sessions ([889af85](https://github.com/aws/aws-sdk-js-v3/commit/889af8589ed9523bd89f9c9c202455406d21c8c3))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
# [3.142.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.141.0...v3.142.0) (2022-08-02)
|
|
7
34
|
|
|
8
35
|
|
|
@@ -12,8 +12,11 @@ const DeleteMeetingCommand_1 = require("./commands/DeleteMeetingCommand");
|
|
|
12
12
|
const GetAttendeeCommand_1 = require("./commands/GetAttendeeCommand");
|
|
13
13
|
const GetMeetingCommand_1 = require("./commands/GetMeetingCommand");
|
|
14
14
|
const ListAttendeesCommand_1 = require("./commands/ListAttendeesCommand");
|
|
15
|
+
const ListTagsForResourceCommand_1 = require("./commands/ListTagsForResourceCommand");
|
|
15
16
|
const StartMeetingTranscriptionCommand_1 = require("./commands/StartMeetingTranscriptionCommand");
|
|
16
17
|
const StopMeetingTranscriptionCommand_1 = require("./commands/StopMeetingTranscriptionCommand");
|
|
18
|
+
const TagResourceCommand_1 = require("./commands/TagResourceCommand");
|
|
19
|
+
const UntagResourceCommand_1 = require("./commands/UntagResourceCommand");
|
|
17
20
|
const UpdateAttendeeCapabilitiesCommand_1 = require("./commands/UpdateAttendeeCapabilitiesCommand");
|
|
18
21
|
class ChimeSDKMeetings extends ChimeSDKMeetingsClient_1.ChimeSDKMeetingsClient {
|
|
19
22
|
batchCreateAttendee(args, optionsOrCb, cb) {
|
|
@@ -156,6 +159,20 @@ class ChimeSDKMeetings extends ChimeSDKMeetingsClient_1.ChimeSDKMeetingsClient {
|
|
|
156
159
|
return this.send(command, optionsOrCb);
|
|
157
160
|
}
|
|
158
161
|
}
|
|
162
|
+
listTagsForResource(args, optionsOrCb, cb) {
|
|
163
|
+
const command = new ListTagsForResourceCommand_1.ListTagsForResourceCommand(args);
|
|
164
|
+
if (typeof optionsOrCb === "function") {
|
|
165
|
+
this.send(command, optionsOrCb);
|
|
166
|
+
}
|
|
167
|
+
else if (typeof cb === "function") {
|
|
168
|
+
if (typeof optionsOrCb !== "object")
|
|
169
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
170
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
171
|
+
}
|
|
172
|
+
else {
|
|
173
|
+
return this.send(command, optionsOrCb);
|
|
174
|
+
}
|
|
175
|
+
}
|
|
159
176
|
startMeetingTranscription(args, optionsOrCb, cb) {
|
|
160
177
|
const command = new StartMeetingTranscriptionCommand_1.StartMeetingTranscriptionCommand(args);
|
|
161
178
|
if (typeof optionsOrCb === "function") {
|
|
@@ -184,6 +201,34 @@ class ChimeSDKMeetings extends ChimeSDKMeetingsClient_1.ChimeSDKMeetingsClient {
|
|
|
184
201
|
return this.send(command, optionsOrCb);
|
|
185
202
|
}
|
|
186
203
|
}
|
|
204
|
+
tagResource(args, optionsOrCb, cb) {
|
|
205
|
+
const command = new TagResourceCommand_1.TagResourceCommand(args);
|
|
206
|
+
if (typeof optionsOrCb === "function") {
|
|
207
|
+
this.send(command, optionsOrCb);
|
|
208
|
+
}
|
|
209
|
+
else if (typeof cb === "function") {
|
|
210
|
+
if (typeof optionsOrCb !== "object")
|
|
211
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
212
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
213
|
+
}
|
|
214
|
+
else {
|
|
215
|
+
return this.send(command, optionsOrCb);
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
untagResource(args, optionsOrCb, cb) {
|
|
219
|
+
const command = new UntagResourceCommand_1.UntagResourceCommand(args);
|
|
220
|
+
if (typeof optionsOrCb === "function") {
|
|
221
|
+
this.send(command, optionsOrCb);
|
|
222
|
+
}
|
|
223
|
+
else if (typeof cb === "function") {
|
|
224
|
+
if (typeof optionsOrCb !== "object")
|
|
225
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
226
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
227
|
+
}
|
|
228
|
+
else {
|
|
229
|
+
return this.send(command, optionsOrCb);
|
|
230
|
+
}
|
|
231
|
+
}
|
|
187
232
|
updateAttendeeCapabilities(args, optionsOrCb, cb) {
|
|
188
233
|
const command = new UpdateAttendeeCapabilitiesCommand_1.UpdateAttendeeCapabilitiesCommand(args);
|
|
189
234
|
if (typeof optionsOrCb === "function") {
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ListTagsForResourceCommand = void 0;
|
|
4
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
+
const models_0_1 = require("../models/models_0");
|
|
7
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
|
+
class ListTagsForResourceCommand extends smithy_client_1.Command {
|
|
9
|
+
constructor(input) {
|
|
10
|
+
super();
|
|
11
|
+
this.input = input;
|
|
12
|
+
}
|
|
13
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
const { logger } = configuration;
|
|
17
|
+
const clientName = "ChimeSDKMeetingsClient";
|
|
18
|
+
const commandName = "ListTagsForResourceCommand";
|
|
19
|
+
const handlerExecutionContext = {
|
|
20
|
+
logger,
|
|
21
|
+
clientName,
|
|
22
|
+
commandName,
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.ListTagsForResourceRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.ListTagsForResourceResponseFilterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
const { requestHandler } = configuration;
|
|
27
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
|
+
}
|
|
29
|
+
serialize(input, context) {
|
|
30
|
+
return (0, Aws_restJson1_1.serializeAws_restJson1ListTagsForResourceCommand)(input, context);
|
|
31
|
+
}
|
|
32
|
+
deserialize(output, context) {
|
|
33
|
+
return (0, Aws_restJson1_1.deserializeAws_restJson1ListTagsForResourceCommand)(output, context);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.TagResourceCommand = void 0;
|
|
4
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
+
const models_0_1 = require("../models/models_0");
|
|
7
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
|
+
class TagResourceCommand extends smithy_client_1.Command {
|
|
9
|
+
constructor(input) {
|
|
10
|
+
super();
|
|
11
|
+
this.input = input;
|
|
12
|
+
}
|
|
13
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
const { logger } = configuration;
|
|
17
|
+
const clientName = "ChimeSDKMeetingsClient";
|
|
18
|
+
const commandName = "TagResourceCommand";
|
|
19
|
+
const handlerExecutionContext = {
|
|
20
|
+
logger,
|
|
21
|
+
clientName,
|
|
22
|
+
commandName,
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.TagResourceRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.TagResourceResponseFilterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
const { requestHandler } = configuration;
|
|
27
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
|
+
}
|
|
29
|
+
serialize(input, context) {
|
|
30
|
+
return (0, Aws_restJson1_1.serializeAws_restJson1TagResourceCommand)(input, context);
|
|
31
|
+
}
|
|
32
|
+
deserialize(output, context) {
|
|
33
|
+
return (0, Aws_restJson1_1.deserializeAws_restJson1TagResourceCommand)(output, context);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
exports.TagResourceCommand = TagResourceCommand;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UntagResourceCommand = void 0;
|
|
4
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
+
const models_0_1 = require("../models/models_0");
|
|
7
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
|
+
class UntagResourceCommand extends smithy_client_1.Command {
|
|
9
|
+
constructor(input) {
|
|
10
|
+
super();
|
|
11
|
+
this.input = input;
|
|
12
|
+
}
|
|
13
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
const { logger } = configuration;
|
|
17
|
+
const clientName = "ChimeSDKMeetingsClient";
|
|
18
|
+
const commandName = "UntagResourceCommand";
|
|
19
|
+
const handlerExecutionContext = {
|
|
20
|
+
logger,
|
|
21
|
+
clientName,
|
|
22
|
+
commandName,
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.UntagResourceRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.UntagResourceResponseFilterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
const { requestHandler } = configuration;
|
|
27
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
|
+
}
|
|
29
|
+
serialize(input, context) {
|
|
30
|
+
return (0, Aws_restJson1_1.serializeAws_restJson1UntagResourceCommand)(input, context);
|
|
31
|
+
}
|
|
32
|
+
deserialize(output, context) {
|
|
33
|
+
return (0, Aws_restJson1_1.deserializeAws_restJson1UntagResourceCommand)(output, context);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
exports.UntagResourceCommand = UntagResourceCommand;
|
|
@@ -11,6 +11,9 @@ tslib_1.__exportStar(require("./DeleteMeetingCommand"), exports);
|
|
|
11
11
|
tslib_1.__exportStar(require("./GetAttendeeCommand"), exports);
|
|
12
12
|
tslib_1.__exportStar(require("./GetMeetingCommand"), exports);
|
|
13
13
|
tslib_1.__exportStar(require("./ListAttendeesCommand"), exports);
|
|
14
|
+
tslib_1.__exportStar(require("./ListTagsForResourceCommand"), exports);
|
|
14
15
|
tslib_1.__exportStar(require("./StartMeetingTranscriptionCommand"), exports);
|
|
15
16
|
tslib_1.__exportStar(require("./StopMeetingTranscriptionCommand"), exports);
|
|
17
|
+
tslib_1.__exportStar(require("./TagResourceCommand"), exports);
|
|
18
|
+
tslib_1.__exportStar(require("./UntagResourceCommand"), exports);
|
|
16
19
|
tslib_1.__exportStar(require("./UpdateAttendeeCapabilitiesCommand"), exports);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.UpdateAttendeeCapabilitiesResponseFilterSensitiveLog = exports.UpdateAttendeeCapabilitiesRequestFilterSensitiveLog = exports.StopMeetingTranscriptionRequestFilterSensitiveLog = exports.StartMeetingTranscriptionRequestFilterSensitiveLog = exports.TranscriptionConfigurationFilterSensitiveLog = exports.EngineTranscribeSettingsFilterSensitiveLog = exports.EngineTranscribeMedicalSettingsFilterSensitiveLog = void 0;
|
|
3
|
+
exports.GetMeetingRequestFilterSensitiveLog = exports.GetAttendeeResponseFilterSensitiveLog = exports.GetAttendeeRequestFilterSensitiveLog = exports.DeleteMeetingRequestFilterSensitiveLog = exports.DeleteAttendeeRequestFilterSensitiveLog = exports.CreateMeetingWithAttendeesResponseFilterSensitiveLog = exports.CreateMeetingWithAttendeesRequestFilterSensitiveLog = exports.CreateMeetingResponseFilterSensitiveLog = exports.MeetingFilterSensitiveLog = exports.MediaPlacementFilterSensitiveLog = exports.CreateMeetingRequestFilterSensitiveLog = exports.TagFilterSensitiveLog = exports.NotificationsConfigurationFilterSensitiveLog = exports.MeetingFeaturesConfigurationFilterSensitiveLog = exports.CreateAttendeeResponseFilterSensitiveLog = exports.CreateAttendeeRequestFilterSensitiveLog = exports.BatchUpdateAttendeeCapabilitiesExceptRequestFilterSensitiveLog = exports.BatchCreateAttendeeResponseFilterSensitiveLog = exports.CreateAttendeeErrorFilterSensitiveLog = exports.BatchCreateAttendeeRequestFilterSensitiveLog = exports.CreateAttendeeRequestItemFilterSensitiveLog = exports.AudioFeaturesFilterSensitiveLog = exports.AttendeeIdItemFilterSensitiveLog = exports.AttendeeFilterSensitiveLog = exports.AttendeeCapabilitiesFilterSensitiveLog = exports.TooManyTagsException = exports.TranscribeVocabularyFilterMethod = exports.TranscribeRegion = exports.TranscribePartialResultsStability = exports.TranscribeLanguageCode = exports.TranscribeContentRedactionType = exports.TranscribeContentIdentificationType = exports.TranscribeMedicalType = exports.TranscribeMedicalSpecialty = exports.TranscribeMedicalRegion = exports.TranscribeMedicalLanguageCode = exports.TranscribeMedicalContentIdentificationType = exports.ResourceNotFoundException = exports.ConflictException = exports.UnprocessableEntityException = exports.UnauthorizedException = exports.ThrottlingException = exports.ServiceUnavailableException = exports.ServiceFailureException = exports.NotFoundException = exports.LimitExceededException = exports.ForbiddenException = exports.BadRequestException = exports.MeetingFeatureStatus = exports.MediaCapabilities = void 0;
|
|
4
|
+
exports.UpdateAttendeeCapabilitiesResponseFilterSensitiveLog = exports.UpdateAttendeeCapabilitiesRequestFilterSensitiveLog = exports.UntagResourceResponseFilterSensitiveLog = exports.UntagResourceRequestFilterSensitiveLog = exports.TagResourceResponseFilterSensitiveLog = exports.TagResourceRequestFilterSensitiveLog = exports.StopMeetingTranscriptionRequestFilterSensitiveLog = exports.StartMeetingTranscriptionRequestFilterSensitiveLog = exports.TranscriptionConfigurationFilterSensitiveLog = exports.EngineTranscribeSettingsFilterSensitiveLog = exports.EngineTranscribeMedicalSettingsFilterSensitiveLog = exports.ListTagsForResourceResponseFilterSensitiveLog = exports.ListTagsForResourceRequestFilterSensitiveLog = exports.ListAttendeesResponseFilterSensitiveLog = exports.ListAttendeesRequestFilterSensitiveLog = exports.GetMeetingResponseFilterSensitiveLog = void 0;
|
|
5
5
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
6
|
const ChimeSDKMeetingsServiceException_1 = require("./ChimeSDKMeetingsServiceException");
|
|
7
7
|
var MediaCapabilities;
|
|
@@ -177,6 +177,23 @@ class ConflictException extends ChimeSDKMeetingsServiceException_1.ChimeSDKMeeti
|
|
|
177
177
|
}
|
|
178
178
|
}
|
|
179
179
|
exports.ConflictException = ConflictException;
|
|
180
|
+
class ResourceNotFoundException extends ChimeSDKMeetingsServiceException_1.ChimeSDKMeetingsServiceException {
|
|
181
|
+
constructor(opts) {
|
|
182
|
+
super({
|
|
183
|
+
name: "ResourceNotFoundException",
|
|
184
|
+
$fault: "client",
|
|
185
|
+
...opts,
|
|
186
|
+
});
|
|
187
|
+
this.name = "ResourceNotFoundException";
|
|
188
|
+
this.$fault = "client";
|
|
189
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
190
|
+
this.Code = opts.Code;
|
|
191
|
+
this.Message = opts.Message;
|
|
192
|
+
this.RequestId = opts.RequestId;
|
|
193
|
+
this.ResourceName = opts.ResourceName;
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
180
197
|
var TranscribeMedicalContentIdentificationType;
|
|
181
198
|
(function (TranscribeMedicalContentIdentificationType) {
|
|
182
199
|
TranscribeMedicalContentIdentificationType["PHI"] = "PHI";
|
|
@@ -260,6 +277,23 @@ var TranscribeVocabularyFilterMethod;
|
|
|
260
277
|
TranscribeVocabularyFilterMethod["REMOVE"] = "remove";
|
|
261
278
|
TranscribeVocabularyFilterMethod["TAG"] = "tag";
|
|
262
279
|
})(TranscribeVocabularyFilterMethod = exports.TranscribeVocabularyFilterMethod || (exports.TranscribeVocabularyFilterMethod = {}));
|
|
280
|
+
class TooManyTagsException extends ChimeSDKMeetingsServiceException_1.ChimeSDKMeetingsServiceException {
|
|
281
|
+
constructor(opts) {
|
|
282
|
+
super({
|
|
283
|
+
name: "TooManyTagsException",
|
|
284
|
+
$fault: "client",
|
|
285
|
+
...opts,
|
|
286
|
+
});
|
|
287
|
+
this.name = "TooManyTagsException";
|
|
288
|
+
this.$fault = "client";
|
|
289
|
+
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
290
|
+
this.Code = opts.Code;
|
|
291
|
+
this.Message = opts.Message;
|
|
292
|
+
this.RequestId = opts.RequestId;
|
|
293
|
+
this.ResourceName = opts.ResourceName;
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
exports.TooManyTagsException = TooManyTagsException;
|
|
263
297
|
const AttendeeCapabilitiesFilterSensitiveLog = (obj) => ({
|
|
264
298
|
...obj,
|
|
265
299
|
});
|
|
@@ -324,6 +358,10 @@ const NotificationsConfigurationFilterSensitiveLog = (obj) => ({
|
|
|
324
358
|
...(obj.SqsQueueArn && { SqsQueueArn: smithy_client_1.SENSITIVE_STRING }),
|
|
325
359
|
});
|
|
326
360
|
exports.NotificationsConfigurationFilterSensitiveLog = NotificationsConfigurationFilterSensitiveLog;
|
|
361
|
+
const TagFilterSensitiveLog = (obj) => ({
|
|
362
|
+
...obj,
|
|
363
|
+
});
|
|
364
|
+
exports.TagFilterSensitiveLog = TagFilterSensitiveLog;
|
|
327
365
|
const CreateMeetingRequestFilterSensitiveLog = (obj) => ({
|
|
328
366
|
...obj,
|
|
329
367
|
...(obj.ClientRequestToken && { ClientRequestToken: smithy_client_1.SENSITIVE_STRING }),
|
|
@@ -402,6 +440,14 @@ const ListAttendeesResponseFilterSensitiveLog = (obj) => ({
|
|
|
402
440
|
...(obj.Attendees && { Attendees: obj.Attendees.map((item) => (0, exports.AttendeeFilterSensitiveLog)(item)) }),
|
|
403
441
|
});
|
|
404
442
|
exports.ListAttendeesResponseFilterSensitiveLog = ListAttendeesResponseFilterSensitiveLog;
|
|
443
|
+
const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
|
|
444
|
+
...obj,
|
|
445
|
+
});
|
|
446
|
+
exports.ListTagsForResourceRequestFilterSensitiveLog = ListTagsForResourceRequestFilterSensitiveLog;
|
|
447
|
+
const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
448
|
+
...obj,
|
|
449
|
+
});
|
|
450
|
+
exports.ListTagsForResourceResponseFilterSensitiveLog = ListTagsForResourceResponseFilterSensitiveLog;
|
|
405
451
|
const EngineTranscribeMedicalSettingsFilterSensitiveLog = (obj) => ({
|
|
406
452
|
...obj,
|
|
407
453
|
});
|
|
@@ -422,6 +468,22 @@ const StopMeetingTranscriptionRequestFilterSensitiveLog = (obj) => ({
|
|
|
422
468
|
...obj,
|
|
423
469
|
});
|
|
424
470
|
exports.StopMeetingTranscriptionRequestFilterSensitiveLog = StopMeetingTranscriptionRequestFilterSensitiveLog;
|
|
471
|
+
const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
472
|
+
...obj,
|
|
473
|
+
});
|
|
474
|
+
exports.TagResourceRequestFilterSensitiveLog = TagResourceRequestFilterSensitiveLog;
|
|
475
|
+
const TagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
476
|
+
...obj,
|
|
477
|
+
});
|
|
478
|
+
exports.TagResourceResponseFilterSensitiveLog = TagResourceResponseFilterSensitiveLog;
|
|
479
|
+
const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
480
|
+
...obj,
|
|
481
|
+
});
|
|
482
|
+
exports.UntagResourceRequestFilterSensitiveLog = UntagResourceRequestFilterSensitiveLog;
|
|
483
|
+
const UntagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
484
|
+
...obj,
|
|
485
|
+
});
|
|
486
|
+
exports.UntagResourceResponseFilterSensitiveLog = UntagResourceResponseFilterSensitiveLog;
|
|
425
487
|
const UpdateAttendeeCapabilitiesRequestFilterSensitiveLog = (obj) => ({
|
|
426
488
|
...obj,
|
|
427
489
|
});
|