pub struct ImportKeyPairResult {
pub key_fingerprint: Option<String>,
pub key_name: Option<String>,
pub key_pair_id: Option<String>,
pub tags: Option<Vec<Tag>>,
}Fields§
§key_fingerprint: Option<String>The MD5 public key fingerprint as specified in section 4 of RFC 4716.
key_name: Option<String>The key pair name you provided.
key_pair_id: Option<String>The ID of the resulting key pair.
The tags applied to the imported key pair.
Trait Implementations§
Source§impl Clone for ImportKeyPairResult
impl Clone for ImportKeyPairResult
Source§fn clone(&self) -> ImportKeyPairResult
fn clone(&self) -> ImportKeyPairResult
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 ImportKeyPairResult
impl Debug for ImportKeyPairResult
Source§impl Default for ImportKeyPairResult
impl Default for ImportKeyPairResult
Source§fn default() -> ImportKeyPairResult
fn default() -> ImportKeyPairResult
Returns the “default value” for a type. Read more
Source§impl PartialEq for ImportKeyPairResult
impl PartialEq for ImportKeyPairResult
impl StructuralPartialEq for ImportKeyPairResult
Auto Trait Implementations§
impl Freeze for ImportKeyPairResult
impl RefUnwindSafe for ImportKeyPairResult
impl Send for ImportKeyPairResult
impl Sync for ImportKeyPairResult
impl Unpin for ImportKeyPairResult
impl UnwindSafe for ImportKeyPairResult
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