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. You can find the instanceId in the ARN of the 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.
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§
Source§impl Clone for CreateUserRequest
impl Clone for CreateUserRequest
Source§fn clone(&self) -> CreateUserRequest
fn clone(&self) -> CreateUserRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more