Interface CfnBotAliasPropsMixin.BotAliasLocaleSettingsItemProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBotAliasPropsMixin.BotAliasLocaleSettingsItemProperty.Jsii$Proxy
- Enclosing class:
CfnBotAliasPropsMixin
@Stability(Stable)
public static interface CfnBotAliasPropsMixin.BotAliasLocaleSettingsItemProperty
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.cfnpropertymixins.services.lex.*;
BotAliasLocaleSettingsItemProperty botAliasLocaleSettingsItemProperty = BotAliasLocaleSettingsItemProperty.builder()
.botAliasLocaleSetting(BotAliasLocaleSettingsProperty.builder()
.codeHookSpecification(CodeHookSpecificationProperty.builder()
.lambdaCodeHook(LambdaCodeHookProperty.builder()
.codeHookInterfaceVersion("codeHookInterfaceVersion")
.lambdaArn("lambdaArn")
.build())
.build())
.enabled(false)
.build())
.localeId("localeId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBotAliasPropsMixin.BotAliasLocaleSettingsItemPropertystatic final classAn implementation forCfnBotAliasPropsMixin.BotAliasLocaleSettingsItemProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBotAliasLocaleSetting
Specifies settings that are unique to a locale.Returns union: either
IResolvableorCfnBotAliasPropsMixin.BotAliasLocaleSettingsProperty- See Also:
-
getLocaleId
The unique identifier of the locale.- See Also:
-
builder
@Stability(Stable) static CfnBotAliasPropsMixin.BotAliasLocaleSettingsItemProperty.Builder builder()
-