pub struct UpdateUserProfileResult {
pub created_timestamp: Option<f64>,
pub display_name: Option<String>,
pub email_address: Option<String>,
pub last_modified_timestamp: Option<f64>,
pub ssh_public_key: Option<String>,
pub user_arn: String,
}
Fields§
§created_timestamp: Option<f64>
The date the user profile was created, in timestamp format.
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.
last_modified_timestamp: Option<f64>
The date the user profile was last modified, in timestamp format.
ssh_public_key: Option<String>
The SSH public key associated with the user in AWS CodeStar. This is the public portion of the public/private keypair the user can use to access project resources if a project owner allows the user remote access to those resources.
user_arn: String
The Amazon Resource Name (ARN) of the user in IAM.
Trait Implementations§
Source§impl Clone for UpdateUserProfileResult
impl Clone for UpdateUserProfileResult
Source§fn clone(&self) -> UpdateUserProfileResult
fn clone(&self) -> UpdateUserProfileResult
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 UpdateUserProfileResult
impl Debug for UpdateUserProfileResult
Source§impl Default for UpdateUserProfileResult
impl Default for UpdateUserProfileResult
Source§fn default() -> UpdateUserProfileResult
fn default() -> UpdateUserProfileResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateUserProfileResult
impl<'de> Deserialize<'de> for UpdateUserProfileResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for UpdateUserProfileResult
impl PartialEq for UpdateUserProfileResult
impl StructuralPartialEq for UpdateUserProfileResult
Auto Trait Implementations§
impl Freeze for UpdateUserProfileResult
impl RefUnwindSafe for UpdateUserProfileResult
impl Send for UpdateUserProfileResult
impl Sync for UpdateUserProfileResult
impl Unpin for UpdateUserProfileResult
impl UnwindSafe for UpdateUserProfileResult
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