Struct aws_sdk_connect::types::UserIdentityInfo  
source · #[non_exhaustive]pub struct UserIdentityInfo { /* private fields */ }Expand description
Contains information about the identity of a user.
Implementations§
source§impl UserIdentityInfo
 
impl UserIdentityInfo
sourcepub fn first_name(&self) -> Option<&str>
 
pub fn first_name(&self) -> Option<&str>
The first name. This is required if you are using Amazon Connect or SAML for identity management.
sourcepub fn last_name(&self) -> Option<&str>
 
pub fn last_name(&self) -> Option<&str>
The last name. This is required if you are using Amazon Connect or SAML for identity management.
sourcepub fn email(&self) -> Option<&str>
 
pub fn email(&self) -> Option<&str>
The email address. If you are using SAML for identity management and include this parameter, an error is returned.
sourcepub fn secondary_email(&self) -> Option<&str>
 
pub fn secondary_email(&self) -> Option<&str>
The user's secondary email address. If you provide a secondary email, the user receives email notifications - other than password reset notifications - to this email address instead of to their primary email address.
Pattern: (?=^.{0,265}$)[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,63} 
source§impl UserIdentityInfo
 
impl UserIdentityInfo
sourcepub fn builder() -> UserIdentityInfoBuilder
 
pub fn builder() -> UserIdentityInfoBuilder
Creates a new builder-style object to manufacture UserIdentityInfo.
Trait Implementations§
source§impl Clone for UserIdentityInfo
 
impl Clone for UserIdentityInfo
source§fn clone(&self) -> UserIdentityInfo
 
fn clone(&self) -> UserIdentityInfo
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 UserIdentityInfo
 
impl Debug for UserIdentityInfo
source§impl PartialEq<UserIdentityInfo> for UserIdentityInfo
 
impl PartialEq<UserIdentityInfo> for UserIdentityInfo
source§fn eq(&self, other: &UserIdentityInfo) -> bool
 
fn eq(&self, other: &UserIdentityInfo) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UserIdentityInfo
Auto Trait Implementations§
impl RefUnwindSafe for UserIdentityInfo
impl Send for UserIdentityInfo
impl Sync for UserIdentityInfo
impl Unpin for UserIdentityInfo
impl UnwindSafe for UserIdentityInfo
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