pub struct CreateUserProfileRequest {
pub domain_id: String,
pub single_sign_on_user_identifier: Option<String>,
pub single_sign_on_user_value: Option<String>,
pub tags: Option<Vec<Tag>>,
pub user_profile_name: String,
pub user_settings: Option<UserSettings>,
}
Fields§
§domain_id: String
The ID of the associated Domain.
single_sign_on_user_identifier: Option<String>
A specifier for the type of value specified in SingleSignOnUserValue. Currently, the only supported value is "UserName". If the Domain's AuthMode is SSO, this field is required. If the Domain's AuthMode is not SSO, this field cannot be specified.
single_sign_on_user_value: Option<String>
The username of the associated AWS Single Sign-On User for this UserProfile. If the Domain's AuthMode is SSO, this field is required, and must match a valid username of a user in your directory. If the Domain's AuthMode is not SSO, this field cannot be specified.
Each tag consists of a key and an optional value. Tag keys must be unique per resource.
user_profile_name: String
A name for the UserProfile.
user_settings: Option<UserSettings>
A collection of settings.
Trait Implementations§
Source§impl Clone for CreateUserProfileRequest
impl Clone for CreateUserProfileRequest
Source§fn clone(&self) -> CreateUserProfileRequest
fn clone(&self) -> CreateUserProfileRequest
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 CreateUserProfileRequest
impl Debug for CreateUserProfileRequest
Source§impl Default for CreateUserProfileRequest
impl Default for CreateUserProfileRequest
Source§fn default() -> CreateUserProfileRequest
fn default() -> CreateUserProfileRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateUserProfileRequest
impl PartialEq for CreateUserProfileRequest
Source§impl Serialize for CreateUserProfileRequest
impl Serialize for CreateUserProfileRequest
impl StructuralPartialEq for CreateUserProfileRequest
Auto Trait Implementations§
impl Freeze for CreateUserProfileRequest
impl RefUnwindSafe for CreateUserProfileRequest
impl Send for CreateUserProfileRequest
impl Sync for CreateUserProfileRequest
impl Unpin for CreateUserProfileRequest
impl UnwindSafe for CreateUserProfileRequest
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