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
impl StructuralPartialEq for AuditFinding
Auto Trait Implementations§
impl Freeze for AuditFinding
impl RefUnwindSafe for AuditFinding
impl Send for AuditFinding
impl Sync for AuditFinding
impl Unpin for AuditFinding
impl UnwindSafe for AuditFinding
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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