Interface CfnEnvironment.ModuleLoggingConfigurationProperty

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

@Stability(Stable) public static interface CfnEnvironment.ModuleLoggingConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Defines the type of logs to send for the Apache Airflow log type (e.g. DagProcessingLogs ).

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.mwaa.*;
 ModuleLoggingConfigurationProperty moduleLoggingConfigurationProperty = ModuleLoggingConfigurationProperty.builder()
         .cloudWatchLogGroupArn("cloudWatchLogGroupArn")
         .enabled(false)
         .logLevel("logLevel")
         .build();
 

See Also: