#[non_exhaustive]pub struct UpdateUserInputBuilder { /* private fields */ }Expand description
A builder for UpdateUserInput.
Implementations§
source§impl UpdateUserInputBuilder
impl UpdateUserInputBuilder
sourcepub fn account_id(self, input: impl Into<String>) -> Self
pub fn account_id(self, input: impl Into<String>) -> Self
The Amazon Chime account ID.
This field is required.sourcepub fn set_account_id(self, input: Option<String>) -> Self
pub fn set_account_id(self, input: Option<String>) -> Self
The Amazon Chime account ID.
sourcepub fn get_account_id(&self) -> &Option<String>
pub fn get_account_id(&self) -> &Option<String>
The Amazon Chime account ID.
sourcepub fn set_user_id(self, input: Option<String>) -> Self
pub fn set_user_id(self, input: Option<String>) -> Self
The user ID.
sourcepub fn get_user_id(&self) -> &Option<String>
pub fn get_user_id(&self) -> &Option<String>
The user ID.
sourcepub fn license_type(self, input: License) -> Self
pub fn license_type(self, input: License) -> Self
The user license type to update. This must be a supported license type for the Amazon Chime account that the user belongs to.
sourcepub fn set_license_type(self, input: Option<License>) -> Self
pub fn set_license_type(self, input: Option<License>) -> Self
The user license type to update. This must be a supported license type for the Amazon Chime account that the user belongs to.
sourcepub fn get_license_type(&self) -> &Option<License>
pub fn get_license_type(&self) -> &Option<License>
The user license type to update. This must be a supported license type for the Amazon Chime account that the user belongs to.
sourcepub fn set_user_type(self, input: Option<UserType>) -> Self
pub fn set_user_type(self, input: Option<UserType>) -> Self
The user type.
sourcepub fn get_user_type(&self) -> &Option<UserType>
pub fn get_user_type(&self) -> &Option<UserType>
The user type.
sourcepub fn alexa_for_business_metadata(
self,
input: AlexaForBusinessMetadata,
) -> Self
pub fn alexa_for_business_metadata( self, input: AlexaForBusinessMetadata, ) -> Self
The Alexa for Business metadata.
sourcepub fn set_alexa_for_business_metadata(
self,
input: Option<AlexaForBusinessMetadata>,
) -> Self
pub fn set_alexa_for_business_metadata( self, input: Option<AlexaForBusinessMetadata>, ) -> Self
The Alexa for Business metadata.
sourcepub fn get_alexa_for_business_metadata(
&self,
) -> &Option<AlexaForBusinessMetadata>
pub fn get_alexa_for_business_metadata( &self, ) -> &Option<AlexaForBusinessMetadata>
The Alexa for Business metadata.
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
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)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.