Class: Aws::MWAA::Types::ModuleLoggingConfigurationInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-mwaa/types.rb

Overview

Enables the Apache Airflow log type (e.g. ‘DagProcessingLogs`) and defines the log level to send to CloudWatch Logs (e.g. `INFO`).

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#enabledBoolean

Indicates whether to enable the Apache Airflow log type (e.g. ‘DagProcessingLogs`).

Returns:

  • (Boolean)


1251
1252
1253
1254
1255
1256
# File 'lib/aws-sdk-mwaa/types.rb', line 1251

class ModuleLoggingConfigurationInput < Struct.new(
  :enabled,
  :log_level)
  SENSITIVE = []
  include Aws::Structure
end

#log_levelString

Defines the Apache Airflow log level (e.g. ‘INFO`) to send to CloudWatch Logs.

Returns:

  • (String)


1251
1252
1253
1254
1255
1256
# File 'lib/aws-sdk-mwaa/types.rb', line 1251

class ModuleLoggingConfigurationInput < Struct.new(
  :enabled,
  :log_level)
  SENSITIVE = []
  include Aws::Structure
end