Interface CfnAppInstanceBotPropsMixin.LexConfigurationProperty

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

@Stability(Stable) public static interface CfnAppInstanceBotPropsMixin.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.cfnpropertymixins.services.chime.*;
 LexConfigurationProperty lexConfigurationProperty = LexConfigurationProperty.builder()
         .invokedBy(InvokedByProperty.builder()
                 .standardMessages("standardMessages")
                 .targetedMessages("targetedMessages")
                 .build())
         .lexBotAliasArn("lexBotAliasArn")
         .localeId("localeId")
         .respondsTo("respondsTo")
         .welcomeIntent("welcomeIntent")
         .build();
 

See Also: