[][src]Struct rusoto_iam::SSHPublicKey

pub struct SSHPublicKey {
    pub fingerprint: String,
    pub ssh_public_key_body: String,
    pub ssh_public_key_id: String,
    pub status: String,
    pub upload_date: Option<String>,
    pub user_name: String,
}

Contains information about an SSH public key.

This data type is used as a response element in the GetSSHPublicKey and UploadSSHPublicKey operations.

Fields

The MD5 message digest of the SSH public key.

The SSH public key.

The unique identifier for the SSH public key.

The status of the SSH public key. Active means that the key can be used for authentication with an AWS CodeCommit repository. Inactive means that the key cannot be used.

The date and time, in ISO 8601 date-time format, when the SSH public key was uploaded.

The name of the IAM user associated with the SSH public key.

Trait Implementations

impl Clone for SSHPublicKey
[src]

Performs copy-assignment from source. Read more

impl Default for SSHPublicKey
[src]

impl PartialEq<SSHPublicKey> for SSHPublicKey
[src]

impl Debug for SSHPublicKey
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T