#[non_exhaustive]pub struct UpdateUserInputBuilder { /* private fields */ }
Expand description
A builder for UpdateUserInput
.
Implementations§
source§impl UpdateUserInputBuilder
impl UpdateUserInputBuilder
sourcepub fn user_name(self, input: impl Into<String>) -> Self
pub fn user_name(self, input: impl Into<String>) -> Self
The name of the user
This field is required.sourcepub fn set_user_name(self, input: Option<String>) -> Self
pub fn set_user_name(self, input: Option<String>) -> Self
The name of the user
sourcepub fn get_user_name(&self) -> &Option<String>
pub fn get_user_name(&self) -> &Option<String>
The name of the user
sourcepub fn authentication_mode(self, input: AuthenticationMode) -> Self
pub fn authentication_mode(self, input: AuthenticationMode) -> Self
Denotes the user's authentication properties, such as whether it requires a password to authenticate.
sourcepub fn set_authentication_mode(self, input: Option<AuthenticationMode>) -> Self
pub fn set_authentication_mode(self, input: Option<AuthenticationMode>) -> Self
Denotes the user's authentication properties, such as whether it requires a password to authenticate.
sourcepub fn get_authentication_mode(&self) -> &Option<AuthenticationMode>
pub fn get_authentication_mode(&self) -> &Option<AuthenticationMode>
Denotes the user's authentication properties, such as whether it requires a password to authenticate.
sourcepub fn access_string(self, input: impl Into<String>) -> Self
pub fn access_string(self, input: impl Into<String>) -> Self
Access permissions string used for this user.
sourcepub fn set_access_string(self, input: Option<String>) -> Self
pub fn set_access_string(self, input: Option<String>) -> Self
Access permissions string used for this user.
sourcepub fn get_access_string(&self) -> &Option<String>
pub fn get_access_string(&self) -> &Option<String>
Access permissions string used for this user.
sourcepub fn build(self) -> Result<UpdateUserInput, BuildError>
pub fn build(self) -> Result<UpdateUserInput, BuildError>
Consumes the builder and constructs a UpdateUserInput
.
source§impl UpdateUserInputBuilder
impl UpdateUserInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdateUserOutput, SdkError<UpdateUserError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdateUserOutput, SdkError<UpdateUserError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateUserInputBuilder
impl Clone for UpdateUserInputBuilder
source§fn clone(&self) -> UpdateUserInputBuilder
fn clone(&self) -> UpdateUserInputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for UpdateUserInputBuilder
impl Debug for UpdateUserInputBuilder
source§impl Default for UpdateUserInputBuilder
impl Default for UpdateUserInputBuilder
source§fn default() -> UpdateUserInputBuilder
fn default() -> UpdateUserInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for UpdateUserInputBuilder
impl PartialEq for UpdateUserInputBuilder
source§fn eq(&self, other: &UpdateUserInputBuilder) -> bool
fn eq(&self, other: &UpdateUserInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateUserInputBuilder
Auto Trait Implementations§
impl Freeze for UpdateUserInputBuilder
impl RefUnwindSafe for UpdateUserInputBuilder
impl Send for UpdateUserInputBuilder
impl Sync for UpdateUserInputBuilder
impl Unpin for UpdateUserInputBuilder
impl UnwindSafe for UpdateUserInputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.