[][src]Struct rusoto_transfer::SshPublicKey

pub struct SshPublicKey {
    pub date_imported: f64,
    pub ssh_public_key_body: String,
    pub ssh_public_key_id: String,
}

Provides information about the public Secure Shell (SSH) key that is associated with a user account for the specific file transfer protocol-enabled server (as identified by ServerId). The information returned includes the date the key was imported, the public key contents, and the public key ID. A user can store more than one SSH public key associated with their user name on a specific server.

Fields

date_imported: f64

Specifies the date that the public key was added to the user account.

ssh_public_key_body: String

Specifies the content of the SSH public key as specified by the PublicKeyId.

ssh_public_key_id: String

Specifies the SshPublicKeyId parameter contains the identifier of the public key.

Trait Implementations

impl Clone for SshPublicKey[src]

impl Debug for SshPublicKey[src]

impl Default for SshPublicKey[src]

impl<'de> Deserialize<'de> for SshPublicKey[src]

impl PartialEq<SshPublicKey> for SshPublicKey[src]

impl StructuralPartialEq for SshPublicKey[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.