[][src]Struct rusoto_workdocs::UpdateUserRequest

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

impl Clone for UpdateUserRequest[src]

impl Debug for UpdateUserRequest[src]

impl Default for UpdateUserRequest[src]

impl PartialEq<UpdateUserRequest> for UpdateUserRequest[src]

impl Serialize for UpdateUserRequest[src]

impl StructuralPartialEq for UpdateUserRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.