Struct aws_sdk_macie2::types::FindingActor
source · #[non_exhaustive]pub struct FindingActor {
pub domain_details: Option<DomainDetails>,
pub ip_address_details: Option<IpAddressDetails>,
pub user_identity: Option<UserIdentity>,
}Expand description
Provides information about an entity that performed an action that produced a policy finding for a resource.
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.domain_details: Option<DomainDetails>The domain name of the device that the entity used to perform the action on the affected resource.
ip_address_details: Option<IpAddressDetails>The IP address and related details about the device that the entity used to perform the action on the affected resource. The details can include information such as the owner and geographic location of the IP address.
user_identity: Option<UserIdentity>The type and other characteristics of the entity that performed the action on the affected resource. This value is null if the action was performed by an anonymous (unauthenticated) entity.
Implementations§
source§impl FindingActor
impl FindingActor
sourcepub fn domain_details(&self) -> Option<&DomainDetails>
pub fn domain_details(&self) -> Option<&DomainDetails>
The domain name of the device that the entity used to perform the action on the affected resource.
sourcepub fn ip_address_details(&self) -> Option<&IpAddressDetails>
pub fn ip_address_details(&self) -> Option<&IpAddressDetails>
The IP address and related details about the device that the entity used to perform the action on the affected resource. The details can include information such as the owner and geographic location of the IP address.
sourcepub fn user_identity(&self) -> Option<&UserIdentity>
pub fn user_identity(&self) -> Option<&UserIdentity>
The type and other characteristics of the entity that performed the action on the affected resource. This value is null if the action was performed by an anonymous (unauthenticated) entity.
source§impl FindingActor
impl FindingActor
sourcepub fn builder() -> FindingActorBuilder
pub fn builder() -> FindingActorBuilder
Creates a new builder-style object to manufacture FindingActor.
Trait Implementations§
source§impl Clone for FindingActor
impl Clone for FindingActor
source§fn clone(&self) -> FindingActor
fn clone(&self) -> FindingActor
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for FindingActor
impl Debug for FindingActor
source§impl PartialEq for FindingActor
impl PartialEq for FindingActor
impl StructuralPartialEq for FindingActor
Auto Trait Implementations§
impl Freeze for FindingActor
impl RefUnwindSafe for FindingActor
impl Send for FindingActor
impl Sync for FindingActor
impl Unpin for FindingActor
impl UnwindSafe for FindingActor
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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