Struct aws_sdk_iam::types::EntityDetails
source · #[non_exhaustive]pub struct EntityDetails {
pub entity_info: Option<EntityInfo>,
pub last_authenticated: Option<DateTime>,
}
Expand description
An object that contains details about when the IAM entities (users or roles) were last used in an attempt to access the specified Amazon Web Services service.
This data type is a response element in the GetServiceLastAccessedDetailsWithEntities
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.entity_info: Option<EntityInfo>
The EntityInfo
object that contains details about the entity (user or role).
last_authenticated: Option<DateTime>
The date and time, in ISO 8601 date-time format, when the authenticated entity last attempted to access Amazon Web Services. Amazon Web Services does not report unauthenticated requests.
This field is null if no IAM entities attempted to access the service within the tracking period.
Implementations§
source§impl EntityDetails
impl EntityDetails
sourcepub fn entity_info(&self) -> Option<&EntityInfo>
pub fn entity_info(&self) -> Option<&EntityInfo>
The EntityInfo
object that contains details about the entity (user or role).
sourcepub fn last_authenticated(&self) -> Option<&DateTime>
pub fn last_authenticated(&self) -> Option<&DateTime>
The date and time, in ISO 8601 date-time format, when the authenticated entity last attempted to access Amazon Web Services. Amazon Web Services does not report unauthenticated requests.
This field is null if no IAM entities attempted to access the service within the tracking period.
source§impl EntityDetails
impl EntityDetails
sourcepub fn builder() -> EntityDetailsBuilder
pub fn builder() -> EntityDetailsBuilder
Creates a new builder-style object to manufacture EntityDetails
.
Trait Implementations§
source§impl Clone for EntityDetails
impl Clone for EntityDetails
source§fn clone(&self) -> EntityDetails
fn clone(&self) -> EntityDetails
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for EntityDetails
impl Debug for EntityDetails
source§impl PartialEq for EntityDetails
impl PartialEq for EntityDetails
source§fn eq(&self, other: &EntityDetails) -> bool
fn eq(&self, other: &EntityDetails) -> bool
self
and other
values to be equal, and is used
by ==
.