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 of the device that the entity used to perform the action on the affected resource. This object also provides information such as the owner and geographic location for the IP address.
user_identity: Option<UserIdentity>
The type and other characteristics of the entity that performed the action on the affected resource.
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 of the device that the entity used to perform the action on the affected resource. This object also provides information such as the owner and geographic location for 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.
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
source§fn eq(&self, other: &FindingActor) -> bool
fn eq(&self, other: &FindingActor) -> bool
self
and other
values to be equal, and is used
by ==
.