pub struct ImportSshPublicKeyResponse {
pub server_id: String,
pub ssh_public_key_id: String,
pub user_name: String,
}Expand description
Identifies the user, the file transfer protocol-enabled 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: StringA system-assigned unique identifier for a file transfer protocol-enabled server.
ssh_public_key_id: StringThe name given to a public key by the system that was imported.
user_name: StringA user name assigned to the ServerID value that you specified.
Trait Implementations§
Source§impl Clone for ImportSshPublicKeyResponse
impl Clone for ImportSshPublicKeyResponse
Source§fn clone(&self) -> ImportSshPublicKeyResponse
fn clone(&self) -> ImportSshPublicKeyResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ImportSshPublicKeyResponse
impl Debug for ImportSshPublicKeyResponse
Source§impl Default for ImportSshPublicKeyResponse
impl Default for ImportSshPublicKeyResponse
Source§fn default() -> ImportSshPublicKeyResponse
fn default() -> ImportSshPublicKeyResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ImportSshPublicKeyResponse
impl<'de> Deserialize<'de> for ImportSshPublicKeyResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for ImportSshPublicKeyResponse
Auto Trait Implementations§
impl Freeze for ImportSshPublicKeyResponse
impl RefUnwindSafe for ImportSshPublicKeyResponse
impl Send for ImportSshPublicKeyResponse
impl Sync for ImportSshPublicKeyResponse
impl Unpin for ImportSshPublicKeyResponse
impl UnwindSafe for ImportSshPublicKeyResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more