@Stability(value=Stable)
public static interface CfnBot.TextLogSettingProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnBot.TextLogSettingProperty.Builder
A builder for
CfnBot.TextLogSettingProperty |
static class |
CfnBot.TextLogSettingProperty.Jsii$Proxy
An implementation for
CfnBot.TextLogSettingProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnBot.TextLogSettingProperty.Builder |
builder() |
Object |
getDestination()
Specifies the Amazon CloudWatch Logs destination log group for conversation text logs.
|
Object |
getEnabled()
Specifies whether conversation logs should be stored for an alias.
|
@Stability(value=Stable) @NotNull Object getDestination()
@Stability(value=Stable) @NotNull Object getEnabled()
@Stability(value=Stable) static CfnBot.TextLogSettingProperty.Builder builder()
Copyright © 2022. All rights reserved.