Struct aws_sdk_iam::model::SshPublicKeyMetadata
source · [−]#[non_exhaustive]pub struct SshPublicKeyMetadata {
pub user_name: Option<String>,
pub ssh_public_key_id: Option<String>,
pub status: Option<StatusType>,
pub upload_date: Option<DateTime>,
}
Expand description
Contains information about an SSH public key, without the key's body or fingerprint.
This data type is used as a response element in the ListSSHPublicKeys
operation.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.user_name: Option<String>
The name of the IAM user associated with the SSH public key.
ssh_public_key_id: Option<String>
The unique identifier for the SSH public key.
status: 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.
upload_date: Option<DateTime>
The date and time, in ISO 8601 date-time format, when the SSH public key was uploaded.
Implementations
sourceimpl SshPublicKeyMetadata
impl SshPublicKeyMetadata
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 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 SshPublicKeyMetadata
impl SshPublicKeyMetadata
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SshPublicKeyMetadata
Trait Implementations
sourceimpl Clone for SshPublicKeyMetadata
impl Clone for SshPublicKeyMetadata
sourcefn clone(&self) -> SshPublicKeyMetadata
fn clone(&self) -> SshPublicKeyMetadata
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 more
sourceimpl Debug for SshPublicKeyMetadata
impl Debug for SshPublicKeyMetadata
sourceimpl PartialEq<SshPublicKeyMetadata> for SshPublicKeyMetadata
impl PartialEq<SshPublicKeyMetadata> for SshPublicKeyMetadata
sourcefn eq(&self, other: &SshPublicKeyMetadata) -> bool
fn eq(&self, other: &SshPublicKeyMetadata) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &SshPublicKeyMetadata) -> bool
fn ne(&self, other: &SshPublicKeyMetadata) -> bool
This method tests for !=
.
impl StructuralPartialEq for SshPublicKeyMetadata
Auto Trait Implementations
impl RefUnwindSafe for SshPublicKeyMetadata
impl Send for SshPublicKeyMetadata
impl Sync for SshPublicKeyMetadata
impl Unpin for SshPublicKeyMetadata
impl UnwindSafe for SshPublicKeyMetadata
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more