[][src]Struct rusoto_workdocs::CreateUserRequest

pub struct CreateUserRequest {
    pub authentication_token: Option<String>,
    pub email_address: Option<String>,
    pub given_name: String,
    pub organization_id: Option<String>,
    pub password: String,
    pub storage_rule: Option<StorageRuleType>,
    pub surname: String,
    pub time_zone_id: Option<String>,
    pub username: String,
}

Fields

authentication_token: Option<String>

Amazon WorkDocs authentication token. Not required when using AWS administrator credentials to access the API.

email_address: Option<String>

The email address of the user.

given_name: String

The given name of the user.

organization_id: Option<String>

The ID of the organization.

password: String

The password of the user.

storage_rule: Option<StorageRuleType>

The amount of storage for the user.

surname: String

The surname of the user.

time_zone_id: Option<String>

The time zone ID of the user.

username: String

The login name of the user.

Trait Implementations

impl Clone for CreateUserRequest[src]

impl Debug for CreateUserRequest[src]

impl Default for CreateUserRequest[src]

impl PartialEq<CreateUserRequest> for CreateUserRequest[src]

impl Serialize for CreateUserRequest[src]

impl StructuralPartialEq for CreateUserRequest[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.