#[non_exhaustive]pub struct ModuleLoggingConfigurationInputBuilder { /* private fields */ }Expand description
A builder for ModuleLoggingConfigurationInput.
Implementations§
source§impl ModuleLoggingConfigurationInputBuilder
impl ModuleLoggingConfigurationInputBuilder
sourcepub fn enabled(self, input: bool) -> Self
pub fn enabled(self, input: bool) -> Self
Indicates whether to enable the Apache Airflow log type (e.g. DagProcessingLogs).
sourcepub fn set_enabled(self, input: Option<bool>) -> Self
pub fn set_enabled(self, input: Option<bool>) -> Self
Indicates whether to enable the Apache Airflow log type (e.g. DagProcessingLogs).
sourcepub fn get_enabled(&self) -> &Option<bool>
pub fn get_enabled(&self) -> &Option<bool>
Indicates whether to enable the Apache Airflow log type (e.g. DagProcessingLogs).
sourcepub fn log_level(self, input: LoggingLevel) -> Self
pub fn log_level(self, input: LoggingLevel) -> Self
Defines the Apache Airflow log level (e.g. INFO) to send to CloudWatch Logs.
sourcepub fn set_log_level(self, input: Option<LoggingLevel>) -> Self
pub fn set_log_level(self, input: Option<LoggingLevel>) -> Self
Defines the Apache Airflow log level (e.g. INFO) to send to CloudWatch Logs.
sourcepub fn get_log_level(&self) -> &Option<LoggingLevel>
pub fn get_log_level(&self) -> &Option<LoggingLevel>
Defines the Apache Airflow log level (e.g. INFO) to send to CloudWatch Logs.
sourcepub fn build(self) -> ModuleLoggingConfigurationInput
pub fn build(self) -> ModuleLoggingConfigurationInput
Consumes the builder and constructs a ModuleLoggingConfigurationInput.
Trait Implementations§
source§impl Clone for ModuleLoggingConfigurationInputBuilder
impl Clone for ModuleLoggingConfigurationInputBuilder
source§fn clone(&self) -> ModuleLoggingConfigurationInputBuilder
fn clone(&self) -> ModuleLoggingConfigurationInputBuilder
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 Default for ModuleLoggingConfigurationInputBuilder
impl Default for ModuleLoggingConfigurationInputBuilder
source§fn default() -> ModuleLoggingConfigurationInputBuilder
fn default() -> ModuleLoggingConfigurationInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<ModuleLoggingConfigurationInputBuilder> for ModuleLoggingConfigurationInputBuilder
impl PartialEq<ModuleLoggingConfigurationInputBuilder> for ModuleLoggingConfigurationInputBuilder
source§fn eq(&self, other: &ModuleLoggingConfigurationInputBuilder) -> bool
fn eq(&self, other: &ModuleLoggingConfigurationInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ModuleLoggingConfigurationInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for ModuleLoggingConfigurationInputBuilder
impl Send for ModuleLoggingConfigurationInputBuilder
impl Sync for ModuleLoggingConfigurationInputBuilder
impl Unpin for ModuleLoggingConfigurationInputBuilder
impl UnwindSafe for ModuleLoggingConfigurationInputBuilder
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