#[non_exhaustive]pub struct UnusedIamUserAccessKeyDetails {
pub access_key_id: String,
pub last_accessed: Option<DateTime>,
}Expand description
Contains information about an unused access finding for an IAM user access key. IAM Access Analyzer charges for unused access analysis based on the number of IAM roles and users analyzed per month. For more details on pricing, see IAM Access Analyzer pricing.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.access_key_id: StringThe ID of the access key for which the unused access finding was generated.
last_accessed: Option<DateTime>The time at which the access key was last accessed.
Implementations§
source§impl UnusedIamUserAccessKeyDetails
impl UnusedIamUserAccessKeyDetails
sourcepub fn access_key_id(&self) -> &str
pub fn access_key_id(&self) -> &str
The ID of the access key for which the unused access finding was generated.
sourcepub fn last_accessed(&self) -> Option<&DateTime>
pub fn last_accessed(&self) -> Option<&DateTime>
The time at which the access key was last accessed.
source§impl UnusedIamUserAccessKeyDetails
impl UnusedIamUserAccessKeyDetails
sourcepub fn builder() -> UnusedIamUserAccessKeyDetailsBuilder
pub fn builder() -> UnusedIamUserAccessKeyDetailsBuilder
Creates a new builder-style object to manufacture UnusedIamUserAccessKeyDetails.
Trait Implementations§
source§impl Clone for UnusedIamUserAccessKeyDetails
impl Clone for UnusedIamUserAccessKeyDetails
source§fn clone(&self) -> UnusedIamUserAccessKeyDetails
fn clone(&self) -> UnusedIamUserAccessKeyDetails
Returns a copy 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 PartialEq for UnusedIamUserAccessKeyDetails
impl PartialEq for UnusedIamUserAccessKeyDetails
source§fn eq(&self, other: &UnusedIamUserAccessKeyDetails) -> bool
fn eq(&self, other: &UnusedIamUserAccessKeyDetails) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UnusedIamUserAccessKeyDetails
Auto Trait Implementations§
impl Freeze for UnusedIamUserAccessKeyDetails
impl RefUnwindSafe for UnusedIamUserAccessKeyDetails
impl Send for UnusedIamUserAccessKeyDetails
impl Sync for UnusedIamUserAccessKeyDetails
impl Unpin for UnusedIamUserAccessKeyDetails
impl UnwindSafe for UnusedIamUserAccessKeyDetails
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.