Struct aws_sdk_iam::model::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 reporting period.
Implementations
sourceimpl 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 reporting period.
sourceimpl EntityDetails
impl EntityDetails
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture EntityDetails
Trait Implementations
sourceimpl Clone for EntityDetails
impl Clone for EntityDetails
sourcefn clone(&self) -> EntityDetails
fn clone(&self) -> EntityDetails
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 EntityDetails
impl Debug for EntityDetails
sourceimpl PartialEq<EntityDetails> for EntityDetails
impl PartialEq<EntityDetails> for EntityDetails
sourcefn eq(&self, other: &EntityDetails) -> bool
fn eq(&self, other: &EntityDetails) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &EntityDetails) -> bool
fn ne(&self, other: &EntityDetails) -> bool
This method tests for !=
.
impl StructuralPartialEq for EntityDetails
Auto Trait Implementations
impl RefUnwindSafe for EntityDetails
impl Send for EntityDetails
impl Sync for EntityDetails
impl Unpin for EntityDetails
impl UnwindSafe for EntityDetails
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