Interface CfnBot.CloudWatchLogGroupLogDestinationProperty

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

@Stability(Stable) public static interface CfnBot.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: