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();
 

See Also: