Struct aws_sdk_chime::operation::update_user_settings::builders::UpdateUserSettingsInputBuilder    
source · #[non_exhaustive]pub struct UpdateUserSettingsInputBuilder { /* private fields */ }Expand description
A builder for UpdateUserSettingsInput.
Implementations§
source§impl UpdateUserSettingsInputBuilder
 
impl UpdateUserSettingsInputBuilder
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 user_settings(self, input: UserSettings) -> Self
 
pub fn user_settings(self, input: UserSettings) -> Self
The user settings to update.
This field is required.sourcepub fn set_user_settings(self, input: Option<UserSettings>) -> Self
 
pub fn set_user_settings(self, input: Option<UserSettings>) -> Self
The user settings to update.
sourcepub fn get_user_settings(&self) -> &Option<UserSettings>
 
pub fn get_user_settings(&self) -> &Option<UserSettings>
The user settings to update.
sourcepub fn build(self) -> Result<UpdateUserSettingsInput, BuildError>
 
pub fn build(self) -> Result<UpdateUserSettingsInput, BuildError>
Consumes the builder and constructs a UpdateUserSettingsInput.
source§impl UpdateUserSettingsInputBuilder
 
impl UpdateUserSettingsInputBuilder
sourcepub async fn send_with(
    self,
    client: &Client,
) -> Result<UpdateUserSettingsOutput, SdkError<UpdateUserSettingsError, HttpResponse>>
 
pub async fn send_with( self, client: &Client, ) -> Result<UpdateUserSettingsOutput, SdkError<UpdateUserSettingsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateUserSettingsInputBuilder
 
impl Clone for UpdateUserSettingsInputBuilder
source§fn clone(&self) -> UpdateUserSettingsInputBuilder
 
fn clone(&self) -> UpdateUserSettingsInputBuilder
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 Default for UpdateUserSettingsInputBuilder
 
impl Default for UpdateUserSettingsInputBuilder
source§fn default() -> UpdateUserSettingsInputBuilder
 
fn default() -> UpdateUserSettingsInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for UpdateUserSettingsInputBuilder
 
impl PartialEq for UpdateUserSettingsInputBuilder
source§fn eq(&self, other: &UpdateUserSettingsInputBuilder) -> bool
 
fn eq(&self, other: &UpdateUserSettingsInputBuilder) -> bool
Tests for 
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdateUserSettingsInputBuilder
Auto Trait Implementations§
impl Freeze for UpdateUserSettingsInputBuilder
impl RefUnwindSafe for UpdateUserSettingsInputBuilder
impl Send for UpdateUserSettingsInputBuilder
impl Sync for UpdateUserSettingsInputBuilder
impl Unpin for UpdateUserSettingsInputBuilder
impl UnwindSafe for UpdateUserSettingsInputBuilder
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.