pub struct UpdateUserRequest {
pub authentication_token: Option<String>,
pub given_name: Option<String>,
pub grant_poweruser_privileges: Option<String>,
pub locale: Option<String>,
pub storage_rule: Option<StorageRuleType>,
pub surname: Option<String>,
pub time_zone_id: Option<String>,
pub type_: Option<String>,
pub user_id: String,
}
Fields§
§authentication_token: Option<String>
Amazon WorkDocs authentication token. Not required when using AWS administrator credentials to access the API.
given_name: Option<String>
The given name of the user.
grant_poweruser_privileges: Option<String>
Boolean value to determine whether the user is granted Poweruser privileges.
locale: Option<String>
The locale of the user.
storage_rule: Option<StorageRuleType>
The amount of storage for the user.
surname: Option<String>
The surname of the user.
time_zone_id: Option<String>
The time zone ID of the user.
type_: Option<String>
The type of the user.
user_id: String
The ID of the user.
Trait Implementations§
Source§impl Clone for UpdateUserRequest
impl Clone for UpdateUserRequest
Source§fn clone(&self) -> UpdateUserRequest
fn clone(&self) -> UpdateUserRequest
Returns a duplicate 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 UpdateUserRequest
impl Debug for UpdateUserRequest
Source§impl Default for UpdateUserRequest
impl Default for UpdateUserRequest
Source§fn default() -> UpdateUserRequest
fn default() -> UpdateUserRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateUserRequest
impl PartialEq for UpdateUserRequest
Source§impl Serialize for UpdateUserRequest
impl Serialize for UpdateUserRequest
impl StructuralPartialEq for UpdateUserRequest
Auto Trait Implementations§
impl Freeze for UpdateUserRequest
impl RefUnwindSafe for UpdateUserRequest
impl Send for UpdateUserRequest
impl Sync for UpdateUserRequest
impl Unpin for UpdateUserRequest
impl UnwindSafe for UpdateUserRequest
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