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)


1241
1242
1243
1244
1245
1246
# File 'lib/aws-sdk-mwaa/types.rb', line 1241

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)


1241
1242
1243
1244
1245
1246
# File 'lib/aws-sdk-mwaa/types.rb', line 1241

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