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.
Tags that you specify for the User Profile are also added to all Apps that the User Profile launches.
user_profile_name: String
A name for the UserProfile. This value is not case sensitive.
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
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more