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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-mwaa/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)


1119
1120
1121
1122
1123
1124
# File 'gems/aws-sdk-mwaa/lib/aws-sdk-mwaa/types.rb', line 1119

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)


1119
1120
1121
1122
1123
1124
# File 'gems/aws-sdk-mwaa/lib/aws-sdk-mwaa/types.rb', line 1119

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