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