#[non_exhaustive]pub struct LogConfigurationType {
pub log_level: LogLevel,
pub event_source: EventSourceName,
pub cloud_watch_logs_configuration: Option<CloudWatchLogsConfigurationType>,
}Expand description
The logging parameters of a user pool.
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.log_level: LogLevelThe errorlevel selection of logs that a user pool sends for detailed activity logging.
event_source: EventSourceNameThe source of events that your user pool sends for detailed activity logging.
cloud_watch_logs_configuration: Option<CloudWatchLogsConfigurationType>The CloudWatch logging destination of a user pool.
Implementations§
source§impl LogConfigurationType
impl LogConfigurationType
sourcepub fn log_level(&self) -> &LogLevel
pub fn log_level(&self) -> &LogLevel
The errorlevel selection of logs that a user pool sends for detailed activity logging.
sourcepub fn event_source(&self) -> &EventSourceName
pub fn event_source(&self) -> &EventSourceName
The source of events that your user pool sends for detailed activity logging.
sourcepub fn cloud_watch_logs_configuration(
&self
) -> Option<&CloudWatchLogsConfigurationType>
pub fn cloud_watch_logs_configuration( &self ) -> Option<&CloudWatchLogsConfigurationType>
The CloudWatch logging destination of a user pool.
source§impl LogConfigurationType
impl LogConfigurationType
sourcepub fn builder() -> LogConfigurationTypeBuilder
pub fn builder() -> LogConfigurationTypeBuilder
Creates a new builder-style object to manufacture LogConfigurationType.
Trait Implementations§
source§impl Clone for LogConfigurationType
impl Clone for LogConfigurationType
source§fn clone(&self) -> LogConfigurationType
fn clone(&self) -> LogConfigurationType
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 LogConfigurationType
impl Debug for LogConfigurationType
source§impl PartialEq for LogConfigurationType
impl PartialEq for LogConfigurationType
source§fn eq(&self, other: &LogConfigurationType) -> bool
fn eq(&self, other: &LogConfigurationType) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for LogConfigurationType
Auto Trait Implementations§
impl RefUnwindSafe for LogConfigurationType
impl Send for LogConfigurationType
impl Sync for LogConfigurationType
impl Unpin for LogConfigurationType
impl UnwindSafe for LogConfigurationType
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.