Interface CfnBotAlias.CloudWatchLogGroupLogDestinationProperty

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

@Stability(Stable) public static interface CfnBotAlias.CloudWatchLogGroupLogDestinationProperty extends software.amazon.jsii.JsiiSerializable
The Amazon CloudWatch Logs log group where the text and metadata logs are delivered.

The log group must exist before you enable logging.

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.*;
 CloudWatchLogGroupLogDestinationProperty cloudWatchLogGroupLogDestinationProperty = CloudWatchLogGroupLogDestinationProperty.builder()
         .cloudWatchLogGroupArn("cloudWatchLogGroupArn")
         .logPrefix("logPrefix")
         .build();
 

See Also: