Struct rusoto_codestar::CreateUserProfileRequest[][src]

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

Fields

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

The email address that will be 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 Amazon Resource Name (ARN) of the user in IAM.

Trait Implementations

impl Default for CreateUserProfileRequest
[src]

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

impl Debug for CreateUserProfileRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateUserProfileRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CreateUserProfileRequest
[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