[][src]Struct rusoto_iot::AuditFinding

pub struct AuditFinding {
    pub check_name: Option<String>,
    pub finding_id: Option<String>,
    pub finding_time: Option<f64>,
    pub non_compliant_resource: Option<NonCompliantResource>,
    pub reason_for_non_compliance: Option<String>,
    pub reason_for_non_compliance_code: Option<String>,
    pub related_resources: Option<Vec<RelatedResource>>,
    pub severity: Option<String>,
    pub task_id: Option<String>,
    pub task_start_time: Option<f64>,
}

The findings (results) of the audit.

Fields

check_name: Option<String>

The audit check that generated this result.

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.

finding_time: Option<f64>

The time the result (finding) was discovered.

non_compliant_resource: Option<NonCompliantResource>

The resource that was found to be noncompliant with the audit check.

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.

related_resources: Option<Vec<RelatedResource>>

The list of related resources.

severity: Option<String>

The severity of the result (finding).

task_id: Option<String>

The ID of the audit that generated this result (finding).

task_start_time: Option<f64>

The time the audit started.

Trait Implementations

impl Clone for AuditFinding[src]

impl Default for AuditFinding[src]

impl PartialEq<AuditFinding> for AuditFinding[src]

impl Debug for AuditFinding[src]

impl<'de> Deserialize<'de> for AuditFinding[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,