Class: Aws::MWAA::Types::ModuleLoggingConfigurationInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::MWAA::Types::ModuleLoggingConfigurationInput
- 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
-
#enabled ⇒ Boolean
Indicates whether to enable the Apache Airflow log type (e.g.
DagProcessingLogs
). -
#log_level ⇒ String
Defines the Apache Airflow log level (e.g.
INFO
) to send to CloudWatch Logs.
Instance Attribute Details
#enabled ⇒ Boolean
Indicates whether to enable the Apache Airflow log type (e.g.
DagProcessingLogs
).
1251 1252 1253 1254 1255 1256 |
# File 'gems/aws-sdk-mwaa/lib/aws-sdk-mwaa/types.rb', line 1251 class ModuleLoggingConfigurationInput < Struct.new( :enabled, :log_level) SENSITIVE = [] include Aws::Structure end |
#log_level ⇒ String
Defines the Apache Airflow log level (e.g. INFO
) to send to
CloudWatch Logs.
1251 1252 1253 1254 1255 1256 |
# File 'gems/aws-sdk-mwaa/lib/aws-sdk-mwaa/types.rb', line 1251 class ModuleLoggingConfigurationInput < Struct.new( :enabled, :log_level) SENSITIVE = [] include Aws::Structure end |