Interface CfnBot.ElicitationCodeHookInvocationSettingProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBot.ElicitationCodeHookInvocationSettingProperty.Jsii$Proxy
- Enclosing class:
CfnBot
@Stability(Stable)
public static interface CfnBot.ElicitationCodeHookInvocationSettingProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.lex.*; ElicitationCodeHookInvocationSettingProperty elicitationCodeHookInvocationSettingProperty = ElicitationCodeHookInvocationSettingProperty.builder() .enableCodeHookInvocation(false) // the properties below are optional .invocationLabel("invocationLabel") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnBot.ElicitationCodeHookInvocationSettingProperty
static final class
An implementation forCfnBot.ElicitationCodeHookInvocationSettingProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnableCodeHookInvocation
Indicates whether a Lambda function should be invoked for the dialog. -
getInvocationLabel
A label that indicates the dialog step from which the dialog code hook is happening. -
builder
-