Struct aws_sdk_accessanalyzer::types::FindingSummary
source · #[non_exhaustive]pub struct FindingSummary {Show 14 fields
pub id: String,
pub principal: Option<HashMap<String, String>>,
pub action: Option<Vec<String>>,
pub resource: Option<String>,
pub is_public: Option<bool>,
pub resource_type: ResourceType,
pub condition: HashMap<String, String>,
pub created_at: DateTime,
pub analyzed_at: DateTime,
pub updated_at: DateTime,
pub status: FindingStatus,
pub resource_owner_account: String,
pub error: Option<String>,
pub sources: Option<Vec<FindingSource>>,
}
Expand description
Contains information about a finding.
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.id: String
The ID of the finding.
principal: Option<HashMap<String, String>>
The external principal that has access to a resource within the zone of trust.
action: Option<Vec<String>>
The action in the analyzed policy statement that an external principal has permission to use.
resource: Option<String>
The resource that the external principal has access to.
is_public: Option<bool>
Indicates whether the finding reports a resource that has a policy that allows public access.
resource_type: ResourceType
The type of the resource that the external principal has access to.
condition: HashMap<String, String>
The condition in the analyzed policy statement that resulted in a finding.
created_at: DateTime
The time at which the finding was created.
analyzed_at: DateTime
The time at which the resource-based policy that generated the finding was analyzed.
updated_at: DateTime
The time at which the finding was most recently updated.
status: FindingStatus
The status of the finding.
resource_owner_account: String
The Amazon Web Services account ID that owns the resource.
error: Option<String>
The error that resulted in an Error finding.
sources: Option<Vec<FindingSource>>
The sources of the finding. This indicates how the access that generated the finding is granted. It is populated for Amazon S3 bucket findings.
Implementations§
source§impl FindingSummary
impl FindingSummary
sourcepub fn principal(&self) -> Option<&HashMap<String, String>>
pub fn principal(&self) -> Option<&HashMap<String, String>>
The external principal that has access to a resource within the zone of trust.
sourcepub fn action(&self) -> &[String]
pub fn action(&self) -> &[String]
The action in the analyzed policy statement that an external principal has permission to use.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .action.is_none()
.
sourcepub fn is_public(&self) -> Option<bool>
pub fn is_public(&self) -> Option<bool>
Indicates whether the finding reports a resource that has a policy that allows public access.
sourcepub fn resource_type(&self) -> &ResourceType
pub fn resource_type(&self) -> &ResourceType
The type of the resource that the external principal has access to.
sourcepub fn condition(&self) -> &HashMap<String, String>
pub fn condition(&self) -> &HashMap<String, String>
The condition in the analyzed policy statement that resulted in a finding.
sourcepub fn created_at(&self) -> &DateTime
pub fn created_at(&self) -> &DateTime
The time at which the finding was created.
sourcepub fn analyzed_at(&self) -> &DateTime
pub fn analyzed_at(&self) -> &DateTime
The time at which the resource-based policy that generated the finding was analyzed.
sourcepub fn updated_at(&self) -> &DateTime
pub fn updated_at(&self) -> &DateTime
The time at which the finding was most recently updated.
sourcepub fn status(&self) -> &FindingStatus
pub fn status(&self) -> &FindingStatus
The status of the finding.
sourcepub fn resource_owner_account(&self) -> &str
pub fn resource_owner_account(&self) -> &str
The Amazon Web Services account ID that owns the resource.
sourcepub fn sources(&self) -> &[FindingSource]
pub fn sources(&self) -> &[FindingSource]
The sources of the finding. This indicates how the access that generated the finding is granted. It is populated for Amazon S3 bucket findings.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .sources.is_none()
.
source§impl FindingSummary
impl FindingSummary
sourcepub fn builder() -> FindingSummaryBuilder
pub fn builder() -> FindingSummaryBuilder
Creates a new builder-style object to manufacture FindingSummary
.
Trait Implementations§
source§impl Clone for FindingSummary
impl Clone for FindingSummary
source§fn clone(&self) -> FindingSummary
fn clone(&self) -> FindingSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for FindingSummary
impl Debug for FindingSummary
source§impl PartialEq for FindingSummary
impl PartialEq for FindingSummary
impl StructuralPartialEq for FindingSummary
Auto Trait Implementations§
impl Freeze for FindingSummary
impl RefUnwindSafe for FindingSummary
impl Send for FindingSummary
impl Sync for FindingSummary
impl Unpin for FindingSummary
impl UnwindSafe for FindingSummary
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