[−][src]Struct rusoto_connect::CreateUserRequest
Fields
directory_user_id: Option<String>
The unique identifier for the user account in the directory service directory used for identity management. If Amazon Connect is unable to access the existing directory, you can use the DirectoryUserId
to authenticate users. If you include the parameter, it is assumed that Amazon Connect cannot access the directory. If the parameter is not included, the UserIdentityInfo
is used to authenticate users from your existing 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 InvalidRequestException
is returned.
hierarchy_group_id: Option<String>
The unique identifier for the hierarchy group to assign to the user created.
identity_info: Option<UserIdentityInfo>
Information about the user, including email address, first name, and last name.
instance_id: String
The identifier for your Amazon Connect instance. To find the ID of your instance, open the AWS console and select Amazon Connect. Select the alias of the instance in the Instance alias column. The instance ID is displayed in the Overview section of your instance settings. For example, the instance ID is the set of characters at the end of the instance ARN, after instance/, such as 10a4c4eb-f57e-4d4c-b602-bf39176ced07.
password: Option<String>
The password for the user account to create. This is required if you are using Amazon Connect for identity management. If you are using SAML for identity management and include this parameter, an InvalidRequestException
is returned.
phone_config: UserPhoneConfig
Specifies the phone settings for the user, including AfterContactWorkTimeLimit
, AutoAccept
, DeskPhoneNumber
, and PhoneType
.
routing_profile_id: String
The unique identifier for the routing profile to assign to the user created.
security_profile_ids: Vec<String>
The unique identifier of the security profile to assign to the user created.
username: String
The user name in Amazon Connect for the account to create. If you are using SAML for identity management in your Amazon Connect, the value for Username
can include up to 64 characters from [a-zA-Z0-9_-.\@]+.
Trait Implementations
impl PartialEq<CreateUserRequest> for CreateUserRequest
[src]
fn eq(&self, other: &CreateUserRequest) -> bool
[src]
fn ne(&self, other: &CreateUserRequest) -> bool
[src]
impl Default for CreateUserRequest
[src]
fn default() -> CreateUserRequest
[src]
impl Clone for CreateUserRequest
[src]
fn clone(&self) -> CreateUserRequest
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for CreateUserRequest
[src]
impl Serialize for CreateUserRequest
[src]
Auto Trait Implementations
impl Send for CreateUserRequest
impl Sync for CreateUserRequest
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self