Class: Aws::MWAA::Types::ModuleLoggingConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::MWAA::Types::ModuleLoggingConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mwaa/types.rb
Overview
Describes the Apache Airflow log details for the log type (e.g. ‘DagProcessingLogs`).
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cloud_watch_log_group_arn ⇒ String
The Amazon Resource Name (ARN) for the CloudWatch Logs group where the Apache Airflow log type (e.g. ‘DagProcessingLogs`) is published.
-
#enabled ⇒ Boolean
Indicates whether the Apache Airflow log type (e.g. ‘DagProcessingLogs`) is enabled.
-
#log_level ⇒ String
The Apache Airflow log level for the log type (e.g. ‘DagProcessingLogs`).
Instance Attribute Details
#cloud_watch_log_group_arn ⇒ String
The Amazon Resource Name (ARN) for the CloudWatch Logs group where the Apache Airflow log type (e.g. ‘DagProcessingLogs`) is published. For example, `arn:aws:logs:us-east-1:123456789012:log-group:airflow-MyMWAAEnvironment-MwaaEnvironment-DAGProcessing:*`.
1228 1229 1230 1231 1232 1233 1234 |
# File 'lib/aws-sdk-mwaa/types.rb', line 1228 class ModuleLoggingConfiguration < Struct.new( :enabled, :log_level, :cloud_watch_log_group_arn) SENSITIVE = [] include Aws::Structure end |
#enabled ⇒ Boolean
Indicates whether the Apache Airflow log type (e.g. ‘DagProcessingLogs`) is enabled.
1228 1229 1230 1231 1232 1233 1234 |
# File 'lib/aws-sdk-mwaa/types.rb', line 1228 class ModuleLoggingConfiguration < Struct.new( :enabled, :log_level, :cloud_watch_log_group_arn) SENSITIVE = [] include Aws::Structure end |
#log_level ⇒ String
The Apache Airflow log level for the log type (e.g. ‘DagProcessingLogs`).
1228 1229 1230 1231 1232 1233 1234 |
# File 'lib/aws-sdk-mwaa/types.rb', line 1228 class ModuleLoggingConfiguration < Struct.new( :enabled, :log_level, :cloud_watch_log_group_arn) SENSITIVE = [] include Aws::Structure end |