Struct rusoto_opsworks::SelfUserProfile[][src]

pub struct SelfUserProfile {
    pub iam_user_arn: Option<String>,
    pub name: Option<String>,
    pub ssh_public_key: Option<String>,
    pub ssh_username: Option<String>,
}

Describes a user's SSH information.

Fields

The user's IAM ARN.

The user's name.

The user's SSH public key.

The user's SSH user name.

Trait Implementations

impl Default for SelfUserProfile
[src]

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

impl Debug for SelfUserProfile
[src]

Formats the value using the given formatter. Read more

impl Clone for SelfUserProfile
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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