[][src]Struct rusoto_config::ConformancePackEvaluationResult

pub struct ConformancePackEvaluationResult {
    pub annotation: Option<String>,
    pub compliance_type: String,
    pub config_rule_invoked_time: f64,
    pub evaluation_result_identifier: EvaluationResultIdentifier,
    pub result_recorded_time: f64,
}

The details of a conformance pack evaluation. Provides AWS Config rule and AWS resource type that was evaluated, the compliance of the conformance pack, related time stamps, and supplementary information.

Fields

annotation: Option<String>

Supplementary information about how the evaluation determined the compliance.

compliance_type: String

The compliance type. The allowed values are COMPLIANT and NON_COMPLIANT.

config_rule_invoked_time: f64

The time when AWS Config rule evaluated AWS resource.

evaluation_result_identifier: EvaluationResultIdentifierresult_recorded_time: f64

The time when AWS Config recorded the evaluation result.

Trait Implementations

impl Clone for ConformancePackEvaluationResult[src]

impl Debug for ConformancePackEvaluationResult[src]

impl Default for ConformancePackEvaluationResult[src]

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

impl PartialEq<ConformancePackEvaluationResult> for ConformancePackEvaluationResult[src]

impl StructuralPartialEq for ConformancePackEvaluationResult[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.