[][src]Struct rusoto_connect::CreateUserRequest

pub struct CreateUserRequest {
    pub directory_user_id: Option<String>,
    pub hierarchy_group_id: Option<String>,
    pub identity_info: Option<UserIdentityInfo>,
    pub instance_id: String,
    pub password: Option<String>,
    pub phone_config: UserPhoneConfig,
    pub routing_profile_id: String,
    pub security_profile_ids: Vec<String>,
    pub tags: Option<HashMap<String, String>>,
    pub username: String,
}

Fields

directory_user_id: Option<String>

The identifier of the user account in the directory used for identity management. If Amazon Connect cannot access the directory, you can specify this identifier to authenticate users. If you include the identifier, we assume that Amazon Connect cannot access the directory. Otherwise, the identity information is used to authenticate users from your directory.

This parameter is required if you are using an existing directory for identity management in Amazon Connect when Amazon Connect cannot access your directory to authenticate users. If you are using SAML for identity management and include this parameter, an error is returned.

hierarchy_group_id: Option<String>

The identifier of the hierarchy group for the user.

identity_info: Option<UserIdentityInfo>

The information about the identity of the user.

instance_id: String

The identifier of the Amazon Connect instance.

password: Option<String>

The password for the user account. A password is required if you are using Amazon Connect for identity management. Otherwise, it is an error to include a password.

phone_config: UserPhoneConfig

The phone settings for the user.

routing_profile_id: String

The identifier of the routing profile for the user.

security_profile_ids: Vec<String>

The identifier of the security profile for the user.

tags: Option<HashMap<String, String>>

One or more tags.

username: String

The user name for the account. For instances not using SAML for identity management, the user name can include up to 20 characters. If you are using SAML for identity management, the user name can include up to 64 characters from [a-zA-Z0-9_-.\@]+.

Trait Implementations

impl Clone for CreateUserRequest[src]

impl Debug for CreateUserRequest[src]

impl Default for CreateUserRequest[src]

impl PartialEq<CreateUserRequest> for CreateUserRequest[src]

impl Serialize for CreateUserRequest[src]

impl StructuralPartialEq for CreateUserRequest[src]

Auto Trait Implementations

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> 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> Sealed<T> for T where
    T: ?Sized

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.