LexRuntimeServiceClient Class

(QtAws::LexRuntimeService::LexRuntimeServiceClient)

The LexRuntimeServiceClient class provides access to the Amazon Lex Runtime Service service. More...

Header: #include <LexRuntimeServiceClient>
Inherits: QtAws::Core::AwsAbstractClient

Public Functions

LexRuntimeServiceClient(const QtAws::Core::AwsRegion::Region region = QtAws::Core::AwsRegion::InvalidRegion, QtAws::Core::AwsAbstractCredentials *credentials = NULL, QNetworkAccessManager * const manager = NULL, QObject * const parent = 0)
LexRuntimeServiceClient(const QUrl &endpoint, QtAws::Core::AwsAbstractCredentials *credentials = NULL, QNetworkAccessManager * const manager = NULL, QObject * const parent = 0)

Public Slots

PostContentResponse *postContent(const PostContentRequest &request)
PostTextResponse *postText(const PostTextRequest &request)

Additional Inherited Members

Detailed Description

The LexRuntimeServiceClient class provides access to the Amazon Lex Runtime Service service.

Amazon Lex provides both build and runtime endpoints. Each endpoint provides a set of operations (API). Your conversational bot uses the runtime API to understand user utterances (user input text or voice). For example, suppose a user says "I want pizza", your bot sends this input to Amazon Lex using the runtime API. Amazon Lex recognizes that the user request is for the OrderPizza intent (one of the intents defined in the bot). Then Amazon Lex engages in user conversation on behalf of the bot to elicit required information (slot values, such as pizza size and crust type), and then performs fulfillment activity (that you configured when you created the bot). You use the build-time API to create and manage your Amazon Lex bot. For a list of build-time operations, see the build-time API, .

Member Function Documentation

LexRuntimeServiceClient::LexRuntimeServiceClient(const QtAws::Core::AwsRegion::Region region = QtAws::Core::AwsRegion::InvalidRegion, QtAws::Core::AwsAbstractCredentials *credentials = NULL, QNetworkAccessManager * const manager = NULL, QObject * const parent = 0)

Constructs a LexRuntimeServiceClient object.

The new client object will region, credentials, and manager for network operations.

The new object will be owned by parent, if set.

LexRuntimeServiceClient::LexRuntimeServiceClient(const QUrl &endpoint, QtAws::Core::AwsAbstractCredentials *credentials = NULL, QNetworkAccessManager * const manager = NULL, QObject * const parent = 0)

This function overloads LexRuntimeServiceClient().

This overload allows the caller to specify the specific endpoint to send requests to. Typically, it is easier to use the alternative constructor, which allows the caller to specify an AWS region instead, in which case this client will determine the correct endpoint for the given region automatically (via AwsEndpoint::getEndpoint).

See also QtAws::Core::AwsEndpoint::getEndpoint.

[slot] PostContentResponse *LexRuntimeServiceClient::postContent(const PostContentRequest &request)

Sends request to the LexRuntimeServiceClient service, and returns a pointer to an PostContentResponse object to track the result.

Note: The caller is to take responsbility for the resulting pointer.

Sends user input (text or speech) to Amazon Lex. Clients use this API to send text and audio requests to Amazon Lex at runtime. Amazon Lex interprets the user input using the machine learning model that it built for the bot.

</p

The <code>PostContent</code> operation supports audio input at 8kHz and 16kHz. You can use 8kHz audio to achieve higher speech recognition accuracy in telephone audio applications.

</p

In response, Amazon Lex returns the next message to convey to the user. Consider the following example messages:

</p <ul> <li>

For a user input "I would like a pizza," Amazon Lex might return a response with a message eliciting slot data (for example, <code>PizzaSize</code>): "What size pizza would you like?".

</p </li> <li>

After the user provides all of the pizza order information, Amazon Lex might return a response with a message to get user confirmation: "Order the pizza?".

</p </li> <li>

After the user replies "Yes" to the confirmation prompt, Amazon Lex might return a conclusion statement: "Thank you, your cheese pizza has been ordered.".

</p </li> </ul>

