Interface CfnBot.TextLogSettingProperty

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

@Stability(Stable) public static interface CfnBot.TextLogSettingProperty extends software.amazon.jsii.JsiiSerializable
Defines settings to enable text conversation logs.

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.*;
 TextLogSettingProperty textLogSettingProperty = TextLogSettingProperty.builder()
         .destination(TextLogDestinationProperty.builder()
                 .cloudWatch(CloudWatchLogGroupLogDestinationProperty.builder()
                         .cloudWatchLogGroupArn("cloudWatchLogGroupArn")
                         .logPrefix("logPrefix")
                         .build())
                 .build())
         .enabled(false)
         .build();