Struct aws_sdk_mwaa::types::LoggingConfiguration
source · #[non_exhaustive]pub struct LoggingConfiguration {
pub dag_processing_logs: Option<ModuleLoggingConfiguration>,
pub scheduler_logs: Option<ModuleLoggingConfiguration>,
pub webserver_logs: Option<ModuleLoggingConfiguration>,
pub worker_logs: Option<ModuleLoggingConfiguration>,
pub task_logs: Option<ModuleLoggingConfiguration>,
}Expand description
Describes the Apache Airflow log types that are published to CloudWatch Logs.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.dag_processing_logs: Option<ModuleLoggingConfiguration>The Airflow DAG processing logs published to CloudWatch Logs and the log level.
scheduler_logs: Option<ModuleLoggingConfiguration>The Airflow scheduler logs published to CloudWatch Logs and the log level.
webserver_logs: Option<ModuleLoggingConfiguration>The Airflow web server logs published to CloudWatch Logs and the log level.
worker_logs: Option<ModuleLoggingConfiguration>The Airflow worker logs published to CloudWatch Logs and the log level.
task_logs: Option<ModuleLoggingConfiguration>The Airflow task logs published to CloudWatch Logs and the log level.
Implementations§
source§impl LoggingConfiguration
impl LoggingConfiguration
sourcepub fn dag_processing_logs(&self) -> Option<&ModuleLoggingConfiguration>
pub fn dag_processing_logs(&self) -> Option<&ModuleLoggingConfiguration>
The Airflow DAG processing logs published to CloudWatch Logs and the log level.
sourcepub fn scheduler_logs(&self) -> Option<&ModuleLoggingConfiguration>
pub fn scheduler_logs(&self) -> Option<&ModuleLoggingConfiguration>
The Airflow scheduler logs published to CloudWatch Logs and the log level.
sourcepub fn webserver_logs(&self) -> Option<&ModuleLoggingConfiguration>
pub fn webserver_logs(&self) -> Option<&ModuleLoggingConfiguration>
The Airflow web server logs published to CloudWatch Logs and the log level.
sourcepub fn worker_logs(&self) -> Option<&ModuleLoggingConfiguration>
pub fn worker_logs(&self) -> Option<&ModuleLoggingConfiguration>
The Airflow worker logs published to CloudWatch Logs and the log level.
sourcepub fn task_logs(&self) -> Option<&ModuleLoggingConfiguration>
pub fn task_logs(&self) -> Option<&ModuleLoggingConfiguration>
The Airflow task logs published to CloudWatch Logs and the log level.
source§impl LoggingConfiguration
impl LoggingConfiguration
sourcepub fn builder() -> LoggingConfigurationBuilder
pub fn builder() -> LoggingConfigurationBuilder
Creates a new builder-style object to manufacture LoggingConfiguration.
Trait Implementations§
source§impl Clone for LoggingConfiguration
impl Clone for LoggingConfiguration
source§fn clone(&self) -> LoggingConfiguration
fn clone(&self) -> LoggingConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for LoggingConfiguration
impl Debug for LoggingConfiguration
source§impl PartialEq for LoggingConfiguration
impl PartialEq for LoggingConfiguration
source§fn eq(&self, other: &LoggingConfiguration) -> bool
fn eq(&self, other: &LoggingConfiguration) -> bool
self and other values to be equal, and is used
by ==.