Not all Amazon Lex messages require a response from the user. For example, conclusion statements do not require a response. Some messages require only a yes or no response. In addition to the <code>message</code>, Amazon Lex provides additional context about the message in the response that you can use to enhance client behavior, such as displaying the appropriate client user interface. Consider the following examples:

</p <ul> <li>

If the message is to elicit slot data, Amazon Lex returns the following context information:

</p <ul> <li>

<code>x-amz-lex-dialog-state</code> header set to <code>ElicitSlot</code>

</p </li> <li>

<code>x-amz-lex-intent-name</code> header set to the intent name in the current context

</p </li> <li>

<code>x-amz-lex-slot-to-elicit</code> header set to the slot name for which the <code>message</code> is eliciting information

</p </li> <li>

<code>x-amz-lex-slots</code> header set to a map of slots configured for the intent with their current values

</p </li> </ul> </li> <li>

If the message is a confirmation prompt, the <code>x-amz-lex-dialog-state</code> header is set to <code>Confirmation</code> and the <code>x-amz-lex-slot-to-elicit</code> header is omitted.

</p </li> <li>

If the message is a clarification prompt configured for the intent, indicating that the user intent is not understood, the <code>x-amz-dialog-state</code> header is set to <code>ElicitIntent</code> and the <code>x-amz-slot-to-elicit</code> header is omitted.

</p </li> </ul>

In addition, Amazon Lex also returns your application-specific <code>sessionAttributes</code>. For more information, see <a href="http://docs.aws.amazon.com/lex/latest/dg/context-mgmt.html">Managing Conversation Context</a>.

[slot] PostTextResponse *LexRuntimeServiceClient::postText(const PostTextRequest &request)

Sends request to the LexRuntimeServiceClient service, and returns a pointer to an PostTextResponse object to track the result.

Note: The caller is to take responsbility for the resulting pointer.

Sends user input (text-only) to Amazon Lex. Client applications can use this API to send requests to Amazon Lex at runtime. Amazon Lex then interprets the user input using the machine learning model it built for the bot.

</p

In response, Amazon Lex returns the next <code>message</code> to convey to the user an optional <code>responseCard</code> to display. Consider the following example messages:

</p <ul> <li>

For a user input "I would like a pizza", Amazon Lex might return a response with a message eliciting slot data (for example, PizzaSize): "What size pizza would you like?"

</p </li> <li>

After the user provides all of the pizza order information, Amazon Lex might return a response with a message to obtain user confirmation "Proceed with the pizza order?".

</p </li> <li>

After the user replies to a confirmation prompt with a "yes", Amazon Lex might return a conclusion statement: "Thank you, your cheese pizza has been ordered.".

</p </li> </ul>

Not all Amazon Lex messages require a user response. For example, a conclusion statement does not require a response. Some messages require only a "yes" or "no" user response. In addition to the <code>message</code>, Amazon Lex provides additional context about the message in the response that you might use to enhance client behavior, for example, to display the appropriate client user interface. These are the <code>slotToElicit</code>, <code>dialogState</code>, <code>intentName</code>, and <code>slots</code> fields in the response. Consider the following examples:

</p <ul> <li>

If the message is to elicit slot data, Amazon Lex returns the following context

information> <ul> <li>

<code>dialogState</code> set to ElicitSlot

</p </li> <li>

<code>intentName</code> set to the intent name in the current context

</p </li> <li>

<code>slotToElicit</code> set to the slot name for which the <code>message</code> is eliciting information

</p </li> <li>

<code>slots</code> set to a map of slots, configured for the intent, with currently known values

</p </li> </ul> </li> <li>

If the message is a confirmation prompt, the <code>dialogState</code> is set to ConfirmIntent and <code>SlotToElicit</code> is set to null.

</p </li> <li>

If the message is a clarification prompt (configured for the intent) that indicates that user intent is not understood, the <code>dialogState</code> is set to ElicitIntent and <code>slotToElicit</code> is set to null.

</p </li> </ul>

In addition, Amazon Lex also returns your application-specific <code>sessionAttributes</code>. For more information, see <a href="http://docs.aws.amazon.com/lex/latest/dg/context-mgmt.html">Managing Conversation Context</a>.

© 2018 Paul Colby Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.