Interface CfnWorkGroup.CloudWatchLoggingConfigurationProperty

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

@Stability(Stable) public static interface CfnWorkGroup.CloudWatchLoggingConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Configuration settings for delivering logs to Amazon CloudWatch log groups.

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.athena.*;
 CloudWatchLoggingConfigurationProperty cloudWatchLoggingConfigurationProperty = CloudWatchLoggingConfigurationProperty.builder()
         .enabled(false)
         .logGroup("logGroup")
         .logStreamNamePrefix("logStreamNamePrefix")
         .logTypes(Map.of(
                 "logTypesKey", List.of("logTypes")))
         .build();
 

See Also: