#[non_exhaustive]pub struct UserPoolAddOnsType {
pub advanced_security_mode: AdvancedSecurityModeType,
}Expand description
User pool add-ons. Contains settings for activation of advanced security features. To log user security information but take no action, set to AUDIT. To configure automatic security responses to risky traffic to your user pool, set to ENFORCED.
For more information, see Adding advanced security to 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.advanced_security_mode: AdvancedSecurityModeTypeThe operating mode of advanced security features in your user pool.
Implementations§
source§impl UserPoolAddOnsType
impl UserPoolAddOnsType
sourcepub fn advanced_security_mode(&self) -> &AdvancedSecurityModeType
pub fn advanced_security_mode(&self) -> &AdvancedSecurityModeType
The operating mode of advanced security features in your user pool.
source§impl UserPoolAddOnsType
impl UserPoolAddOnsType
sourcepub fn builder() -> UserPoolAddOnsTypeBuilder
pub fn builder() -> UserPoolAddOnsTypeBuilder
Creates a new builder-style object to manufacture UserPoolAddOnsType.
Trait Implementations§
source§impl Clone for UserPoolAddOnsType
impl Clone for UserPoolAddOnsType
source§fn clone(&self) -> UserPoolAddOnsType
fn clone(&self) -> UserPoolAddOnsType
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 UserPoolAddOnsType
impl Debug for UserPoolAddOnsType
source§impl PartialEq for UserPoolAddOnsType
impl PartialEq for UserPoolAddOnsType
source§fn eq(&self, other: &UserPoolAddOnsType) -> bool
fn eq(&self, other: &UserPoolAddOnsType) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UserPoolAddOnsType
Auto Trait Implementations§
impl RefUnwindSafe for UserPoolAddOnsType
impl Send for UserPoolAddOnsType
impl Sync for UserPoolAddOnsType
impl Unpin for UserPoolAddOnsType
impl UnwindSafe for UserPoolAddOnsType
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.