Struct rusoto_codestar::CreateUserProfileResult [] [src]

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

The date the user profile was created, in timestamp format.

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 date the user profile was last modified, in timestamp format.

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.

The Amazon Resource Name (ARN) of the user in IAM.

Trait Implementations

impl Default for CreateUserProfileResult
[src]

[src]

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

impl Debug for CreateUserProfileResult
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for CreateUserProfileResult
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations