Interface CfnAppInstanceBotPropsMixin.ConfigurationProperty

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

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

See Also: