pub struct UpdateUserProfileRequest {
pub display_name: Option<String>,
pub email_address: Option<String>,
pub ssh_public_key: Option<String>,
pub user_arn: String,
}
Fields§
§display_name: Option<String>
The name that is displayed as the friendly name for the user in AWS CodeStar.
email_address: Option<String>
The email address that is displayed as part of the user's profile in AWS CodeStar.
ssh_public_key: Option<String>
The SSH public key associated with the user in AWS CodeStar. If a project owner allows the user remote access to project resources, this public key will be used along with the user's private key for SSH access.
user_arn: String
The name that will be displayed as the friendly name for the user in AWS CodeStar.
Trait Implementations§
Source§impl Clone for UpdateUserProfileRequest
impl Clone for UpdateUserProfileRequest
Source§fn clone(&self) -> UpdateUserProfileRequest
fn clone(&self) -> UpdateUserProfileRequest
Returns a copy 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 UpdateUserProfileRequest
impl Debug for UpdateUserProfileRequest
Source§impl Default for UpdateUserProfileRequest
impl Default for UpdateUserProfileRequest
Source§fn default() -> UpdateUserProfileRequest
fn default() -> UpdateUserProfileRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateUserProfileRequest
impl PartialEq for UpdateUserProfileRequest
Source§impl Serialize for UpdateUserProfileRequest
impl Serialize for UpdateUserProfileRequest
impl StructuralPartialEq for UpdateUserProfileRequest
Auto Trait Implementations§
impl Freeze for UpdateUserProfileRequest
impl RefUnwindSafe for UpdateUserProfileRequest
impl Send for UpdateUserProfileRequest
impl Sync for UpdateUserProfileRequest
impl Unpin for UpdateUserProfileRequest
impl UnwindSafe for UpdateUserProfileRequest
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