Interface CfnBotAlias.TextLogSettingProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBotAlias.TextLogSettingProperty.Jsii$Proxy
- Enclosing class:
CfnBotAlias
@Stability(Stable)
public static interface CfnBotAlias.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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnBotAlias.TextLogSettingProperty
static final class
An implementation forCfnBotAlias.TextLogSettingProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
Defines the Amazon CloudWatch Logs destination log group for conversation text logs.Determines whether conversation logs should be stored for an alias.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDestination
Defines the Amazon CloudWatch Logs destination log group for conversation text logs. -
getEnabled
Determines whether conversation logs should be stored for an alias. -
builder
-