UNPKG

@aws-sdk/client-lex-runtime-service

Version:

AWS SDK for JavaScript Lex Runtime Service Client for Node.js, Browser and React Native

49 lines 2.22 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PutSessionCommand = void 0; const models_0_1 = require("../models/models_0"); const Aws_restJson1_1 = require("../protocols/Aws_restJson1"); const middleware_serde_1 = require("@aws-sdk/middleware-serde"); const smithy_client_1 = require("@aws-sdk/smithy-client"); /** * <p>Creates a new session or modifies an existing session with an Amazon Lex bot. Use this * operation to enable your application to set the state of the bot.</p> * <p>For more information, see <a href="https://docs.aws.amazon.com/lex/latest/dg/how-session-api.html">Managing Sessions</a>.</p> */ class PutSessionCommand extends smithy_client_1.Command { // Start section: command_properties // End section: command_properties constructor(input) { // Start section: command_constructor super(); this.input = input; // End section: command_constructor } /** * @internal */ resolveMiddleware(clientStack, configuration, options) { this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize)); const stack = clientStack.concat(this.middlewareStack); const { logger } = configuration; const clientName = "LexRuntimeServiceClient"; const commandName = "PutSessionCommand"; const handlerExecutionContext = { logger, clientName, commandName, inputFilterSensitiveLog: models_0_1.PutSessionRequest.filterSensitiveLog, outputFilterSensitiveLog: models_0_1.PutSessionResponse.filterSensitiveLog, }; const { requestHandler } = configuration; return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext); } serialize(input, context) { return Aws_restJson1_1.serializeAws_restJson1PutSessionCommand(input, context); } deserialize(output, context) { return Aws_restJson1_1.deserializeAws_restJson1PutSessionCommand(output, context); } } exports.PutSessionCommand = PutSessionCommand; //# sourceMappingURL=PutSessionCommand.js.map