[][src]Struct rusoto_connect::User

pub struct User {
    pub arn: Option<String>,
    pub directory_user_id: Option<String>,
    pub hierarchy_group_id: Option<String>,
    pub id: Option<String>,
    pub identity_info: Option<UserIdentityInfo>,
    pub phone_config: Option<UserPhoneConfig>,
    pub routing_profile_id: Option<String>,
    pub security_profile_ids: Option<Vec<String>>,
    pub tags: Option<HashMap<String, String>>,
    pub username: Option<String>,
}

Contains information about a user account for a Amazon Connect instance.

Fields

arn: Option<String>

The Amazon Resource Name (ARN) of the user account.

directory_user_id: Option<String>

The identifier of the user account in the directory used for identity management.

hierarchy_group_id: Option<String>

The identifier of the hierarchy group for the user.

id: Option<String>

The identifier of the user account.

identity_info: Option<UserIdentityInfo>

Information about the user identity.

phone_config: Option<UserPhoneConfig>

Information about the phone configuration for the user.

routing_profile_id: Option<String>

The identifier of the routing profile for the user.

security_profile_ids: Option<Vec<String>>

The identifiers of the security profiles for the user.

tags: Option<HashMap<String, String>>

The tags.

username: Option<String>

The user name assigned to the user account.

Trait Implementations

impl Clone for User[src]

impl Debug for User[src]

impl Default for User[src]

impl<'de> Deserialize<'de> for User[src]

impl PartialEq<User> for User[src]

impl StructuralPartialEq for User[src]

Auto Trait Implementations

impl RefUnwindSafe for User

impl Send for User

impl Sync for User

impl Unpin for User

impl UnwindSafe for User

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.