pub struct CreateUserProfileRequest {
pub display_name: String,
pub email_address: String,
pub ssh_public_key: Option<String>,
pub user_arn: String,
}
Fields§
§display_name: String
The name that will be displayed as the friendly name for the user in AWS CodeStar.
email_address: String
The email address that will be 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 Amazon Resource Name (ARN) of the user in IAM.
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