Struct aws_sdk_workmail::input::CreateUserInput [−][src]
#[non_exhaustive]pub struct CreateUserInput {
pub organization_id: Option<String>,
pub name: Option<String>,
pub display_name: Option<String>,
pub password: Option<String>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.organization_id: Option<String>
The identifier of the organization for which the user is created.
name: Option<String>
The name for the new user. WorkMail directory user names have a maximum length of 64. All others have a maximum length of 20.
display_name: Option<String>
The display name for the new user.
password: Option<String>
The password for the new user.
Implementations
pub 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
>
Creates a new builder-style object to manufacture CreateUserInput
The identifier of the organization for which the user is created.
The name for the new user. WorkMail directory user names have a maximum length of 64. All others have a maximum length of 20.
The display name for the new user.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more