interface ElicitationCodeHookInvocationSettingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lex.Mixins.CfnBotPropsMixin.ElicitationCodeHookInvocationSettingProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslex/mixins#CfnBotPropsMixin_ElicitationCodeHookInvocationSettingProperty |
Java | software.amazon.awscdk.mixins.preview.services.lex.mixins.CfnBotPropsMixin.ElicitationCodeHookInvocationSettingProperty |
Python | aws_cdk.mixins_preview.aws_lex.mixins.CfnBotPropsMixin.ElicitationCodeHookInvocationSettingProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lex » mixins » CfnBotPropsMixin » 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 { mixins as lex_mixins } from '@aws-cdk/mixins-preview/aws-lex';
const elicitationCodeHookInvocationSettingProperty: lex_mixins.CfnBotPropsMixin.ElicitationCodeHookInvocationSettingProperty = {
enableCodeHookInvocation: false,
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
(optional)
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