Struct rusoto_codestar::UpdateUserProfileRequest[][src]

pub struct UpdateUserProfileRequest {
    pub display_name: Option<String>,
    pub email_address: Option<String>,
    pub ssh_public_key: Option<String>,
    pub user_arn: String,
}

Fields

The name that is displayed as the friendly name for the user in AWS CodeStar.

The email address that is displayed as part of the user's profile in AWS CodeStar.

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.

The name that will be displayed as the friendly name for the user in AWS CodeStar.

Trait Implementations

impl Default for UpdateUserProfileRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for UpdateUserProfileRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateUserProfileRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UpdateUserProfileRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations