@aws-sdk/client-polly 3.490.0 → 3.495.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/Polly.js CHANGED
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.Polly = void 0;
4
- const smithy_client_1 = require("@smithy/smithy-client");
5
- const DeleteLexiconCommand_1 = require("./commands/DeleteLexiconCommand");
6
- const DescribeVoicesCommand_1 = require("./commands/DescribeVoicesCommand");
7
- const GetLexiconCommand_1 = require("./commands/GetLexiconCommand");
8
- const GetSpeechSynthesisTaskCommand_1 = require("./commands/GetSpeechSynthesisTaskCommand");
9
- const ListLexiconsCommand_1 = require("./commands/ListLexiconsCommand");
10
- const ListSpeechSynthesisTasksCommand_1 = require("./commands/ListSpeechSynthesisTasksCommand");
11
- const PutLexiconCommand_1 = require("./commands/PutLexiconCommand");
12
- const StartSpeechSynthesisTaskCommand_1 = require("./commands/StartSpeechSynthesisTaskCommand");
13
- const SynthesizeSpeechCommand_1 = require("./commands/SynthesizeSpeechCommand");
14
- const PollyClient_1 = require("./PollyClient");
15
- const commands = {
16
- DeleteLexiconCommand: DeleteLexiconCommand_1.DeleteLexiconCommand,
17
- DescribeVoicesCommand: DescribeVoicesCommand_1.DescribeVoicesCommand,
18
- GetLexiconCommand: GetLexiconCommand_1.GetLexiconCommand,
19
- GetSpeechSynthesisTaskCommand: GetSpeechSynthesisTaskCommand_1.GetSpeechSynthesisTaskCommand,
20
- ListLexiconsCommand: ListLexiconsCommand_1.ListLexiconsCommand,
21
- ListSpeechSynthesisTasksCommand: ListSpeechSynthesisTasksCommand_1.ListSpeechSynthesisTasksCommand,
22
- PutLexiconCommand: PutLexiconCommand_1.PutLexiconCommand,
23
- StartSpeechSynthesisTaskCommand: StartSpeechSynthesisTaskCommand_1.StartSpeechSynthesisTaskCommand,
24
- SynthesizeSpeechCommand: SynthesizeSpeechCommand_1.SynthesizeSpeechCommand,
25
- };
26
- class Polly extends PollyClient_1.PollyClient {
27
- }
28
- exports.Polly = Polly;
29
- (0, smithy_client_1.createAggregatedClient)(commands, Polly);
1
+ module.exports = require("./index.js");
@@ -1,56 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PollyClient = exports.__Client = void 0;
4
- const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
5
- const middleware_logger_1 = require("@aws-sdk/middleware-logger");
6
- const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
7
- const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
8
- const config_resolver_1 = require("@smithy/config-resolver");
9
- const core_1 = require("@smithy/core");
10
- const middleware_content_length_1 = require("@smithy/middleware-content-length");
11
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
12
- const middleware_retry_1 = require("@smithy/middleware-retry");
13
- const smithy_client_1 = require("@smithy/smithy-client");
14
- Object.defineProperty(exports, "__Client", { enumerable: true, get: function () { return smithy_client_1.Client; } });
15
- const httpAuthSchemeProvider_1 = require("./auth/httpAuthSchemeProvider");
16
- const EndpointParameters_1 = require("./endpoint/EndpointParameters");
17
- const runtimeConfig_1 = require("./runtimeConfig");
18
- const runtimeExtensions_1 = require("./runtimeExtensions");
19
- class PollyClient extends smithy_client_1.Client {
20
- constructor(...[configuration]) {
21
- const _config_0 = (0, runtimeConfig_1.getRuntimeConfig)(configuration || {});
22
- const _config_1 = (0, EndpointParameters_1.resolveClientEndpointParameters)(_config_0);
23
- const _config_2 = (0, config_resolver_1.resolveRegionConfig)(_config_1);
24
- const _config_3 = (0, middleware_endpoint_1.resolveEndpointConfig)(_config_2);
25
- const _config_4 = (0, middleware_retry_1.resolveRetryConfig)(_config_3);
26
- const _config_5 = (0, middleware_host_header_1.resolveHostHeaderConfig)(_config_4);
27
- const _config_6 = (0, middleware_user_agent_1.resolveUserAgentConfig)(_config_5);
28
- const _config_7 = (0, httpAuthSchemeProvider_1.resolveHttpAuthSchemeConfig)(_config_6);
29
- const _config_8 = (0, runtimeExtensions_1.resolveRuntimeExtensions)(_config_7, configuration?.extensions || []);
30
- super(_config_8);
31
- this.config = _config_8;
32
- this.middlewareStack.use((0, middleware_retry_1.getRetryPlugin)(this.config));
33
- this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
34
- this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
35
- this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
36
- this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
37
- this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
38
- this.middlewareStack.use((0, core_1.getHttpAuthSchemeEndpointRuleSetPlugin)(this.config, {
39
- httpAuthSchemeParametersProvider: this.getDefaultHttpAuthSchemeParametersProvider(),
40
- identityProviderConfigProvider: this.getIdentityProviderConfigProvider(),
41
- }));
42
- this.middlewareStack.use((0, core_1.getHttpSigningPlugin)(this.config));
43
- }
44
- destroy() {
45
- super.destroy();
46
- }
47
- getDefaultHttpAuthSchemeParametersProvider() {
48
- return httpAuthSchemeProvider_1.defaultPollyHttpAuthSchemeParametersProvider;
49
- }
50
- getIdentityProviderConfigProvider() {
51
- return async (config) => new core_1.DefaultIdentityProviderConfig({
52
- "aws.auth#sigv4": config.credentials,
53
- });
54
- }
55
- }
56
- exports.PollyClient = PollyClient;
1
+ module.exports = require("./index.js");
@@ -1,43 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.resolveHttpAuthRuntimeConfig = exports.getHttpAuthExtensionConfiguration = void 0;
4
- const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
5
- const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
6
- let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
7
- let _credentials = runtimeConfig.credentials;
8
- return {
9
- setHttpAuthScheme(httpAuthScheme) {
10
- const index = _httpAuthSchemes.findIndex((scheme) => scheme.schemeId === httpAuthScheme.schemeId);
11
- if (index === -1) {
12
- _httpAuthSchemes.push(httpAuthScheme);
13
- }
14
- else {
15
- _httpAuthSchemes.splice(index, 1, httpAuthScheme);
16
- }
17
- },
18
- httpAuthSchemes() {
19
- return _httpAuthSchemes;
20
- },
21
- setHttpAuthSchemeProvider(httpAuthSchemeProvider) {
22
- _httpAuthSchemeProvider = httpAuthSchemeProvider;
23
- },
24
- httpAuthSchemeProvider() {
25
- return _httpAuthSchemeProvider;
26
- },
27
- setCredentials(credentials) {
28
- _credentials = credentials;
29
- },
30
- credentials() {
31
- return _credentials;
32
- },
33
- };
34
- };
35
- exports.getHttpAuthExtensionConfiguration = getHttpAuthExtensionConfiguration;
36
- const resolveHttpAuthRuntimeConfig = (config) => {
37
- return {
38
- httpAuthSchemes: config.httpAuthSchemes(),
39
- httpAuthSchemeProvider: config.httpAuthSchemeProvider(),
40
- credentials: config.credentials(),
41
- };
42
- };
43
- exports.resolveHttpAuthRuntimeConfig = resolveHttpAuthRuntimeConfig;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DeleteLexiconCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class DeleteLexiconCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("Parrot_v1", "DeleteLexicon", {})
22
- .n("PollyClient", "DeleteLexiconCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_DeleteLexiconCommand)
25
- .de(Aws_restJson1_1.de_DeleteLexiconCommand)
26
- .build() {
27
- }
28
- exports.DeleteLexiconCommand = DeleteLexiconCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DescribeVoicesCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class DescribeVoicesCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("Parrot_v1", "DescribeVoices", {})
22
- .n("PollyClient", "DescribeVoicesCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_DescribeVoicesCommand)
25
- .de(Aws_restJson1_1.de_DescribeVoicesCommand)
26
- .build() {
27
- }
28
- exports.DescribeVoicesCommand = DescribeVoicesCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetLexiconCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const models_0_1 = require("../models/models_0");
10
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
11
- class GetLexiconCommand extends smithy_client_1.Command
12
- .classBuilder()
13
- .ep({
14
- ...EndpointParameters_1.commonParams,
15
- })
16
- .m(function (Command, cs, config, o) {
17
- return [
18
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
19
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
20
- ];
21
- })
22
- .s("Parrot_v1", "GetLexicon", {})
23
- .n("PollyClient", "GetLexiconCommand")
24
- .f(void 0, models_0_1.GetLexiconOutputFilterSensitiveLog)
25
- .ser(Aws_restJson1_1.se_GetLexiconCommand)
26
- .de(Aws_restJson1_1.de_GetLexiconCommand)
27
- .build() {
28
- }
29
- exports.GetLexiconCommand = GetLexiconCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetSpeechSynthesisTaskCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class GetSpeechSynthesisTaskCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("Parrot_v1", "GetSpeechSynthesisTask", {})
22
- .n("PollyClient", "GetSpeechSynthesisTaskCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_GetSpeechSynthesisTaskCommand)
25
- .de(Aws_restJson1_1.de_GetSpeechSynthesisTaskCommand)
26
- .build() {
27
- }
28
- exports.GetSpeechSynthesisTaskCommand = GetSpeechSynthesisTaskCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListLexiconsCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class ListLexiconsCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("Parrot_v1", "ListLexicons", {})
22
- .n("PollyClient", "ListLexiconsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListLexiconsCommand)
25
- .de(Aws_restJson1_1.de_ListLexiconsCommand)
26
- .build() {
27
- }
28
- exports.ListLexiconsCommand = ListLexiconsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListSpeechSynthesisTasksCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class ListSpeechSynthesisTasksCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("Parrot_v1", "ListSpeechSynthesisTasks", {})
22
- .n("PollyClient", "ListSpeechSynthesisTasksCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListSpeechSynthesisTasksCommand)
25
- .de(Aws_restJson1_1.de_ListSpeechSynthesisTasksCommand)
26
- .build() {
27
- }
28
- exports.ListSpeechSynthesisTasksCommand = ListSpeechSynthesisTasksCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PutLexiconCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const models_0_1 = require("../models/models_0");
10
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
11
- class PutLexiconCommand extends smithy_client_1.Command
12
- .classBuilder()
13
- .ep({
14
- ...EndpointParameters_1.commonParams,
15
- })
16
- .m(function (Command, cs, config, o) {
17
- return [
18
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
19
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
20
- ];
21
- })
22
- .s("Parrot_v1", "PutLexicon", {})
23
- .n("PollyClient", "PutLexiconCommand")
24
- .f(models_0_1.PutLexiconInputFilterSensitiveLog, void 0)
25
- .ser(Aws_restJson1_1.se_PutLexiconCommand)
26
- .de(Aws_restJson1_1.de_PutLexiconCommand)
27
- .build() {
28
- }
29
- exports.PutLexiconCommand = PutLexiconCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.StartSpeechSynthesisTaskCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class StartSpeechSynthesisTaskCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("Parrot_v1", "StartSpeechSynthesisTask", {})
22
- .n("PollyClient", "StartSpeechSynthesisTaskCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_StartSpeechSynthesisTaskCommand)
25
- .de(Aws_restJson1_1.de_StartSpeechSynthesisTaskCommand)
26
- .build() {
27
- }
28
- exports.StartSpeechSynthesisTaskCommand = StartSpeechSynthesisTaskCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.SynthesizeSpeechCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const models_0_1 = require("../models/models_0");
10
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
11
- class SynthesizeSpeechCommand extends smithy_client_1.Command
12
- .classBuilder()
13
- .ep({
14
- ...EndpointParameters_1.commonParams,
15
- })
16
- .m(function (Command, cs, config, o) {
17
- return [
18
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
19
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
20
- ];
21
- })
22
- .s("Parrot_v1", "SynthesizeSpeech", {})
23
- .n("PollyClient", "SynthesizeSpeechCommand")
24
- .f(void 0, models_0_1.SynthesizeSpeechOutputFilterSensitiveLog)
25
- .ser(Aws_restJson1_1.se_SynthesizeSpeechCommand)
26
- .de(Aws_restJson1_1.de_SynthesizeSpeechCommand)
27
- .build() {
28
- }
29
- exports.SynthesizeSpeechCommand = SynthesizeSpeechCommand;
1
+ module.exports = require("../index.js");
@@ -1,12 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./DeleteLexiconCommand"), exports);
5
- tslib_1.__exportStar(require("./DescribeVoicesCommand"), exports);
6
- tslib_1.__exportStar(require("./GetLexiconCommand"), exports);
7
- tslib_1.__exportStar(require("./GetSpeechSynthesisTaskCommand"), exports);
8
- tslib_1.__exportStar(require("./ListLexiconsCommand"), exports);
9
- tslib_1.__exportStar(require("./ListSpeechSynthesisTasksCommand"), exports);
10
- tslib_1.__exportStar(require("./PutLexiconCommand"), exports);
11
- tslib_1.__exportStar(require("./StartSpeechSynthesisTaskCommand"), exports);
12
- tslib_1.__exportStar(require("./SynthesizeSpeechCommand"), exports);
1
+ module.exports = require("../index.js");
@@ -1,18 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.commonParams = exports.resolveClientEndpointParameters = void 0;
4
- const resolveClientEndpointParameters = (options) => {
5
- return {
6
- ...options,
7
- useDualstackEndpoint: options.useDualstackEndpoint ?? false,
8
- useFipsEndpoint: options.useFipsEndpoint ?? false,
9
- defaultSigningName: "polly",
10
- };
11
- };
12
- exports.resolveClientEndpointParameters = resolveClientEndpointParameters;
13
- exports.commonParams = {
14
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
15
- Endpoint: { type: "builtInParams", name: "endpoint" },
16
- Region: { type: "builtInParams", name: "region" },
17
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
18
- };
1
+ module.exports = require("../index.js");
@@ -1,2 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ module.exports = require("./index.js");