Interface CfnAppInstanceBot.ConfigurationProperty

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

@Stability(Stable) public static interface CfnAppInstanceBot.ConfigurationProperty extends software.amazon.jsii.JsiiSerializable
A structure that contains configuration data.

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

See Also: