Interface CfnBotVersion.BotVersionLocaleSpecificationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBotVersion.BotVersionLocaleSpecificationProperty.Jsii$Proxy
- Enclosing class:
CfnBotVersion
@Stability(Stable)
public static interface CfnBotVersion.BotVersionLocaleSpecificationProperty
extends software.amazon.jsii.JsiiSerializable
Specifies the locale that Amazon Lex adds to this version.
You can choose the Draft version or any other previously published version for each locale. When you specify a source version, the locale data is copied from the source version to the new version.
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.*; BotVersionLocaleSpecificationProperty botVersionLocaleSpecificationProperty = BotVersionLocaleSpecificationProperty.builder() .botVersionLocaleDetails(BotVersionLocaleDetailsProperty.builder() .sourceBotVersion("sourceBotVersion") .build()) .localeId("localeId") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnBotVersion.BotVersionLocaleSpecificationProperty
static final class
An implementation forCfnBotVersion.BotVersionLocaleSpecificationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The version of a bot used for a bot locale.The identifier of the locale to add to the version.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBotVersionLocaleDetails
The version of a bot used for a bot locale. -
getLocaleId
The identifier of the locale to add to the version. -
builder
-