Interface CfnBotPropsMixin.TextLogSettingProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBotPropsMixin.TextLogSettingProperty.Jsii$Proxy
- Enclosing class:
CfnBotPropsMixin
@Stability(Stable)
public static interface CfnBotPropsMixin.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.cfnpropertymixins.services.lex.*;
TextLogSettingProperty textLogSettingProperty = TextLogSettingProperty.builder()
.destination(TextLogDestinationProperty.builder()
.cloudWatch(CloudWatchLogGroupLogDestinationProperty.builder()
.cloudWatchLogGroupArn("cloudWatchLogGroupArn")
.logPrefix("logPrefix")
.build())
.build())
.enabled(false)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBotPropsMixin.TextLogSettingPropertystatic final classAn implementation forCfnBotPropsMixin.TextLogSettingProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDestination
Specifies the Amazon CloudWatch Logs destination log group for conversation text logs.Returns union: either
IResolvableorCfnBotPropsMixin.TextLogDestinationProperty- See Also:
-
getEnabled
Determines whether conversation logs should be stored for an alias.Returns union: either
BooleanorIResolvable- See Also:
-
builder
-