@aws-sdk/client-lex-runtime-v2 3.181.0 → 3.183.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
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.183.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.182.0...v3.183.0) (2022-10-03)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-lex-runtime-v2
9
+
10
+
11
+
12
+
13
+
6
14
  # [3.181.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.180.0...v3.181.0) (2022-09-29)
7
15
 
8
16
 
@@ -1,4 +1,3 @@
1
- import { __extends } from "tslib";
2
1
  import { DeleteSessionCommand, } from "./commands/DeleteSessionCommand";
3
2
  import { GetSessionCommand } from "./commands/GetSessionCommand";
4
3
  import { PutSessionCommand } from "./commands/PutSessionCommand";
@@ -6,95 +5,89 @@ import { RecognizeTextCommand, } from "./commands/RecognizeTextCommand";
6
5
  import { RecognizeUtteranceCommand, } from "./commands/RecognizeUtteranceCommand";
7
6
  import { StartConversationCommand, } from "./commands/StartConversationCommand";
8
7
  import { LexRuntimeV2Client } from "./LexRuntimeV2Client";
9
- var LexRuntimeV2 = (function (_super) {
10
- __extends(LexRuntimeV2, _super);
11
- function LexRuntimeV2() {
12
- return _super !== null && _super.apply(this, arguments) || this;
13
- }
14
- LexRuntimeV2.prototype.deleteSession = function (args, optionsOrCb, cb) {
15
- var command = new DeleteSessionCommand(args);
8
+ export class LexRuntimeV2 extends LexRuntimeV2Client {
9
+ deleteSession(args, optionsOrCb, cb) {
10
+ const command = new DeleteSessionCommand(args);
16
11
  if (typeof optionsOrCb === "function") {
17
12
  this.send(command, optionsOrCb);
18
13
  }
19
14
  else if (typeof cb === "function") {
20
15
  if (typeof optionsOrCb !== "object")
21
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
16
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
22
17
  this.send(command, optionsOrCb || {}, cb);
23
18
  }
24
19
  else {
25
20
  return this.send(command, optionsOrCb);
26
21
  }
27
- };
28
- LexRuntimeV2.prototype.getSession = function (args, optionsOrCb, cb) {
29
- var command = new GetSessionCommand(args);
22
+ }
23
+ getSession(args, optionsOrCb, cb) {
24
+ const command = new GetSessionCommand(args);
30
25
  if (typeof optionsOrCb === "function") {
31
26
  this.send(command, optionsOrCb);
32
27
  }
33
28
  else if (typeof cb === "function") {
34
29
  if (typeof optionsOrCb !== "object")
35
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
30
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
36
31
  this.send(command, optionsOrCb || {}, cb);
37
32
  }
38
33
  else {
39
34
  return this.send(command, optionsOrCb);
40
35
  }
41
- };
42
- LexRuntimeV2.prototype.putSession = function (args, optionsOrCb, cb) {
43
- var command = new PutSessionCommand(args);
36
+ }
37
+ putSession(args, optionsOrCb, cb) {
38
+ const command = new PutSessionCommand(args);
44
39
  if (typeof optionsOrCb === "function") {
45
40
  this.send(command, optionsOrCb);
46
41
  }
47
42
  else if (typeof cb === "function") {
48
43
  if (typeof optionsOrCb !== "object")
49
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
44
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
50
45
  this.send(command, optionsOrCb || {}, cb);
51
46
  }
52
47
  else {
53
48
  return this.send(command, optionsOrCb);
54
49
  }
55
- };
56
- LexRuntimeV2.prototype.recognizeText = function (args, optionsOrCb, cb) {
57
- var command = new RecognizeTextCommand(args);
50
+ }
51
+ recognizeText(args, optionsOrCb, cb) {
52
+ const command = new RecognizeTextCommand(args);
58
53
  if (typeof optionsOrCb === "function") {
59
54
  this.send(command, optionsOrCb);
60
55
  }
61
56
  else if (typeof cb === "function") {
62
57
  if (typeof optionsOrCb !== "object")
63
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
58
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
64
59
  this.send(command, optionsOrCb || {}, cb);
65
60
  }
66
61
  else {
67
62
  return this.send(command, optionsOrCb);
68
63
  }
69
- };
70
- LexRuntimeV2.prototype.recognizeUtterance = function (args, optionsOrCb, cb) {
71
- var command = new RecognizeUtteranceCommand(args);
64
+ }
65
+ recognizeUtterance(args, optionsOrCb, cb) {
66
+ const command = new RecognizeUtteranceCommand(args);
72
67
  if (typeof optionsOrCb === "function") {
73
68
  this.send(command, optionsOrCb);
74
69
  }
75
70
  else if (typeof cb === "function") {
76
71
  if (typeof optionsOrCb !== "object")
77
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
72
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
78
73
  this.send(command, optionsOrCb || {}, cb);
79
74
  }
80
75
  else {
81
76
  return this.send(command, optionsOrCb);
82
77
  }
83
- };
84
- LexRuntimeV2.prototype.startConversation = function (args, optionsOrCb, cb) {
85
- var command = new StartConversationCommand(args);
78
+ }
79
+ startConversation(args, optionsOrCb, cb) {
80
+ const command = new StartConversationCommand(args);
86
81
  if (typeof optionsOrCb === "function") {
87
82
  this.send(command, optionsOrCb);
88
83
  }
89
84
  else if (typeof cb === "function") {
90
85
  if (typeof optionsOrCb !== "object")
91
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
86
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
92
87
  this.send(command, optionsOrCb || {}, cb);
93
88
  }
94
89
  else {
95
90
  return this.send(command, optionsOrCb);
96
91
  }
97
- };
98
- return LexRuntimeV2;
99
- }(LexRuntimeV2Client));
100
- export { LexRuntimeV2 };
92
+ }
93
+ }
@@ -1,4 +1,3 @@
1
- import { __extends } from "tslib";
2
1
  import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-resolver";
