#[non_exhaustive]pub struct CreateUserInputBuilder { /* private fields */ }
Expand description
A builder for CreateUserInput
.
Implementations§
source§impl CreateUserInputBuilder
impl CreateUserInputBuilder
sourcepub fn organization_id(self, input: impl Into<String>) -> Self
pub fn organization_id(self, input: impl Into<String>) -> Self
The identifier of the organization for which the user is created.
sourcepub fn set_organization_id(self, input: Option<String>) -> Self
pub fn set_organization_id(self, input: Option<String>) -> Self
The identifier of the organization for which the user is created.
sourcepub fn get_organization_id(&self) -> &Option<String>
pub fn get_organization_id(&self) -> &Option<String>
The identifier of the organization for which the user is created.
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name for the new user. WorkMail directory user names have a maximum length of 64. All others have a maximum length of 20.
sourcepub fn set_name(self, input: Option<String>) -> Self
pub fn set_name(self, input: Option<String>) -> Self
The name for the new user. WorkMail directory user names have a maximum length of 64. All others have a maximum length of 20.
sourcepub fn get_name(&self) -> &Option<String>
pub fn get_name(&self) -> &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.
sourcepub fn display_name(self, input: impl Into<String>) -> Self
pub fn display_name(self, input: impl Into<String>) -> Self
The display name for the new user.
sourcepub fn set_display_name(self, input: Option<String>) -> Self
pub fn set_display_name(self, input: Option<String>) -> Self
The display name for the new user.
sourcepub fn get_display_name(&self) -> &Option<String>
pub fn get_display_name(&self) -> &Option<String>
The display name for the new user.
sourcepub fn set_password(self, input: Option<String>) -> Self
pub fn set_password(self, input: Option<String>) -> Self
The password for the new user.
sourcepub fn get_password(&self) -> &Option<String>
pub fn get_password(&self) -> &Option<String>
The password for the new user.
sourcepub fn build(self) -> Result<CreateUserInput, BuildError>
pub fn build(self) -> Result<CreateUserInput, BuildError>
Consumes the builder and constructs a CreateUserInput
.
source§impl CreateUserInputBuilder
impl CreateUserInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<CreateUserOutput, SdkError<CreateUserError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<CreateUserOutput, SdkError<CreateUserError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for CreateUserInputBuilder
impl Clone for CreateUserInputBuilder
source§fn clone(&self) -> CreateUserInputBuilder
fn clone(&self) -> CreateUserInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateUserInputBuilder
impl Debug for CreateUserInputBuilder
source§impl Default for CreateUserInputBuilder
impl Default for CreateUserInputBuilder
source§fn default() -> CreateUserInputBuilder
fn default() -> CreateUserInputBuilder
source§impl PartialEq<CreateUserInputBuilder> for CreateUserInputBuilder
impl PartialEq<CreateUserInputBuilder> for CreateUserInputBuilder
source§fn eq(&self, other: &CreateUserInputBuilder) -> bool
fn eq(&self, other: &CreateUserInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.