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§
Source§impl Clone for CreateUserRequest
impl Clone for CreateUserRequest
Source§fn clone(&self) -> CreateUserRequest
fn clone(&self) -> CreateUserRequest
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 CreateUserRequest
impl Debug for CreateUserRequest
Source§impl Default for CreateUserRequest
impl Default for CreateUserRequest
Source§fn default() -> CreateUserRequest
fn default() -> CreateUserRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateUserRequest
impl PartialEq for CreateUserRequest
Source§impl Serialize for CreateUserRequest
impl Serialize for CreateUserRequest
impl StructuralPartialEq for CreateUserRequest
Auto Trait Implementations§
impl Freeze for CreateUserRequest
impl RefUnwindSafe for CreateUserRequest
impl Send for CreateUserRequest
impl Sync for CreateUserRequest
impl Unpin for CreateUserRequest
impl UnwindSafe for CreateUserRequest
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