3
2
  import { resolveEventStreamSerdeConfig, } from "@aws-sdk/eventstream-serde-config-resolver";
4
3
  import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
@@ -11,33 +10,28 @@ import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-sig
11
10
  import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
12
11
  import { Client as __Client, } from "@aws-sdk/smithy-client";
13
12
  import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
14
- var LexRuntimeV2Client = (function (_super) {
15
- __extends(LexRuntimeV2Client, _super);
16
- function LexRuntimeV2Client(configuration) {
17
- var _this = this;
18
- var _config_0 = __getRuntimeConfig(configuration);
19
- var _config_1 = resolveRegionConfig(_config_0);
20
- var _config_2 = resolveEndpointsConfig(_config_1);
21
- var _config_3 = resolveRetryConfig(_config_2);
22
- var _config_4 = resolveHostHeaderConfig(_config_3);
23
- var _config_5 = resolveAwsAuthConfig(_config_4);
24
- var _config_6 = resolveEventStreamConfig(_config_5);
25
- var _config_7 = resolveUserAgentConfig(_config_6);
26
- var _config_8 = resolveEventStreamSerdeConfig(_config_7);
27
- _this = _super.call(this, _config_8) || this;
28
- _this.config = _config_8;
29
- _this.middlewareStack.use(getRetryPlugin(_this.config));
30
- _this.middlewareStack.use(getContentLengthPlugin(_this.config));
31
- _this.middlewareStack.use(getHostHeaderPlugin(_this.config));
32
- _this.middlewareStack.use(getLoggerPlugin(_this.config));
33
- _this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
34
- _this.middlewareStack.use(getAwsAuthPlugin(_this.config));
35
- _this.middlewareStack.use(getUserAgentPlugin(_this.config));
36
- return _this;
13
+ export class LexRuntimeV2Client extends __Client {
14
+ constructor(configuration) {
15
+ const _config_0 = __getRuntimeConfig(configuration);
16
+ const _config_1 = resolveRegionConfig(_config_0);
17
+ const _config_2 = resolveEndpointsConfig(_config_1);
18
+ const _config_3 = resolveRetryConfig(_config_2);
19
+ const _config_4 = resolveHostHeaderConfig(_config_3);
20
+ const _config_5 = resolveAwsAuthConfig(_config_4);
21
+ const _config_6 = resolveEventStreamConfig(_config_5);
22
+ const _config_7 = resolveUserAgentConfig(_config_6);
23
+ const _config_8 = resolveEventStreamSerdeConfig(_config_7);
24
+ super(_config_8);
25
+ this.config = _config_8;
26
+ this.middlewareStack.use(getRetryPlugin(this.config));
27
+ this.middlewareStack.use(getContentLengthPlugin(this.config));
28
+ this.middlewareStack.use(getHostHeaderPlugin(this.config));
29
+ this.middlewareStack.use(getLoggerPlugin(this.config));
30
+ this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
31
+ this.middlewareStack.use(getAwsAuthPlugin(this.config));
32
+ this.middlewareStack.use(getUserAgentPlugin(this.config));
37
33
  }
38
- LexRuntimeV2Client.prototype.destroy = function () {
39
- _super.prototype.destroy.call(this);
40
- };
41
- return LexRuntimeV2Client;
42
- }(__Client));
43
- export { LexRuntimeV2Client };
34
+ destroy() {
35
+ super.destroy();
36
+ }
37
+ }
@@ -1,39 +1,32 @@
1
- import { __extends } from "tslib";
2
1
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
3
  import { DeleteSessionRequestFilterSensitiveLog, DeleteSessionResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1DeleteSessionCommand, serializeAws_restJson1DeleteSessionCommand, } from "../protocols/Aws_restJson1";
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;
5
+ export class DeleteSessionCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- DeleteSessionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "LexRuntimeV2Client";
18
- var commandName = "DeleteSessionCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "LexRuntimeV2Client";
15
+ const commandName = "DeleteSessionCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: DeleteSessionRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: DeleteSessionResponseFilterSensitiveLog,
25
22
  };
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) {
23
+ const { requestHandler } = configuration;
24
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
+ }
26
+ serialize(input, context) {
32
27
  return serializeAws_restJson1DeleteSessionCommand(input, context);
33
- };
34
- DeleteSessionCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_restJson1DeleteSessionCommand(output, context);
36
- };
37
- return DeleteSessionCommand;
38
- }($Command));
39
- export { DeleteSessionCommand };
31
+ }
32
+ }
@@ -1,39 +1,32 @@
1
- import { __extends } from "tslib";
2
1
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
3
  import { GetSessionRequestFilterSensitiveLog, GetSessionResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1GetSessionCommand, serializeAws_restJson1GetSessionCommand, } from "../protocols/Aws_restJson1";
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;
5
+ export class GetSessionCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- GetSessionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "LexRuntimeV2Client";
18
- var commandName = "GetSessionCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "LexRuntimeV2Client";
15
+ const commandName = "GetSessionCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: GetSessionRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: GetSessionResponseFilterSensitiveLog,
25
22
  };
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) {
23
+ const { requestHandler } = configuration;
24
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
+ }
26
+ serialize(input, context) {
32
27
  return serializeAws_restJson1GetSessionCommand(input, context);
33
- };
34
- GetSessionCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_restJson1GetSessionCommand(output, context);
36
- };
37
- return GetSessionCommand;
38
- }($Command));
39
- export { GetSessionCommand };
31
+ }
32
+ }
@@ -1,39 +1,32 @@
1
- import { __extends } from "tslib";
2
1
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
3
  import { PutSessionRequestFilterSensitiveLog, PutSessionResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1PutSessionCommand, serializeAws_restJson1PutSessionCommand, } from "../protocols/Aws_restJson1";
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;
5
+ export class PutSessionCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- PutSessionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "LexRuntimeV2Client";
18
- var commandName = "PutSessionCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "LexRuntimeV2Client";
15
+ const commandName = "PutSessionCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: PutSessionRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: PutSessionResponseFilterSensitiveLog,
25
22
  };
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) {
23
+ const { requestHandler } = configuration;
24
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
+ }
26
+ serialize(input, context) {
32
27
  return serializeAws_restJson1PutSessionCommand(input, context);
33
- };
34
- PutSessionCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_restJson1PutSessionCommand(output, context);
36
- };
37
- return PutSessionCommand;
38
- }($Command));
39
- export { PutSessionCommand };
31
+ }
32
+ }
@@ -1,39 +1,32 @@
1
- import { __extends } from "tslib";
2
1
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
3
  import { RecognizeTextRequestFilterSensitiveLog, RecognizeTextResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1RecognizeTextCommand, serializeAws_restJson1RecognizeTextCommand, } from "../protocols/Aws_restJson1";
