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 ==.impl StructuralPartialEq for EntityDetails
Auto Trait Implementations§
impl Freeze for EntityDetails
impl RefUnwindSafe for EntityDetails
impl Send for EntityDetails
impl Sync for EntityDetails
impl Unpin for EntityDetails
impl UnwindSafe for EntityDetails
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
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more