Struct aws_sdk_mwaa::types::LoggingConfigurationInput
source · #[non_exhaustive]pub struct LoggingConfigurationInput {
pub dag_processing_logs: Option<ModuleLoggingConfigurationInput>,
pub scheduler_logs: Option<ModuleLoggingConfigurationInput>,
pub webserver_logs: Option<ModuleLoggingConfigurationInput>,
pub worker_logs: Option<ModuleLoggingConfigurationInput>,
pub task_logs: Option<ModuleLoggingConfigurationInput>,
}Expand description
Defines the Apache Airflow log types to send to CloudWatch Logs.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.dag_processing_logs: Option<ModuleLoggingConfigurationInput>Publishes Airflow DAG processing logs to CloudWatch Logs.
scheduler_logs: Option<ModuleLoggingConfigurationInput>Publishes Airflow scheduler logs to CloudWatch Logs.
webserver_logs: Option<ModuleLoggingConfigurationInput>Publishes Airflow web server logs to CloudWatch Logs.
worker_logs: Option<ModuleLoggingConfigurationInput>Publishes Airflow worker logs to CloudWatch Logs.
task_logs: Option<ModuleLoggingConfigurationInput>Publishes Airflow task logs to CloudWatch Logs.
Implementations§
source§impl LoggingConfigurationInput
impl LoggingConfigurationInput
sourcepub fn dag_processing_logs(&self) -> Option<&ModuleLoggingConfigurationInput>
pub fn dag_processing_logs(&self) -> Option<&ModuleLoggingConfigurationInput>
Publishes Airflow DAG processing logs to CloudWatch Logs.
sourcepub fn scheduler_logs(&self) -> Option<&ModuleLoggingConfigurationInput>
pub fn scheduler_logs(&self) -> Option<&ModuleLoggingConfigurationInput>
Publishes Airflow scheduler logs to CloudWatch Logs.
sourcepub fn webserver_logs(&self) -> Option<&ModuleLoggingConfigurationInput>
pub fn webserver_logs(&self) -> Option<&ModuleLoggingConfigurationInput>
Publishes Airflow web server logs to CloudWatch Logs.
sourcepub fn worker_logs(&self) -> Option<&ModuleLoggingConfigurationInput>
pub fn worker_logs(&self) -> Option<&ModuleLoggingConfigurationInput>
Publishes Airflow worker logs to CloudWatch Logs.
sourcepub fn task_logs(&self) -> Option<&ModuleLoggingConfigurationInput>
pub fn task_logs(&self) -> Option<&ModuleLoggingConfigurationInput>
Publishes Airflow task logs to CloudWatch Logs.
source§impl LoggingConfigurationInput
impl LoggingConfigurationInput
sourcepub fn builder() -> LoggingConfigurationInputBuilder
pub fn builder() -> LoggingConfigurationInputBuilder
Creates a new builder-style object to manufacture LoggingConfigurationInput.
Trait Implementations§
source§impl Clone for LoggingConfigurationInput
impl Clone for LoggingConfigurationInput
source§fn clone(&self) -> LoggingConfigurationInput
fn clone(&self) -> LoggingConfigurationInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for LoggingConfigurationInput
impl Debug for LoggingConfigurationInput
source§impl PartialEq<LoggingConfigurationInput> for LoggingConfigurationInput
impl PartialEq<LoggingConfigurationInput> for LoggingConfigurationInput
source§fn eq(&self, other: &LoggingConfigurationInput) -> bool
fn eq(&self, other: &LoggingConfigurationInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for LoggingConfigurationInput
Auto Trait Implementations§
impl RefUnwindSafe for LoggingConfigurationInput
impl Send for LoggingConfigurationInput
impl Sync for LoggingConfigurationInput
impl Unpin for LoggingConfigurationInput
impl UnwindSafe for LoggingConfigurationInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more