6
- var RecognizeTextCommand = (function (_super) {
7
- __extends(RecognizeTextCommand, _super);
8
- function RecognizeTextCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class RecognizeTextCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- RecognizeTextCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "LexRuntimeV2Client";
18
- var commandName = "RecognizeTextCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "LexRuntimeV2Client";
15
+ const commandName = "RecognizeTextCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: RecognizeTextRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: RecognizeTextResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- RecognizeTextCommand.prototype.serialize = function (input, context) {
23
+ const { requestHandler } = configuration;
24
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
+ }
26
+ serialize(input, context) {
32
27
  return serializeAws_restJson1RecognizeTextCommand(input, context);
33
- };
34
- RecognizeTextCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_restJson1RecognizeTextCommand(output, context);
36
- };
37
- return RecognizeTextCommand;
38
- }($Command));
39
- export { RecognizeTextCommand };
31
+ }
32
+ }
@@ -1,39 +1,32 @@
1
- import { __extends } from "tslib";
2
1
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
3
  import { RecognizeUtteranceRequestFilterSensitiveLog, RecognizeUtteranceResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1RecognizeUtteranceCommand, serializeAws_restJson1RecognizeUtteranceCommand, } from "../protocols/Aws_restJson1";
6
- var RecognizeUtteranceCommand = (function (_super) {
7
- __extends(RecognizeUtteranceCommand, _super);
8
- function RecognizeUtteranceCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class RecognizeUtteranceCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- RecognizeUtteranceCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "LexRuntimeV2Client";
18
- var commandName = "RecognizeUtteranceCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "LexRuntimeV2Client";
15
+ const commandName = "RecognizeUtteranceCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: RecognizeUtteranceRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: RecognizeUtteranceResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- RecognizeUtteranceCommand.prototype.serialize = function (input, context) {
23
+ const { requestHandler } = configuration;
24
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
+ }
26
+ serialize(input, context) {
32
27
  return serializeAws_restJson1RecognizeUtteranceCommand(input, context);
33
- };
34
- RecognizeUtteranceCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_restJson1RecognizeUtteranceCommand(output, context);
36
- };
37
- return RecognizeUtteranceCommand;
38
- }($Command));
39
- export { RecognizeUtteranceCommand };
31
+ }
32
+ }
@@ -1,41 +1,34 @@
1
- import { __extends } from "tslib";
2
1
  import { getEventStreamPlugin } from "@aws-sdk/middleware-eventstream";
