AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

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.

For more information, see Managing Sessions.

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to PutSessionAsync.

Namespace: Amazon.Lex
Assembly: AWSSDK.Lex.dll
Version: 3.x.y.z

Syntax

C#
public virtual PutSessionResponse PutSession(
         PutSessionRequest request
)

Parameters

request
Type: Amazon.Lex.Model.PutSessionRequest

Container for the necessary parameters to execute the PutSession service method.

Return Value


The response from the PutSession service method, as returned by Lex.

Exceptions

ExceptionCondition
BadGatewayException Either the Amazon Lex bot is still building, or one of the dependent services (Amazon Polly, AWS Lambda) failed with an internal service error.
BadRequestException Request validation failed, there is no usable message in the context, or the bot build failed, is still in progress, or contains unbuilt changes.
ConflictException Two clients are using the same AWS account, Amazon Lex bot, and user ID.
DependencyFailedException One of the dependencies, such as AWS Lambda or Amazon Polly, threw an exception. For example, If Amazon Lex does not have sufficient permissions to call a Lambda function. If a Lambda function takes longer than 30 seconds to execute. If a fulfillment Lambda function returns a Delegate dialog action without removing any slot values.
InternalFailureException Internal service error. Retry the call.
LimitExceededException Exceeded a limit.
NotAcceptableException The accept header in the request does not have a valid value.
NotFoundException The resource (such as the Amazon Lex bot or an alias) that is referred to is not found.

Version Information

.NET Framework:
Supported in: 4.5, 4.0, 3.5

See Also