Interface CfnBot.BotAliasLocaleSettingsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnBot.BotAliasLocaleSettingsProperty.Jsii$Proxy
Enclosing class:
CfnBot

@Stability(Stable) public static interface CfnBot.BotAliasLocaleSettingsProperty extends software.amazon.jsii.JsiiSerializable
Specifies settings that are unique to a locale.

For example, you can use different Lambda function depending on the bot's locale.

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.*;
 BotAliasLocaleSettingsProperty botAliasLocaleSettingsProperty = BotAliasLocaleSettingsProperty.builder()
         .enabled(false)
         // the properties below are optional
         .codeHookSpecification(CodeHookSpecificationProperty.builder()
                 .lambdaCodeHook(LambdaCodeHookProperty.builder()
                         .codeHookInterfaceVersion("codeHookInterfaceVersion")
                         .lambdaArn("lambdaArn")
                         .build())
                 .build())
         .build();
 

See Also: