[][src]Struct rusoto_securityhub::StandardsControl

pub struct StandardsControl {
    pub control_id: Option<String>,
    pub control_status: Option<String>,
    pub control_status_updated_at: Option<f64>,
    pub description: Option<String>,
    pub disabled_reason: Option<String>,
    pub related_requirements: Option<Vec<String>>,
    pub remediation_url: Option<String>,
    pub severity_rating: Option<String>,
    pub standards_control_arn: Option<String>,
    pub title: Option<String>,
}

Details for an individual security standard control.

Fields

control_id: Option<String>

The identifier of the security standard control.

control_status: Option<String>

The current status of the security standard control. Indicates whether the control is enabled or disabled. Security Hub does not check against disabled controls.

control_status_updated_at: Option<f64>

The date and time that the status of the security standard control was most recently updated.

description: Option<String>

The longer description of the security standard control. Provides information about what the control is checking for.

disabled_reason: Option<String>

The reason provided for the most recent change in status for the control.

related_requirements: Option<Vec<String>>

The list of requirements that are related to this control.

remediation_url: Option<String>

A link to remediation information for the control in the Security Hub user documentation.

severity_rating: Option<String>

The severity of findings generated from this security standard control.

The finding severity is based on an assessment of how easy it would be to compromise AWS resources if the issue is detected.

standards_control_arn: Option<String>

The ARN of the security standard control.

title: Option<String>

The title of the security standard control.

Trait Implementations

impl Clone for StandardsControl[src]

impl Debug for StandardsControl[src]

impl Default for StandardsControl[src]

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

impl PartialEq<StandardsControl> for StandardsControl[src]

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