aws-cdk-lib.aws_lex.CfnBot.IntentConfirmationSettingProperty

interface IntentConfirmationSettingProperty

LanguageType name
.NETAmazon.CDK.AWS.Lex.CfnBot.IntentConfirmationSettingProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awslex#CfnBot_IntentConfirmationSettingProperty
Javasoftware.amazon.awscdk.services.lex.CfnBot.IntentConfirmationSettingProperty
Pythonaws_cdk.aws_lex.CfnBot.IntentConfirmationSettingProperty
TypeScript aws-cdk-lib » aws_lex » CfnBot » IntentConfirmationSettingProperty

Provides a prompt for making sure that the user is ready for the intent to be fulfilled.

Example

// The generated example for this type would exceed 500 lines,
// and has been elided for readability.

Properties

NameTypeDescription
promptSpecificationIResolvable | PromptSpecificationPropertyPrompts the user to confirm the intent. This question should have a yes or no answer.
codeHook?IResolvable | DialogCodeHookInvocationSettingPropertyThe DialogCodeHookInvocationSetting object associated with intent's confirmation step.
confirmationConditional?IResolvable | ConditionalSpecificationPropertyA list of conditional branches to evaluate after the intent is closed.
confirmationNextStep?IResolvable | DialogStatePropertySpecifies the next step that the bot executes when the customer confirms the intent.
confirmationResponse?IResolvable | ResponseSpecificationPropertySpecifies a list of message groups that Amazon Lex uses to respond the user input.
declinationConditional?IResolvable | ConditionalSpecificationPropertyA list of conditional branches to evaluate after the intent is declined.
declinationNextStep?IResolvable | DialogStatePropertySpecifies the next step that the bot executes when the customer declines the intent.
declinationResponse?IResolvable | ResponseSpecificationPropertyWhen the user answers "no" to the question defined in promptSpecification , Amazon Lex responds with this response to acknowledge that the intent was canceled.
elicitationCodeHook?IResolvable | ElicitationCodeHookInvocationSettingPropertyThe DialogCodeHookInvocationSetting used when the code hook is invoked during confirmation prompt retries.
failureConditional?IResolvable | ConditionalSpecificationPropertyProvides a list of conditional branches.
failureNextStep?IResolvable | DialogStatePropertyThe next step to take in the conversation if the confirmation step fails.
failureResponse?IResolvable | ResponseSpecificationPropertySpecifies a list of message groups that Amazon Lex uses to respond the user input when the intent confirmation fails.
isActive?boolean | IResolvableSpecifies whether the intent's confirmation is sent to the user.

promptSpecification

Type: IResolvable | PromptSpecificationProperty

Prompts the user to confirm the intent. This question should have a yes or no answer.

Amazon Lex uses this prompt to ensure that the user acknowledges that the intent is ready for fulfillment. For example, with the OrderPizza intent, you might want to confirm that the order is correct before placing it. For other intents, such as intents that simply respond to user questions, you might not need to ask the user for confirmation before providing the information.


codeHook?

Type: IResolvable | DialogCodeHookInvocationSettingProperty (optional)

The DialogCodeHookInvocationSetting object associated with intent's confirmation step.

The dialog code hook is triggered based on these invocation settings when the confirmation next step or declination next step or failure next step is InvokeDialogCodeHook .


confirmationConditional?

Type: IResolvable | ConditionalSpecificationProperty (optional)

A list of conditional branches to evaluate after the intent is closed.


confirmationNextStep?

Type: IResolvable | DialogStateProperty (optional)

Specifies the next step that the bot executes when the customer confirms the intent.


confirmationResponse?

Type: IResolvable | ResponseSpecificationProperty (optional)

Specifies a list of message groups that Amazon Lex uses to respond the user input.


declinationConditional?

Type: IResolvable | ConditionalSpecificationProperty (optional)

A list of conditional branches to evaluate after the intent is declined.


declinationNextStep?

Type: IResolvable | DialogStateProperty (optional)

Specifies the next step that the bot executes when the customer declines the intent.


declinationResponse?

Type: IResolvable | ResponseSpecificationProperty (optional)

When the user answers "no" to the question defined in promptSpecification , Amazon Lex responds with this response to acknowledge that the intent was canceled.


elicitationCodeHook?

Type: IResolvable | ElicitationCodeHookInvocationSettingProperty (optional)

The DialogCodeHookInvocationSetting used when the code hook is invoked during confirmation prompt retries.


failureConditional?

Type: IResolvable | ConditionalSpecificationProperty (optional)

Provides a list of conditional branches.

Branches are evaluated in the order that they are entered in the list. The first branch with a condition that evaluates to true is executed. The last branch in the list is the default branch. The default branch should not have any condition expression. The default branch is executed if no other branch has a matching condition.


failureNextStep?

Type: IResolvable | DialogStateProperty (optional)

The next step to take in the conversation if the confirmation step fails.


failureResponse?

Type: IResolvable | ResponseSpecificationProperty (optional)

Specifies a list of message groups that Amazon Lex uses to respond the user input when the intent confirmation fails.


isActive?

Type: boolean | IResolvable (optional)

Specifies whether the intent's confirmation is sent to the user.

When this field is false, confirmation and declination responses aren't sent. If the IsActive field isn't specified, the default is true.