3
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
4
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
5
4
  import { StartConversationRequestFilterSensitiveLog, StartConversationResponseFilterSensitiveLog, } from "../models/models_0";
6
5
  import { deserializeAws_restJson1StartConversationCommand, serializeAws_restJson1StartConversationCommand, } from "../protocols/Aws_restJson1";
7
- var StartConversationCommand = (function (_super) {
8
- __extends(StartConversationCommand, _super);
9
- function StartConversationCommand(input) {
10
- var _this = _super.call(this) || this;
11
- _this.input = input;
12
- return _this;
6
+ export class StartConversationCommand extends $Command {
7
+ constructor(input) {
8
+ super();
9
+ this.input = input;
13
10
  }
14
- StartConversationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
+ resolveMiddleware(clientStack, configuration, options) {
15
12
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
16
13
  this.middlewareStack.use(getEventStreamPlugin(configuration));
17
- var stack = clientStack.concat(this.middlewareStack);
18
- var logger = configuration.logger;
19
- var clientName = "LexRuntimeV2Client";
20
- var commandName = "StartConversationCommand";
21
- var handlerExecutionContext = {
22
- logger: logger,
23
- clientName: clientName,
24
- commandName: commandName,
14
+ const stack = clientStack.concat(this.middlewareStack);
15
+ const { logger } = configuration;
16
+ const clientName = "LexRuntimeV2Client";
17
+ const commandName = "StartConversationCommand";
18
+ const handlerExecutionContext = {
19
+ logger,
20
+ clientName,
21
+ commandName,
25
22
  inputFilterSensitiveLog: StartConversationRequestFilterSensitiveLog,
26
23
  outputFilterSensitiveLog: StartConversationResponseFilterSensitiveLog,
27
24
  };
28
- var requestHandler = configuration.requestHandler;
29
- return stack.resolve(function (request) {
30
- return requestHandler.handle(request.request, options || {});
31
- }, handlerExecutionContext);
32
- };
33
- StartConversationCommand.prototype.serialize = function (input, context) {
25
+ const { requestHandler } = configuration;
26
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
27
+ }
28
+ serialize(input, context) {
34
29
  return serializeAws_restJson1StartConversationCommand(input, context);
35
- };
36
- StartConversationCommand.prototype.deserialize = function (output, context) {
30
+ }
31
+ deserialize(output, context) {
37
32
  return deserializeAws_restJson1StartConversationCommand(output, context);
38
- };
39
- return StartConversationCommand;
40
- }($Command));
41
- export { StartConversationCommand };
33
+ }
34
+ }
@@ -1,7 +1,6 @@
1
- import { __assign, __awaiter, __generator } from "tslib";
2
1
  import { getRegionInfo } from "@aws-sdk/config-resolver";
3
- var regionHash = {};
4
- var partitionHash = {
2
+ const regionHash = {};
3
+ const partitionHash = {
5
4
  aws: {
6
5
  regions: [
7
6
  "af-south-1",
@@ -121,8 +120,9 @@ var partitionHash = {
121
120
  ],
122
121
  },
123
122
  };
124
- export var defaultRegionInfoProvider = function (region, options) { return __awaiter(void 0, void 0, void 0, function () {
125
- return __generator(this, function (_a) {
126
- return [2, getRegionInfo(region, __assign(__assign({}, options), { signingService: "lex", regionHash: regionHash, partitionHash: partitionHash }))];
127
- });
128
- }); };
123
+ export const defaultRegionInfoProvider = async (region, options) => getRegionInfo(region, {
124
+ ...options,
125
+ signingService: "lex",
126
+ regionHash,
127
+ partitionHash,
128
+ });
@@ -1,12 +1,7 @@
1
- import { __extends } from "tslib";
2
1
  import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
3
- var LexRuntimeV2ServiceException = (function (_super) {
4
- __extends(LexRuntimeV2ServiceException, _super);
5
- function LexRuntimeV2ServiceException(options) {
6
- var _this = _super.call(this, options) || this;
7
- Object.setPrototypeOf(_this, LexRuntimeV2ServiceException.prototype);
8
- return _this;
2
+ export class LexRuntimeV2ServiceException extends __ServiceException {
3
+ constructor(options) {
4
+ super(options);
5
+ Object.setPrototypeOf(this, LexRuntimeV2ServiceException.prototype);
9
6
  }
10
- return LexRuntimeV2ServiceException;
11
- }(__ServiceException));
12
- export { LexRuntimeV2ServiceException };
7
+ }