Updates the settings for an intent.
See https://www.paws-r-sdk.com/docs/lexmodelsv2_update_intent/ for full documentation.
lexmodelsv2_update_intent(
intentId,
intentName,
description = NULL,
parentIntentSignature = NULL,
sampleUtterances = NULL,
dialogCodeHook = NULL,
fulfillmentCodeHook = NULL,
slotPriorities = NULL,
intentConfirmationSetting = NULL,
intentClosingSetting = NULL,
inputContexts = NULL,
outputContexts = NULL,
kendraConfiguration = NULL,
botId,
botVersion,
localeId,
initialResponseSetting = NULL,
qnAIntentConfiguration = NULL
)
[required] The unique identifier of the intent to update.
[required] The new name for the intent.
The new description of the intent.
The signature of the new built-in intent to use as the parent of this intent.
New utterances used to invoke the intent.
The new Lambda function to use between each turn of the conversation with the bot.
The new Lambda function to call when all of the intents required slots are provided and the intent is ready for fulfillment.
A new list of slots and their priorities that are contained by the intent.
New prompts that Amazon Lex sends to the user to confirm the completion of an intent.
The new response that Amazon Lex sends the user when the intent is closed.
A new list of contexts that must be active in order for Amazon Lex to consider the intent.
A new list of contexts that Amazon Lex activates when the intent is fulfilled.
New configuration settings for connecting to an Amazon Kendra index.
[required] The identifier of the bot that contains the intent.
[required] The version of the bot that contains the intent. Must be DRAFT
.
[required] The identifier of the language and locale where this intent is used. The string must match one of the supported locales. For more information, see Supported languages.
Configuration settings for a response sent to the user before Amazon Lex starts eliciting slots.
Specifies the configuration of the built-in Amazon.QnAIntent
. The
AMAZON.QnAIntent
intent is called when Amazon Lex can't determine
another intent to invoke. If you specify this field, you can't specify
the kendraConfiguration
field.