pub struct SeverityUpdate {
pub label: Option<String>,
pub normalized: Option<i64>,
pub product: Option<f64>,
}Expand description
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§
Source§impl Clone for SeverityUpdate
impl Clone for SeverityUpdate
Source§fn clone(&self) -> SeverityUpdate
fn clone(&self) -> SeverityUpdate
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for SeverityUpdate
impl Debug for SeverityUpdate
Source§impl Default for SeverityUpdate
impl Default for SeverityUpdate
Source§fn default() -> SeverityUpdate
fn default() -> SeverityUpdate
Source§impl PartialEq for SeverityUpdate
impl PartialEq for SeverityUpdate
Source§fn eq(&self, other: &SeverityUpdate) -> bool
fn eq(&self, other: &SeverityUpdate) -> bool
self and other values to be equal, and is used by ==.