EnvironmentModuleLoggingConfiguration

data class EnvironmentModuleLoggingConfiguration(val cloudWatchLogGroupArn: String? = null, val enabled: Boolean? = null, val logLevel: EnvironmentLoggingLevel? = null)

Logging configuration for a specific airflow component.

Constructors

Link copied to clipboard
constructor(cloudWatchLogGroupArn: String? = null, enabled: Boolean? = null, logLevel: EnvironmentLoggingLevel? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The ARN of the CloudWatch Logs log group for each type of Apache Airflow log type that you have enabled.

Link copied to clipboard
val enabled: Boolean? = null

Indicates whether to enable the Apache Airflow log type (e.g. DagProcessingLogs ) in CloudWatch Logs.

Link copied to clipboard

Defines the Apache Airflow logs to send for the log type (e.g. DagProcessingLogs ) to CloudWatch Logs. Valid values: CRITICAL , ERROR , WARNING , INFO .