@aws-sdk/client-chime-sdk-meetings 3.928.0 → 3.929.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +846 -941
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/ChimeSDKMeetingsClient.js +2 -0
- package/dist-es/commands/BatchCreateAttendeeCommand.js +3 -10
- package/dist-es/commands/BatchUpdateAttendeeCapabilitiesExceptCommand.js +3 -9
- package/dist-es/commands/CreateAttendeeCommand.js +3 -10
- package/dist-es/commands/CreateMeetingCommand.js +3 -10
- package/dist-es/commands/CreateMeetingWithAttendeesCommand.js +3 -10
- package/dist-es/commands/DeleteAttendeeCommand.js +3 -9
- package/dist-es/commands/DeleteMeetingCommand.js +3 -9
- package/dist-es/commands/GetAttendeeCommand.js +3 -10
- package/dist-es/commands/GetMeetingCommand.js +3 -10
- package/dist-es/commands/ListAttendeesCommand.js +3 -10
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/StartMeetingTranscriptionCommand.js +3 -9
- package/dist-es/commands/StopMeetingTranscriptionCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateAttendeeCapabilitiesCommand.js +3 -10
- package/dist-es/models/models_0.js +0 -87
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +784 -0
- package/dist-types/ChimeSDKMeetingsClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -68
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +88 -0
- package/dist-types/ts3.4/ChimeSDKMeetingsClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -47
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +94 -0
- package/package.json +2 -3
- package/dist-es/protocols/Aws_restJson1.js +0 -697
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -146
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -197
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getRuntimeConfig = void 0;
|
|
4
4
|
const core_1 = require("@aws-sdk/core");
|
|
5
|
+
const protocols_1 = require("@aws-sdk/core/protocols");
|
|
5
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
6
7
|
const url_parser_1 = require("@smithy/url-parser");
|
|
7
8
|
const util_base64_1 = require("@smithy/util-base64");
|
|
@@ -25,6 +26,7 @@ const getRuntimeConfig = (config) => {
|
|
|
25
26
|
},
|
|
26
27
|
],
|
|
27
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
+
protocol: config?.protocol ?? new protocols_1.AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.chimesdkmeetings" }),
|
|
28
30
|
serviceId: config?.serviceId ?? "Chime SDK Meetings",
|
|
29
31
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
30
32
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -4,6 +4,7 @@ import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detec
|
|
|
4
4
|
import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
|
|
5
5
|
import { resolveRegionConfig } from "@smithy/config-resolver";
|
|
6
6
|
import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, getHttpSigningPlugin, } from "@smithy/core";
|
|
7
|
+
import { getSchemaSerdePlugin } from "@smithy/core/schema";
|
|
7
8
|
import { getContentLengthPlugin } from "@smithy/middleware-content-length";
|
|
8
9
|
import { resolveEndpointConfig } from "@smithy/middleware-endpoint";
|
|
9
10
|
import { getRetryPlugin, resolveRetryConfig } from "@smithy/middleware-retry";
|
|
@@ -28,6 +29,7 @@ export class ChimeSDKMeetingsClient extends __Client {
|
|
|
28
29
|
const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
|
|
29
30
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
30
31
|
this.config = _config_8;
|
|
32
|
+
this.middlewareStack.use(getSchemaSerdePlugin(this.config));
|
|
31
33
|
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
32
34
|
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
33
35
|
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
6
|
-
import { de_BatchCreateAttendeeCommand, se_BatchCreateAttendeeCommand } from "../protocols/Aws_restJson1";
|
|
4
|
+
import { BatchCreateAttendee } from "../schemas/schemas_0";
|
|
7
5
|
export { $Command };
|
|
8
6
|
export class BatchCreateAttendeeCommand extends $Command
|
|
9
7
|
.classBuilder()
|
|
10
8
|
.ep(commonParams)
|
|
11
9
|
.m(function (Command, cs, config, o) {
|
|
12
|
-
return [
|
|
13
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
16
11
|
})
|
|
17
12
|
.s("ChimeMeetingsSDKService", "BatchCreateAttendee", {})
|
|
18
13
|
.n("ChimeSDKMeetingsClient", "BatchCreateAttendeeCommand")
|
|
19
|
-
.
|
|
20
|
-
.ser(se_BatchCreateAttendeeCommand)
|
|
21
|
-
.de(de_BatchCreateAttendeeCommand)
|
|
14
|
+
.sc(BatchCreateAttendee)
|
|
22
15
|
.build() {
|
|
23
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { BatchUpdateAttendeeCapabilitiesExcept } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class BatchUpdateAttendeeCapabilitiesExceptCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("ChimeMeetingsSDKService", "BatchUpdateAttendeeCapabilitiesExcept", {})
|
|
17
13
|
.n("ChimeSDKMeetingsClient", "BatchUpdateAttendeeCapabilitiesExceptCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_BatchUpdateAttendeeCapabilitiesExceptCommand)
|
|
20
|
-
.de(de_BatchUpdateAttendeeCapabilitiesExceptCommand)
|
|
14
|
+
.sc(BatchUpdateAttendeeCapabilitiesExcept)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
6
|
-
import { de_CreateAttendeeCommand, se_CreateAttendeeCommand } from "../protocols/Aws_restJson1";
|
|
4
|
+
import { CreateAttendee } from "../schemas/schemas_0";
|
|
7
5
|
export { $Command };
|
|
8
6
|
export class CreateAttendeeCommand extends $Command
|
|
9
7
|
.classBuilder()
|
|
10
8
|
.ep(commonParams)
|
|
11
9
|
.m(function (Command, cs, config, o) {
|
|
12
|
-
return [
|
|
13
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
16
11
|
})
|
|
17
12
|
.s("ChimeMeetingsSDKService", "CreateAttendee", {})
|
|
18
13
|
.n("ChimeSDKMeetingsClient", "CreateAttendeeCommand")
|
|
19
|
-
.
|
|
20
|
-
.ser(se_CreateAttendeeCommand)
|
|
21
|
-
.de(de_CreateAttendeeCommand)
|
|
14
|
+
.sc(CreateAttendee)
|
|
22
15
|
.build() {
|
|
23
16
|
}
|
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
6
|
-
import { de_CreateMeetingCommand, se_CreateMeetingCommand } from "../protocols/Aws_restJson1";
|
|
4
|
+
import { CreateMeeting } from "../schemas/schemas_0";
|
|
7
5
|
export { $Command };
|
|
8
6
|
export class CreateMeetingCommand extends $Command
|
|
9
7
|
.classBuilder()
|
|
10
8
|
.ep(commonParams)
|
|
11
9
|
.m(function (Command, cs, config, o) {
|
|
12
|
-
return [
|
|
13
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
16
11
|
})
|
|
17
12
|
.s("ChimeMeetingsSDKService", "CreateMeeting", {})
|
|
18
13
|
.n("ChimeSDKMeetingsClient", "CreateMeetingCommand")
|
|
19
|
-
.
|
|
20
|
-
.ser(se_CreateMeetingCommand)
|
|
21
|
-
.de(de_CreateMeetingCommand)
|
|
14
|
+
.sc(CreateMeeting)
|
|
22
15
|
.build() {
|
|
23
16
|
}
|
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
6
|
-
import { de_CreateMeetingWithAttendeesCommand, se_CreateMeetingWithAttendeesCommand } from "../protocols/Aws_restJson1";
|
|
4
|
+
import { CreateMeetingWithAttendees } from "../schemas/schemas_0";
|
|
7
5
|
export { $Command };
|
|
8
6
|
export class CreateMeetingWithAttendeesCommand extends $Command
|
|
9
7
|
.classBuilder()
|
|
10
8
|
.ep(commonParams)
|
|
11
9
|
.m(function (Command, cs, config, o) {
|
|
12
|
-
return [
|
|
13
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
16
11
|
})
|
|
17
12
|
.s("ChimeMeetingsSDKService", "CreateMeetingWithAttendees", {})
|
|
18
13
|
.n("ChimeSDKMeetingsClient", "CreateMeetingWithAttendeesCommand")
|
|
19
|
-
.
|
|
20
|
-
.ser(se_CreateMeetingWithAttendeesCommand)
|
|
21
|
-
.de(de_CreateMeetingWithAttendeesCommand)
|
|
14
|
+
.sc(CreateMeetingWithAttendees)
|
|
22
15
|
.build() {
|
|
23
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { DeleteAttendee } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class DeleteAttendeeCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("ChimeMeetingsSDKService", "DeleteAttendee", {})
|
|
17
13
|
.n("ChimeSDKMeetingsClient", "DeleteAttendeeCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_DeleteAttendeeCommand)
|
|
20
|
-
.de(de_DeleteAttendeeCommand)
|
|
14
|
+
.sc(DeleteAttendee)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { DeleteMeeting } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class DeleteMeetingCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("ChimeMeetingsSDKService", "DeleteMeeting", {})
|
|
17
13
|
.n("ChimeSDKMeetingsClient", "DeleteMeetingCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_DeleteMeetingCommand)
|
|
20
|
-
.de(de_DeleteMeetingCommand)
|
|
14
|
+
.sc(DeleteMeeting)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
6
|
-
import { de_GetAttendeeCommand, se_GetAttendeeCommand } from "../protocols/Aws_restJson1";
|
|
4
|
+
import { GetAttendee } from "../schemas/schemas_0";
|
|
7
5
|
export { $Command };
|
|
8
6
|
export class GetAttendeeCommand extends $Command
|
|
9
7
|
.classBuilder()
|
|
10
8
|
.ep(commonParams)
|
|
11
9
|
.m(function (Command, cs, config, o) {
|
|
12
|
-
return [
|
|
13
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
16
11
|
})
|
|
17
12
|
.s("ChimeMeetingsSDKService", "GetAttendee", {})
|
|
18
13
|
.n("ChimeSDKMeetingsClient", "GetAttendeeCommand")
|
|
19
|
-
.
|
|
20
|
-
.ser(se_GetAttendeeCommand)
|
|
21
|
-
.de(de_GetAttendeeCommand)
|
|
14
|
+
.sc(GetAttendee)
|
|
22
15
|
.build() {
|
|
23
16
|
}
|
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
6
|
-
import { de_GetMeetingCommand, se_GetMeetingCommand } from "../protocols/Aws_restJson1";
|
|
4
|
+
import { GetMeeting } from "../schemas/schemas_0";
|
|
7
5
|
export { $Command };
|
|
8
6
|
export class GetMeetingCommand extends $Command
|
|
9
7
|
.classBuilder()
|
|
10
8
|
.ep(commonParams)
|
|
11
9
|
.m(function (Command, cs, config, o) {
|
|
12
|
-
return [
|
|
13
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
16
11
|
})
|
|
17
12
|
.s("ChimeMeetingsSDKService", "GetMeeting", {})
|
|
18
13
|
.n("ChimeSDKMeetingsClient", "GetMeetingCommand")
|
|
19
|
-
.
|
|
20
|
-
.ser(se_GetMeetingCommand)
|
|
21
|
-
.de(de_GetMeetingCommand)
|
|
14
|
+
.sc(GetMeeting)
|
|
22
15
|
.build() {
|
|
23
16
|
}
|
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
6
|
-
import { de_ListAttendeesCommand, se_ListAttendeesCommand } from "../protocols/Aws_restJson1";
|
|
4
|
+
import { ListAttendees } from "../schemas/schemas_0";
|
|
7
5
|
export { $Command };
|
|
8
6
|
export class ListAttendeesCommand extends $Command
|
|
9
7
|
.classBuilder()
|
|
10
8
|
.ep(commonParams)
|
|
11
9
|
.m(function (Command, cs, config, o) {
|
|
12
|
-
return [
|
|
13
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
16
11
|
})
|
|
17
12
|
.s("ChimeMeetingsSDKService", "ListAttendees", {})
|
|
18
13
|
.n("ChimeSDKMeetingsClient", "ListAttendeesCommand")
|
|
19
|
-
.
|
|
20
|
-
.ser(se_ListAttendeesCommand)
|
|
21
|
-
.de(de_ListAttendeesCommand)
|
|
14
|
+
.sc(ListAttendees)
|
|
22
15
|
.build() {
|
|
23
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ListTagsForResourceCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("ChimeMeetingsSDKService", "ListTagsForResource", {})
|
|
17
13
|
.n("ChimeSDKMeetingsClient", "ListTagsForResourceCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ListTagsForResourceCommand)
|
|
20
|
-
.de(de_ListTagsForResourceCommand)
|
|
14
|
+
.sc(ListTagsForResource)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { StartMeetingTranscription } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class StartMeetingTranscriptionCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("ChimeMeetingsSDKService", "StartMeetingTranscription", {})
|
|
17
13
|
.n("ChimeSDKMeetingsClient", "StartMeetingTranscriptionCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_StartMeetingTranscriptionCommand)
|
|
20
|
-
.de(de_StartMeetingTranscriptionCommand)
|
|
14
|
+
.sc(StartMeetingTranscription)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { StopMeetingTranscription } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class StopMeetingTranscriptionCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("ChimeMeetingsSDKService", "StopMeetingTranscription", {})
|
|
17
13
|
.n("ChimeSDKMeetingsClient", "StopMeetingTranscriptionCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_StopMeetingTranscriptionCommand)
|
|
20
|
-
.de(de_StopMeetingTranscriptionCommand)
|
|
14
|
+
.sc(StopMeetingTranscription)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { TagResource } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class TagResourceCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("ChimeMeetingsSDKService", "TagResource", {})
|
|
17
13
|
.n("ChimeSDKMeetingsClient", "TagResourceCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_TagResourceCommand)
|
|
20
|
-
.de(de_TagResourceCommand)
|
|
14
|
+
.sc(TagResource)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { UntagResource } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class UntagResourceCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("ChimeMeetingsSDKService", "UntagResource", {})
|
|
17
13
|
.n("ChimeSDKMeetingsClient", "UntagResourceCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_UntagResourceCommand)
|
|
20
|
-
.de(de_UntagResourceCommand)
|
|
14
|
+
.sc(UntagResource)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
6
|
-
import { de_UpdateAttendeeCapabilitiesCommand, se_UpdateAttendeeCapabilitiesCommand } from "../protocols/Aws_restJson1";
|
|
4
|
+
import { UpdateAttendeeCapabilities } from "../schemas/schemas_0";
|
|
7
5
|
export { $Command };
|
|
8
6
|
export class UpdateAttendeeCapabilitiesCommand extends $Command
|
|
9
7
|
.classBuilder()
|
|
10
8
|
.ep(commonParams)
|
|
11
9
|
.m(function (Command, cs, config, o) {
|
|
12
|
-
return [
|
|
13
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
16
11
|
})
|
|
17
12
|
.s("ChimeMeetingsSDKService", "UpdateAttendeeCapabilities", {})
|
|
18
13
|
.n("ChimeSDKMeetingsClient", "UpdateAttendeeCapabilitiesCommand")
|
|
19
|
-
.
|
|
20
|
-
.ser(se_UpdateAttendeeCapabilitiesCommand)
|
|
21
|
-
.de(de_UpdateAttendeeCapabilitiesCommand)
|
|
14
|
+
.sc(UpdateAttendeeCapabilities)
|
|
22
15
|
.build() {
|
|
23
16
|
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
1
|
import { ChimeSDKMeetingsServiceException as __BaseException } from "./ChimeSDKMeetingsServiceException";
|
|
3
2
|
export const MediaCapabilities = {
|
|
4
3
|
NONE: "None",
|
|
@@ -320,89 +319,3 @@ export class TooManyTagsException extends __BaseException {
|
|
|
320
319
|
this.ResourceName = opts.ResourceName;
|
|
321
320
|
}
|
|
322
321
|
}
|
|
323
|
-
export const AttendeeFilterSensitiveLog = (obj) => ({
|
|
324
|
-
...obj,
|
|
325
|
-
...(obj.ExternalUserId && { ExternalUserId: SENSITIVE_STRING }),
|
|
326
|
-
...(obj.JoinToken && { JoinToken: SENSITIVE_STRING }),
|
|
327
|
-
});
|
|
328
|
-
export const CreateAttendeeRequestItemFilterSensitiveLog = (obj) => ({
|
|
329
|
-
...obj,
|
|
330
|
-
...(obj.ExternalUserId && { ExternalUserId: SENSITIVE_STRING }),
|
|
331
|
-
});
|
|
332
|
-
export const BatchCreateAttendeeRequestFilterSensitiveLog = (obj) => ({
|
|
333
|
-
...obj,
|
|
334
|
-
...(obj.Attendees && { Attendees: obj.Attendees.map((item) => CreateAttendeeRequestItemFilterSensitiveLog(item)) }),
|
|
335
|
-
});
|
|
336
|
-
export const CreateAttendeeErrorFilterSensitiveLog = (obj) => ({
|
|
337
|
-
...obj,
|
|
338
|
-
...(obj.ExternalUserId && { ExternalUserId: SENSITIVE_STRING }),
|
|
339
|
-
});
|
|
340
|
-
export const BatchCreateAttendeeResponseFilterSensitiveLog = (obj) => ({
|
|
341
|
-
...obj,
|
|
342
|
-
...(obj.Attendees && { Attendees: obj.Attendees.map((item) => AttendeeFilterSensitiveLog(item)) }),
|
|
343
|
-
...(obj.Errors && { Errors: obj.Errors.map((item) => CreateAttendeeErrorFilterSensitiveLog(item)) }),
|
|
344
|
-
});
|
|
345
|
-
export const CreateAttendeeRequestFilterSensitiveLog = (obj) => ({
|
|
346
|
-
...obj,
|
|
347
|
-
...(obj.ExternalUserId && { ExternalUserId: SENSITIVE_STRING }),
|
|
348
|
-
});
|
|
349
|
-
export const CreateAttendeeResponseFilterSensitiveLog = (obj) => ({
|
|
350
|
-
...obj,
|
|
351
|
-
...(obj.Attendee && { Attendee: AttendeeFilterSensitiveLog(obj.Attendee) }),
|
|
352
|
-
});
|
|
353
|
-
export const NotificationsConfigurationFilterSensitiveLog = (obj) => ({
|
|
354
|
-
...obj,
|
|
355
|
-
...(obj.LambdaFunctionArn && { LambdaFunctionArn: SENSITIVE_STRING }),
|
|
356
|
-
...(obj.SnsTopicArn && { SnsTopicArn: SENSITIVE_STRING }),
|
|
357
|
-
...(obj.SqsQueueArn && { SqsQueueArn: SENSITIVE_STRING }),
|
|
358
|
-
});
|
|
359
|
-
export const CreateMeetingRequestFilterSensitiveLog = (obj) => ({
|
|
360
|
-
...obj,
|
|
361
|
-
...(obj.ClientRequestToken && { ClientRequestToken: SENSITIVE_STRING }),
|
|
362
|
-
...(obj.MeetingHostId && { MeetingHostId: SENSITIVE_STRING }),
|
|
363
|
-
...(obj.ExternalMeetingId && { ExternalMeetingId: SENSITIVE_STRING }),
|
|
364
|
-
...(obj.NotificationsConfiguration && {
|
|
365
|
-
NotificationsConfiguration: NotificationsConfigurationFilterSensitiveLog(obj.NotificationsConfiguration),
|
|
366
|
-
}),
|
|
367
|
-
});
|
|
368
|
-
export const MeetingFilterSensitiveLog = (obj) => ({
|
|
369
|
-
...obj,
|
|
370
|
-
...(obj.MeetingHostId && { MeetingHostId: SENSITIVE_STRING }),
|
|
371
|
-
...(obj.ExternalMeetingId && { ExternalMeetingId: SENSITIVE_STRING }),
|
|
372
|
-
});
|
|
373
|
-
export const CreateMeetingResponseFilterSensitiveLog = (obj) => ({
|
|
374
|
-
...obj,
|
|
375
|
-
...(obj.Meeting && { Meeting: MeetingFilterSensitiveLog(obj.Meeting) }),
|
|
376
|
-
});
|
|
377
|
-
export const CreateMeetingWithAttendeesRequestFilterSensitiveLog = (obj) => ({
|
|
378
|
-
...obj,
|
|
379
|
-
...(obj.ClientRequestToken && { ClientRequestToken: SENSITIVE_STRING }),
|
|
380
|
-
...(obj.MeetingHostId && { MeetingHostId: SENSITIVE_STRING }),
|
|
381
|
-
...(obj.ExternalMeetingId && { ExternalMeetingId: SENSITIVE_STRING }),
|
|
382
|
-
...(obj.NotificationsConfiguration && {
|
|
383
|
-
NotificationsConfiguration: NotificationsConfigurationFilterSensitiveLog(obj.NotificationsConfiguration),
|
|
384
|
-
}),
|
|
385
|
-
...(obj.Attendees && { Attendees: obj.Attendees.map((item) => CreateAttendeeRequestItemFilterSensitiveLog(item)) }),
|
|
386
|
-
});
|
|
387
|
-
export const CreateMeetingWithAttendeesResponseFilterSensitiveLog = (obj) => ({
|
|
388
|
-
...obj,
|
|
389
|
-
...(obj.Meeting && { Meeting: MeetingFilterSensitiveLog(obj.Meeting) }),
|
|
390
|
-
...(obj.Attendees && { Attendees: obj.Attendees.map((item) => AttendeeFilterSensitiveLog(item)) }),
|
|
391
|
-
...(obj.Errors && { Errors: obj.Errors.map((item) => CreateAttendeeErrorFilterSensitiveLog(item)) }),
|
|
392
|
-
});
|
|
393
|
-
export const GetAttendeeResponseFilterSensitiveLog = (obj) => ({
|
|
394
|
-
...obj,
|
|
395
|
-
...(obj.Attendee && { Attendee: AttendeeFilterSensitiveLog(obj.Attendee) }),
|
|
396
|
-
});
|
|
397
|
-
export const GetMeetingResponseFilterSensitiveLog = (obj) => ({
|
|
398
|
-
...obj,
|
|
399
|
-
...(obj.Meeting && { Meeting: MeetingFilterSensitiveLog(obj.Meeting) }),
|
|
400
|
-
});
|
|
401
|
-
export const ListAttendeesResponseFilterSensitiveLog = (obj) => ({
|
|
402
|
-
...obj,
|
|
403
|
-
...(obj.Attendees && { Attendees: obj.Attendees.map((item) => AttendeeFilterSensitiveLog(item)) }),
|
|
404
|
-
});
|
|
405
|
-
export const UpdateAttendeeCapabilitiesResponseFilterSensitiveLog = (obj) => ({
|
|
406
|
-
...obj,
|
|
407
|
-
...(obj.Attendee && { Attendee: AttendeeFilterSensitiveLog(obj.Attendee) }),
|
|
408
|
-
});
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { AwsSdkSigV4Signer } from "@aws-sdk/core";
|
|
2
|
+
import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
|
|
2
3
|
import { NoOpLogger } from "@smithy/smithy-client";
|
|
3
4
|
import { parseUrl } from "@smithy/url-parser";
|
|
4
5
|
import { fromBase64, toBase64 } from "@smithy/util-base64";
|
|
@@ -22,6 +23,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
22
23
|
},
|
|
23
24
|
],
|
|
24
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
+
protocol: config?.protocol ?? new AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.chimesdkmeetings" }),
|
|
25
27
|
serviceId: config?.serviceId ?? "Chime SDK Meetings",
|
|
26
28
|
urlParser: config?.urlParser ?? parseUrl,
|
|
27
29
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|