Interface CfnBot.BotAliasLocaleSettingsItemProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBot.BotAliasLocaleSettingsItemProperty.Jsii$Proxy
- Enclosing class:
- CfnBot
@Stability(Stable)
public static interface CfnBot.BotAliasLocaleSettingsItemProperty
extends software.amazon.jsii.JsiiSerializable
Specifies locale settings for a single 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.*;
BotAliasLocaleSettingsItemProperty botAliasLocaleSettingsItemProperty = BotAliasLocaleSettingsItemProperty.builder()
.botAliasLocaleSetting(BotAliasLocaleSettingsProperty.builder()
.enabled(false)
// the properties below are optional
.codeHookSpecification(CodeHookSpecificationProperty.builder()
.lambdaCodeHook(LambdaCodeHookProperty.builder()
.codeHookInterfaceVersion("codeHookInterfaceVersion")
.lambdaArn("lambdaArn")
.build())
.build())
.build())
.localeId("localeId")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBot.BotAliasLocaleSettingsItemPropertystatic final classAn implementation forCfnBot.BotAliasLocaleSettingsItemProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Specifies locale settings for a locale.Specifies the locale that the settings apply to.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBotAliasLocaleSetting
Specifies locale settings for a locale. -
getLocaleId
Specifies the locale that the settings apply to. -
builder
-