Struct aws_sdk_connect::input::CreateUserInput
source · [−]#[non_exhaustive]pub struct CreateUserInput { /* private fields */ }
Implementations
sourceimpl CreateUserInput
impl CreateUserInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateUser, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateUser, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateUser
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateUserInput
.
sourceimpl CreateUserInput
impl CreateUserInput
sourcepub fn username(&self) -> Option<&str>
pub fn username(&self) -> Option<&str>
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_-.\@]+.
sourcepub fn password(&self) -> Option<&str>
pub fn password(&self) -> Option<&str>
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.
sourcepub fn identity_info(&self) -> Option<&UserIdentityInfo>
pub fn identity_info(&self) -> Option<&UserIdentityInfo>
The information about the identity of the user.
sourcepub fn phone_config(&self) -> Option<&UserPhoneConfig>
pub fn phone_config(&self) -> Option<&UserPhoneConfig>
The phone settings for the user.
sourcepub fn directory_user_id(&self) -> Option<&str>
pub fn directory_user_id(&self) -> Option<&str>
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.
sourcepub fn security_profile_ids(&self) -> Option<&[String]>
pub fn security_profile_ids(&self) -> Option<&[String]>
The identifier of the security profile for the user.
sourcepub fn routing_profile_id(&self) -> Option<&str>
pub fn routing_profile_id(&self) -> Option<&str>
The identifier of the routing profile for the user.
sourcepub fn hierarchy_group_id(&self) -> Option<&str>
pub fn hierarchy_group_id(&self) -> Option<&str>
The identifier of the hierarchy group for the user.
sourcepub fn instance_id(&self) -> Option<&str>
pub fn instance_id(&self) -> Option<&str>
The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.
One or more tags.
Trait Implementations
sourceimpl Clone for CreateUserInput
impl Clone for CreateUserInput
sourcefn clone(&self) -> CreateUserInput
fn clone(&self) -> CreateUserInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for CreateUserInput
impl Debug for CreateUserInput
sourceimpl PartialEq<CreateUserInput> for CreateUserInput
impl PartialEq<CreateUserInput> for CreateUserInput
sourcefn eq(&self, other: &CreateUserInput) -> bool
fn eq(&self, other: &CreateUserInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &CreateUserInput) -> bool
fn ne(&self, other: &CreateUserInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for CreateUserInput
Auto Trait Implementations
impl RefUnwindSafe for CreateUserInput
impl Send for CreateUserInput
impl Sync for CreateUserInput
impl Unpin for CreateUserInput
impl UnwindSafe for CreateUserInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more