pub struct DeleteSshPublicKeyRequest {
pub server_id: String,
pub ssh_public_key_id: String,
pub user_name: String,
}Fields§
§server_id: StringA system-assigned unique identifier for a file transfer protocol-enabled server instance that has the user assigned to it.
ssh_public_key_id: StringA unique identifier used to reference your user's specific SSH key.
user_name: StringA unique string that identifies a user whose public key is being deleted.
Trait Implementations§
Source§impl Clone for DeleteSshPublicKeyRequest
impl Clone for DeleteSshPublicKeyRequest
Source§fn clone(&self) -> DeleteSshPublicKeyRequest
fn clone(&self) -> DeleteSshPublicKeyRequest
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 DeleteSshPublicKeyRequest
impl Debug for DeleteSshPublicKeyRequest
Source§impl Default for DeleteSshPublicKeyRequest
impl Default for DeleteSshPublicKeyRequest
Source§fn default() -> DeleteSshPublicKeyRequest
fn default() -> DeleteSshPublicKeyRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for DeleteSshPublicKeyRequest
Auto Trait Implementations§
impl Freeze for DeleteSshPublicKeyRequest
impl RefUnwindSafe for DeleteSshPublicKeyRequest
impl Send for DeleteSshPublicKeyRequest
impl Sync for DeleteSshPublicKeyRequest
impl Unpin for DeleteSshPublicKeyRequest
impl UnwindSafe for DeleteSshPublicKeyRequest
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