Struct aws_sdk_iot::types::AuditFinding
source · #[non_exhaustive]pub struct AuditFinding {
pub finding_id: Option<String>,
pub task_id: Option<String>,
pub check_name: Option<String>,
pub task_start_time: Option<DateTime>,
pub finding_time: Option<DateTime>,
pub severity: Option<AuditFindingSeverity>,
pub non_compliant_resource: Option<NonCompliantResource>,
pub related_resources: Option<Vec<RelatedResource>>,
pub reason_for_non_compliance: Option<String>,
pub reason_for_non_compliance_code: Option<String>,
pub is_suppressed: Option<bool>,
}
Expand description
The findings (results) of the audit.
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.finding_id: Option<String>
A unique identifier for this set of audit findings. This identifier is used to apply mitigation tasks to one or more sets of findings.
task_id: Option<String>
The ID of the audit that generated this result (finding).
check_name: Option<String>
The audit check that generated this result.
task_start_time: Option<DateTime>
The time the audit started.
finding_time: Option<DateTime>
The time the result (finding) was discovered.
severity: Option<AuditFindingSeverity>
The severity of the result (finding).
non_compliant_resource: Option<NonCompliantResource>
The resource that was found to be noncompliant with the audit check.
The list of related resources.
reason_for_non_compliance: Option<String>
The reason the resource was noncompliant.
reason_for_non_compliance_code: Option<String>
A code that indicates the reason that the resource was noncompliant.
is_suppressed: Option<bool>
Indicates whether the audit finding was suppressed or not during reporting.
Implementations§
source§impl AuditFinding
impl AuditFinding
sourcepub fn finding_id(&self) -> Option<&str>
pub fn finding_id(&self) -> Option<&str>
A unique identifier for this set of audit findings. This identifier is used to apply mitigation tasks to one or more sets of findings.
sourcepub fn task_id(&self) -> Option<&str>
pub fn task_id(&self) -> Option<&str>
The ID of the audit that generated this result (finding).
sourcepub fn check_name(&self) -> Option<&str>
pub fn check_name(&self) -> Option<&str>
The audit check that generated this result.
sourcepub fn task_start_time(&self) -> Option<&DateTime>
pub fn task_start_time(&self) -> Option<&DateTime>
The time the audit started.
sourcepub fn finding_time(&self) -> Option<&DateTime>
pub fn finding_time(&self) -> Option<&DateTime>
The time the result (finding) was discovered.
sourcepub fn severity(&self) -> Option<&AuditFindingSeverity>
pub fn severity(&self) -> Option<&AuditFindingSeverity>
The severity of the result (finding).
sourcepub fn non_compliant_resource(&self) -> Option<&NonCompliantResource>
pub fn non_compliant_resource(&self) -> Option<&NonCompliantResource>
The resource that was found to be noncompliant with the audit check.
The list of related resources.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .related_resources.is_none()
.
sourcepub fn reason_for_non_compliance(&self) -> Option<&str>
pub fn reason_for_non_compliance(&self) -> Option<&str>
The reason the resource was noncompliant.
sourcepub fn reason_for_non_compliance_code(&self) -> Option<&str>
pub fn reason_for_non_compliance_code(&self) -> Option<&str>
A code that indicates the reason that the resource was noncompliant.
sourcepub fn is_suppressed(&self) -> Option<bool>
pub fn is_suppressed(&self) -> Option<bool>
Indicates whether the audit finding was suppressed or not during reporting.
source§impl AuditFinding
impl AuditFinding
sourcepub fn builder() -> AuditFindingBuilder
pub fn builder() -> AuditFindingBuilder
Creates a new builder-style object to manufacture AuditFinding
.
Trait Implementations§
source§impl Clone for AuditFinding
impl Clone for AuditFinding
source§fn clone(&self) -> AuditFinding
fn clone(&self) -> AuditFinding
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AuditFinding
impl Debug for AuditFinding
source§impl PartialEq for AuditFinding
impl PartialEq for AuditFinding
source§fn eq(&self, other: &AuditFinding) -> bool
fn eq(&self, other: &AuditFinding) -> bool
self
and other
values to be equal, and is used
by ==
.