pub struct KeyPair {
pub key_fingerprint: Option<String>,
pub key_material: Option<String>,
pub key_name: Option<String>,
pub key_pair_id: Option<String>,
pub tags: Option<Vec<Tag>>,
}Expand description
Describes a key pair.
Fields§
§key_fingerprint: Option<String>The SHA-1 digest of the DER encoded private key.
key_material: Option<String>An unencrypted PEM encoded RSA private key.
key_name: Option<String>The name of the key pair.
key_pair_id: Option<String>The ID of the key pair.
Any tags applied to the key pair.
Trait Implementations§
impl StructuralPartialEq for KeyPair
Auto Trait Implementations§
impl Freeze for KeyPair
impl RefUnwindSafe for KeyPair
impl Send for KeyPair
impl Sync for KeyPair
impl Unpin for KeyPair
impl UnwindSafe for KeyPair
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