Interface CfnAppInstanceBot.LexConfigurationProperty

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

@Stability(Stable) public static interface CfnAppInstanceBot.LexConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The configuration for an Amazon Lex V2 bot.

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.chime.*;
 LexConfigurationProperty lexConfigurationProperty = LexConfigurationProperty.builder()
         .lexBotAliasArn("lexBotAliasArn")
         .localeId("localeId")
         // the properties below are optional
         .invokedBy(InvokedByProperty.builder()
                 .standardMessages("standardMessages")
                 .targetedMessages("targetedMessages")
                 .build())
         .respondsTo("respondsTo")
         .welcomeIntent("welcomeIntent")
         .build();
 

See Also: