interface ElicitationCodeHookInvocationSettingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Lex.CfnBot.ElicitationCodeHookInvocationSettingProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awslex#CfnBot_ElicitationCodeHookInvocationSettingProperty |
Java | software.amazon.awscdk.services.lex.CfnBot.ElicitationCodeHookInvocationSettingProperty |
Python | aws_cdk.aws_lex.CfnBot.ElicitationCodeHookInvocationSettingProperty |
TypeScript | aws-cdk-lib » aws_lex » CfnBot » ElicitationCodeHookInvocationSettingProperty |
Settings that specify the dialog code hook that is called by Amazon Lex between eliciting slot values.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_lex as lex } from 'aws-cdk-lib';
const elicitationCodeHookInvocationSettingProperty: lex.CfnBot.ElicitationCodeHookInvocationSettingProperty = {
enableCodeHookInvocation: false,
// the properties below are optional
invocationLabel: 'invocationLabel',
};
Properties
| Name | Type | Description |
|---|---|---|
| enable | boolean | IResolvable | Indicates whether a Lambda function should be invoked for the dialog. |
| invocation | string | A label that indicates the dialog step from which the dialog code hook is happening. |
enableCodeHookInvocation
Type:
boolean | IResolvable
Indicates whether a Lambda function should be invoked for the dialog.
invocationLabel?
Type:
string
(optional)
A label that indicates the dialog step from which the dialog code hook is happening.

.NET
Go
Java
Python
TypeScript