Struct aws_sdk_iam::model::SshPublicKey
source · [−]#[non_exhaustive]pub struct SshPublicKey { /* private fields */ }Expand description
Contains information about an SSH public key.
This data type is used as a response element in the GetSSHPublicKey and UploadSSHPublicKey operations.
Implementations
sourceimpl SshPublicKey
impl SshPublicKey
sourcepub fn user_name(&self) -> Option<&str>
pub fn user_name(&self) -> Option<&str>
The name of the IAM user associated with the SSH public key.
sourcepub fn ssh_public_key_id(&self) -> Option<&str>
pub fn ssh_public_key_id(&self) -> Option<&str>
The unique identifier for the SSH public key.
sourcepub fn fingerprint(&self) -> Option<&str>
pub fn fingerprint(&self) -> Option<&str>
The MD5 message digest of the SSH public key.
sourcepub fn ssh_public_key_body(&self) -> Option<&str>
pub fn ssh_public_key_body(&self) -> Option<&str>
The SSH public key.
sourcepub fn status(&self) -> Option<&StatusType>
pub fn status(&self) -> Option<&StatusType>
The status of the SSH public key. Active means that the key can be used for authentication with an CodeCommit repository. Inactive means that the key cannot be used.
sourcepub fn upload_date(&self) -> Option<&DateTime>
pub fn upload_date(&self) -> Option<&DateTime>
The date and time, in ISO 8601 date-time format, when the SSH public key was uploaded.
sourceimpl SshPublicKey
impl SshPublicKey
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SshPublicKey.
Trait Implementations
sourceimpl Clone for SshPublicKey
impl Clone for SshPublicKey
sourcefn clone(&self) -> SshPublicKey
fn clone(&self) -> SshPublicKey
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for SshPublicKey
impl Debug for SshPublicKey
sourceimpl PartialEq<SshPublicKey> for SshPublicKey
impl PartialEq<SshPublicKey> for SshPublicKey
sourcefn eq(&self, other: &SshPublicKey) -> bool
fn eq(&self, other: &SshPublicKey) -> bool
impl StructuralPartialEq for SshPublicKey
Auto Trait Implementations
impl RefUnwindSafe for SshPublicKey
impl Send for SshPublicKey
impl Sync for SshPublicKey
impl Unpin for SshPublicKey
impl UnwindSafe for SshPublicKey
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more