@aws-sdk/client-lex-runtime-service 3.183.0 → 3.186.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 CHANGED
@@ -3,6 +3,25 @@
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.186.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.185.0...v3.186.0) (2022-10-06)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-lex-runtime-service
9
+
10
+
11
+
12
+
13
+
14
+ # [3.185.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.184.0...v3.185.0) (2022-10-05)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * **codegen:** add deser check for x-amz-request-id ([#4015](https://github.com/aws/aws-sdk-js-v3/issues/4015)) ([6ff07bd](https://github.com/aws/aws-sdk-js-v3/commit/6ff07bd7e72bd56725f318013ac1d6d0fbbcdd9a))
20
+
21
+
22
+
23
+
24
+
6
25
  # [3.183.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.182.0...v3.183.0) (2022-10-03)
7
26
 
8
27
  **Note:** Version bump only for package @aws-sdk/client-lex-runtime-service
@@ -901,10 +901,10 @@ const deserializeAws_restJson1StringMap = (output, context) => {
901
901
  }, {});
902
902
  };
903
903
  const deserializeMetadata = (output) => {
904
- var _a;
904
+ var _a, _b;
905
905
  return ({
906
906
  httpStatusCode: output.statusCode,
907
- requestId: (_a = output.headers["x-amzn-requestid"]) !== null && _a !== void 0 ? _a : output.headers["x-amzn-request-id"],
907
+ requestId: (_b = (_a = output.headers["x-amzn-requestid"]) !== null && _a !== void 0 ? _a : output.headers["x-amzn-request-id"]) !== null && _b !== void 0 ? _b : output.headers["x-amz-request-id"],
908
908
  extendedRequestId: output.headers["x-amz-id-2"],
909
909
  cfId: output.headers["x-amz-cf-id"],
910
910
  });
@@ -1,78 +1,85 @@
1
+ import { __extends } from "tslib";
1
2
  import { DeleteSessionCommand, } from "./commands/DeleteSessionCommand";
2
3
  import { GetSessionCommand } from "./commands/GetSessionCommand";
3
4
  import { PostContentCommand } from "./commands/PostContentCommand";
4
5
  import { PostTextCommand } from "./commands/PostTextCommand";
5
6
  import { PutSessionCommand } from "./commands/PutSessionCommand";
6
7
  import { LexRuntimeServiceClient } from "./LexRuntimeServiceClient";
7
- export class LexRuntimeService extends LexRuntimeServiceClient {
8
- deleteSession(args, optionsOrCb, cb) {
9
- const command = new DeleteSessionCommand(args);
8
+ var LexRuntimeService = (function (_super) {
9
+ __extends(LexRuntimeService, _super);
10
+ function LexRuntimeService() {
11
+ return _super !== null && _super.apply(this, arguments) || this;
12
+ }
13
+ LexRuntimeService.prototype.deleteSession = function (args, optionsOrCb, cb) {
14
+ var command = new DeleteSessionCommand(args);
10
15
  if (typeof optionsOrCb === "function") {
11
16
  this.send(command, optionsOrCb);
12
17
  }
13
18
  else if (typeof cb === "function") {
14
19
  if (typeof optionsOrCb !== "object")
15
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
20
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
16
21
  this.send(command, optionsOrCb || {}, cb);
17
22
  }
18
23
  else {
19
24
  return this.send(command, optionsOrCb);
20
25
  }
21
- }
22
- getSession(args, optionsOrCb, cb) {
23
- const command = new GetSessionCommand(args);
26
+ };
27
+ LexRuntimeService.prototype.getSession = function (args, optionsOrCb, cb) {
28
+ var command = new GetSessionCommand(args);
24
29
  if (typeof optionsOrCb === "function") {
25
30
  this.send(command, optionsOrCb);
26
31
  }
27
32
  else if (typeof cb === "function") {
28
33
  if (typeof optionsOrCb !== "object")
29
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
34
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
30
35
  this.send(command, optionsOrCb || {}, cb);
31
36
  }
32
37
  else {
33
38
  return this.send(command, optionsOrCb);
34
39
  }
35
- }
36
- postContent(args, optionsOrCb, cb) {
37
- const command = new PostContentCommand(args);
40
+ };
41
+ LexRuntimeService.prototype.postContent = function (args, optionsOrCb, cb) {
42
+ var command = new PostContentCommand(args);
38
43
  if (typeof optionsOrCb === "function") {
39
44
  this.send(command, optionsOrCb);
40
45
  }
41
46
  else if (typeof cb === "function") {
42
47
  if (typeof optionsOrCb !== "object")
43
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
48
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
44
49
  this.send(command, optionsOrCb || {}, cb);
45
50
  }
46
51
  else {
47
52
  return this.send(command, optionsOrCb);
48
53
  }
49
- }
50
- postText(args, optionsOrCb, cb) {
51
- const command = new PostTextCommand(args);
54
+ };
55
+ LexRuntimeService.prototype.postText = function (args, optionsOrCb, cb) {
56
+ var command = new PostTextCommand(args);
52
57
  if (typeof optionsOrCb === "function") {
53
58
  this.send(command, optionsOrCb);
54
59
  }
55
60
  else if (typeof cb === "function") {
56
61
  if (typeof optionsOrCb !== "object")
57
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
62
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
58
63
  this.send(command, optionsOrCb || {}, cb);
59
64
  }
60
65
  else {
61
66
  return this.send(command, optionsOrCb);
62
67
  }
63
- }
64
- putSession(args, optionsOrCb, cb) {
65
- const command = new PutSessionCommand(args);
68
+ };
69
+ LexRuntimeService.prototype.putSession = function (args, optionsOrCb, cb) {
70
+ var command = new PutSessionCommand(args);
66
71
  if (typeof optionsOrCb === "function") {
67
72
  this.send(command, optionsOrCb);
68
73
  }
69
74
  else if (typeof cb === "function") {
70
75
  if (typeof optionsOrCb !== "object")
71
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
76
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
72
77
  this.send(command, optionsOrCb || {}, cb);
73
78
  }
74
79
  else {
75
80
  return this.send(command, optionsOrCb);
76
81
  }
77
- }
78
- }
82
+ };
83
+ return LexRuntimeService;
84
+ }(LexRuntimeServiceClient));
85
+ export { LexRuntimeService };
@@ -1,3 +1,4 @@
1
+ import { __extends } from "tslib";
1
2
  import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-resolver";
2
3
  import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
3
4
  import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
@@ -8,26 +9,31 @@ import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-sig
8
9
  import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
9
10
  import { Client as __Client, } from "@aws-sdk/smithy-client";
10
11
  import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
11
- export class LexRuntimeServiceClient extends __Client {
12
- constructor(configuration) {
13
- const _config_0 = __getRuntimeConfig(configuration);
14
- const _config_1 = resolveRegionConfig(_config_0);
15
- const _config_2 = resolveEndpointsConfig(_config_1);
16
- const _config_3 = resolveRetryConfig(_config_2);
17
- const _config_4 = resolveHostHeaderConfig(_config_3);
18
- const _config_5 = resolveAwsAuthConfig(_config_4);
19
- const _config_6 = resolveUserAgentConfig(_config_5);
20
- super(_config_6);
21
- this.config = _config_6;
22
- this.middlewareStack.use(getRetryPlugin(this.config));
23
- this.middlewareStack.use(getContentLengthPlugin(this.config));
24
- this.middlewareStack.use(getHostHeaderPlugin(this.config));
25
- this.middlewareStack.use(getLoggerPlugin(this.config));
26
- this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
27
- this.middlewareStack.use(getAwsAuthPlugin(this.config));
28
- this.middlewareStack.use(getUserAgentPlugin(this.config));
12
+ var LexRuntimeServiceClient = (function (_super) {
13
+ __extends(LexRuntimeServiceClient, _super);
14
+ function LexRuntimeServiceClient(configuration) {
15
+ var _this = this;
16
+ var _config_0 = __getRuntimeConfig(configuration);
17
+ var _config_1 = resolveRegionConfig(_config_0);
18
+ var _config_2 = resolveEndpointsConfig(_config_1);
19
+ var _config_3 = resolveRetryConfig(_config_2);
20
+ var _config_4 = resolveHostHeaderConfig(_config_3);
21
+ var _config_5 = resolveAwsAuthConfig(_config_4);
22
+ var _config_6 = resolveUserAgentConfig(_config_5);
23
+ _this = _super.call(this, _config_6) || this;
24
+ _this.config = _config_6;
25
+ _this.middlewareStack.use(getRetryPlugin(_this.config));
26
+ _this.middlewareStack.use(getContentLengthPlugin(_this.config));
27
+ _this.middlewareStack.use(getHostHeaderPlugin(_this.config));
28
+ _this.middlewareStack.use(getLoggerPlugin(_this.config));
29
+ _this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
30
+ _this.middlewareStack.use(getAwsAuthPlugin(_this.config));
31
+ _this.middlewareStack.use(getUserAgentPlugin(_this.config));
32
+ return _this;
29
33
  }
30
- destroy() {
31
- super.destroy();
32
- }
33
- }
34
+ LexRuntimeServiceClient.prototype.destroy = function () {
35
+ _super.prototype.destroy.call(this);
36
+ };
37
+ return LexRuntimeServiceClient;
38
+ }(__Client));
39
+ export { LexRuntimeServiceClient };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { DeleteSessionRequestFilterSensitiveLog, DeleteSessionResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1DeleteSessionCommand, serializeAws_restJson1DeleteSessionCommand, } from "../protocols/Aws_restJson1";
5
- export class DeleteSessionCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DeleteSessionCommand = (function (_super) {
7
+ __extends(DeleteSessionCommand, _super);
8
+ function DeleteSessionCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DeleteSessionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "LexRuntimeServiceClient";
15
- const commandName = "DeleteSessionCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "LexRuntimeServiceClient";
18
+ var commandName = "DeleteSessionCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DeleteSessionRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DeleteSessionResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ DeleteSessionCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1DeleteSessionCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DeleteSessionCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1DeleteSessionCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DeleteSessionCommand;
38
+ }($Command));
39
+ export { DeleteSessionCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { GetSessionRequestFilterSensitiveLog, GetSessionResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1GetSessionCommand, serializeAws_restJson1GetSessionCommand, } from "../protocols/Aws_restJson1";
5
- export class GetSessionCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetSessionCommand = (function (_super) {
7
+ __extends(GetSessionCommand, _super);
8
+ function GetSessionCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetSessionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "LexRuntimeServiceClient";
15
- const commandName = "GetSessionCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "LexRuntimeServiceClient";
18
+ var commandName = "GetSessionCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetSessionRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetSessionResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ GetSessionCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1GetSessionCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetSessionCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1GetSessionCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetSessionCommand;
38
+ }($Command));
39
+ export { GetSessionCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { PostContentRequestFilterSensitiveLog, PostContentResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1PostContentCommand, serializeAws_restJson1PostContentCommand, } from "../protocols/Aws_restJson1";
5
- export class PostContentCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var PostContentCommand = (function (_super) {
7
+ __extends(PostContentCommand, _super);
8
+ function PostContentCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ PostContentCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "LexRuntimeServiceClient";
15
- const commandName = "PostContentCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "LexRuntimeServiceClient";
18
+ var commandName = "PostContentCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: PostContentRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: PostContentResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ PostContentCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1PostContentCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ PostContentCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1PostContentCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return PostContentCommand;
38
+ }($Command));
39
+ export { PostContentCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { PostTextRequestFilterSensitiveLog, PostTextResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1PostTextCommand, serializeAws_restJson1PostTextCommand, } from "../protocols/Aws_restJson1";
5
- export class PostTextCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var PostTextCommand = (function (_super) {
7
+ __extends(PostTextCommand, _super);
8
+ function PostTextCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ PostTextCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "LexRuntimeServiceClient";
15
- const commandName = "PostTextCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "LexRuntimeServiceClient";
18
+ var commandName = "PostTextCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: PostTextRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: PostTextResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ PostTextCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1PostTextCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ PostTextCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1PostTextCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return PostTextCommand;
38
+ }($Command));
39
+ export { PostTextCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { PutSessionRequestFilterSensitiveLog, PutSessionResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1PutSessionCommand, serializeAws_restJson1PutSessionCommand, } from "../protocols/Aws_restJson1";
5
- export class PutSessionCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var PutSessionCommand = (function (_super) {
7
+ __extends(PutSessionCommand, _super);
8
+ function PutSessionCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ PutSessionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "LexRuntimeServiceClient";
15
- const commandName = "PutSessionCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "LexRuntimeServiceClient";
18
+ var commandName = "PutSessionCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: PutSessionRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: PutSessionResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ PutSessionCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1PutSessionCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ PutSessionCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1PutSessionCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return PutSessionCommand;
38
+ }($Command));
39
+ export { PutSessionCommand };
@@ -1,5 +1,6 @@
1
+ import { __assign, __awaiter, __generator } from "tslib";
1
2
  import { getRegionInfo } from "@aws-sdk/config-resolver";
2
- const regionHash = {
3
+ var regionHash = {
3
4
  "us-east-1": {
4
5
  variants: [
5
6
  {
@@ -25,7 +26,7 @@ const regionHash = {
25
26
  ],
26
27
  },
27
28
  };
28
- const partitionHash = {
29
+ var partitionHash = {
29
30
  aws: {
30
31
  regions: [
31
32
  "af-south-1",
@@ -147,9 +148,8 @@ const partitionHash = {
147
148
  ],
148
149
  },
149
150
  };
150
- export const defaultRegionInfoProvider = async (region, options) => getRegionInfo(region, {
151
- ...options,
152
- signingService: "lex",
153
- regionHash,
154
- partitionHash,
155
- });
151
+ export var defaultRegionInfoProvider = function (region, options) { return __awaiter(void 0, void 0, void 0, function () {
152
+ return __generator(this, function (_a) {
153
+ return [2, getRegionInfo(region, __assign(__assign({}, options), { signingService: "lex", regionHash: regionHash, partitionHash: partitionHash }))];
154
+ });
155
+ }); };
@@ -1,7 +1,12 @@
1
+ import { __extends } from "tslib";
1
2
  import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
2
- export class LexRuntimeServiceServiceException extends __ServiceException {
3
- constructor(options) {
4
- super(options);
5
- Object.setPrototypeOf(this, LexRuntimeServiceServiceException.prototype);
3
+ var LexRuntimeServiceServiceException = (function (_super) {
4
+ __extends(LexRuntimeServiceServiceException, _super);
5
+ function LexRuntimeServiceServiceException(options) {
6
+ var _this = _super.call(this, options) || this;
7
+ Object.setPrototypeOf(_this, LexRuntimeServiceServiceException.prototype);
8
+ return _this;
6
9
  }
7
- }
10
+ return LexRuntimeServiceServiceException;
11
+ }(__ServiceException));
12
+ export { LexRuntimeServiceServiceException };