pub struct EnableUserRequest {
pub authentication_type: String,
pub user_name: String,
}
Fields§
§authentication_type: String
The authentication type for the user. You must specify USERPOOL.
user_name: String
The email address of the user.
Users' email addresses are case-sensitive. During login, if they specify an email address that doesn't use the same capitalization as the email address specified when their user pool account was created, a "user does not exist" error message displays.
Trait Implementations§
Source§impl Clone for EnableUserRequest
impl Clone for EnableUserRequest
Source§fn clone(&self) -> EnableUserRequest
fn clone(&self) -> EnableUserRequest
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 EnableUserRequest
impl Debug for EnableUserRequest
Source§impl Default for EnableUserRequest
impl Default for EnableUserRequest
Source§fn default() -> EnableUserRequest
fn default() -> EnableUserRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for EnableUserRequest
impl PartialEq for EnableUserRequest
Source§impl Serialize for EnableUserRequest
impl Serialize for EnableUserRequest
impl StructuralPartialEq for EnableUserRequest
Auto Trait Implementations§
impl Freeze for EnableUserRequest
impl RefUnwindSafe for EnableUserRequest
impl Send for EnableUserRequest
impl Sync for EnableUserRequest
impl Unpin for EnableUserRequest
impl UnwindSafe for EnableUserRequest
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