pub struct CognitoCompromisedPasswordsRequest {
pub passwords: Vec<String>,
}Expand description
Admin payload for /_fakecloud/cognito/compromised-passwords.
Plaintext passwords are hashed (sha256) and added to the
compromised-credentials set consulted by InitiateAuth /
AdminInitiateAuth when the pool’s
CompromisedCredentialsRiskConfiguration.Actions.EventAction is
BLOCK.
Fields§
§passwords: Vec<String>Trait Implementations§
Source§impl Clone for CognitoCompromisedPasswordsRequest
impl Clone for CognitoCompromisedPasswordsRequest
Source§fn clone(&self) -> CognitoCompromisedPasswordsRequest
fn clone(&self) -> CognitoCompromisedPasswordsRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for CognitoCompromisedPasswordsRequest
impl<'de> Deserialize<'de> for CognitoCompromisedPasswordsRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CognitoCompromisedPasswordsRequest
impl RefUnwindSafe for CognitoCompromisedPasswordsRequest
impl Send for CognitoCompromisedPasswordsRequest
impl Sync for CognitoCompromisedPasswordsRequest
impl Unpin for CognitoCompromisedPasswordsRequest
impl UnsafeUnpin for CognitoCompromisedPasswordsRequest
impl UnwindSafe for CognitoCompromisedPasswordsRequest
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