[][src]Struct rusoto_securityhub::Compliance

pub struct Compliance {
    pub related_requirements: Option<Vec<String>>,
    pub status: Option<String>,
    pub status_reasons: Option<Vec<StatusReason>>,
}

Contains finding details that are specific to control-based findings. Only returned for findings generated from controls.

Fields

related_requirements: Option<Vec<String>>

For a control, the industry or regulatory framework requirements that are related to the control. The check for that control is aligned with these requirements.

status: Option<String>

The result of a standards check.

The valid values for Status are as follows.

    • PASSED - Standards check passed for all evaluated resources.

    • WARNING - Some information is missing or this check is not supported for your configuration.

    • FAILED - Standards check failed for at least one evaluated resource.

    • NOTAVAILABLE - Check could not be performed due to a service outage, API error, or because the result of the AWS Config evaluation was NOTAPPLICABLE. If the AWS Config evaluation result was NOT_APPLICABLE, then after 3 days, Security Hub automatically archives the finding.

status_reasons: Option<Vec<StatusReason>>

For findings generated from controls, a list of reasons behind the value of Status. For the list of status reason codes and their meanings, see Standards-related information in the ASFF in the AWS Security Hub User Guide.

Trait Implementations

impl Clone for Compliance[src]

impl Debug for Compliance[src]

impl Default for Compliance[src]

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

impl PartialEq<Compliance> for Compliance[src]

impl Serialize for Compliance[src]

impl StructuralPartialEq for Compliance[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.