[][src]Struct rusoto_securityhub::SeverityUpdate

pub struct SeverityUpdate {
    pub label: Option<String>,
    pub normalized: Option<i64>,
    pub product: Option<f64>,
}

Updates to the severity information for a finding.

Fields

label: Option<String>

The severity value of the finding. The allowed values are the following.

  • INFORMATIONAL - No issue was found.

  • LOW - The issue does not require action on its own.

  • MEDIUM - The issue must be addressed but not urgently.

  • HIGH - The issue must be addressed as a priority.

  • CRITICAL - The issue must be remediated immediately to avoid it escalating.

normalized: Option<i64>

The normalized severity for the finding. This attribute is to be deprecated in favor of Label.

If you provide Normalized and do not provide Label, Label is set automatically as follows.

  • 0 - INFORMATIONAL

  • 1–39 - LOW

  • 40–69 - MEDIUM

  • 70–89 - HIGH

  • 90–100 - CRITICAL

product: Option<f64>

The native severity as defined by the AWS service or integrated partner product that generated the finding.

Trait Implementations

impl Clone for SeverityUpdate[src]

impl Debug for SeverityUpdate[src]

impl Default for SeverityUpdate[src]

impl PartialEq<SeverityUpdate> for SeverityUpdate[src]

impl Serialize for SeverityUpdate[src]

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