View source: R/lexruntimeservice_operations.R
lexruntimeservice_put_session | R Documentation |
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.
See https://www.paws-r-sdk.com/docs/lexruntimeservice_put_session/ for full documentation.
lexruntimeservice_put_session(
botName,
botAlias,
userId,
sessionAttributes = NULL,
dialogAction = NULL,
recentIntentSummaryView = NULL,
accept = NULL,
activeContexts = NULL
)
botName |
[required] The name of the bot that contains the session data. |
botAlias |
[required] The alias in use for the bot that contains the session data. |
userId |
[required] The ID of the client application user. Amazon Lex uses this to identify a user's conversation with your bot. |
sessionAttributes |
Map of key/value pairs representing the session-specific context information. It contains application information passed between Amazon Lex and a client application. |
dialogAction |
Sets the next action that the bot should take to fulfill the conversation. |
recentIntentSummaryView |
A summary of the recent intents for the bot. You can use the intent summary view to set a checkpoint label on an intent and modify attributes of intents. You can also use it to remove or add intent summary objects to the list. An intent that you modify or add to the list must make sense for the bot. For example, the intent name must be valid for the bot. You must provide valid values for:
If you send the |
accept |
The message that Amazon Lex returns in the response can be either text or speech based depending on the value of this field.
|
activeContexts |
A list of contexts active for the request. A context can be activated when a previous intent is fulfilled, or by including the context in the request, If you don't specify a list of contexts, Amazon Lex will use the current list of contexts for the session. If you specify an empty list, all contexts for the session are cleared. |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.