[][src]Struct rusoto_transfer::ImportSshPublicKeyResponse

pub struct ImportSshPublicKeyResponse {
    pub server_id: String,
    pub ssh_public_key_id: String,
    pub user_name: String,
}

Identifies the user, the server they belong to, and the identifier of the SSH public key associated with that user. A user can have more than one key on each server that they are associated with.

Fields

server_id: String

A system-assigned unique identifier for a server.

ssh_public_key_id: String

The name given to a public key by the system that was imported.

user_name: String

A user name assigned to the ServerID value that you specified.

Trait Implementations

impl Clone for ImportSshPublicKeyResponse[src]

impl Debug for ImportSshPublicKeyResponse[src]

impl Default for ImportSshPublicKeyResponse[src]

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

impl PartialEq<ImportSshPublicKeyResponse> for ImportSshPublicKeyResponse[src]

impl StructuralPartialEq for ImportSshPublicKeyResponse[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.