Interface CfnBotAliasPropsMixin.TextLogDestinationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBotAliasPropsMixin.TextLogDestinationProperty.Jsii$Proxy
- Enclosing class:
CfnBotAliasPropsMixin
@Stability(Stable)
public static interface CfnBotAliasPropsMixin.TextLogDestinationProperty
extends software.amazon.jsii.JsiiSerializable
Defines the Amazon CloudWatch Logs destination log group for conversation text 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.mixins.preview.services.lex.mixins.*;
TextLogDestinationProperty textLogDestinationProperty = TextLogDestinationProperty.builder()
.cloudWatch(CloudWatchLogGroupLogDestinationProperty.builder()
.cloudWatchLogGroupArn("cloudWatchLogGroupArn")
.logPrefix("logPrefix")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBotAliasPropsMixin.TextLogDestinationPropertystatic final classAn implementation forCfnBotAliasPropsMixin.TextLogDestinationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCloudWatch
Defines the Amazon CloudWatch Logs log group where text and metadata logs are delivered.Returns union: either
IResolvableorCfnBotAliasPropsMixin.CloudWatchLogGroupLogDestinationProperty- See Also:
-
builder
-