Module Values.SeverityUpdateSource

Updates to the severity information for a finding.

Sourcetype nonrec t = {
  1. normalized : RatioScale.t option;
    (*

    The normalized severity for the finding. This attribute is to be deprecated in favor of Label. If you provide Normalized and don't provide Label, Label is set automatically as follows. 0 - INFORMATIONAL 1–39 - LOW 40–69 - MEDIUM 70–89 - HIGH 90–100 - CRITICAL

    *)
  2. product : Double.t option;
    (*

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

    *)
  3. label : SeverityLabel.t option;
    (*

    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.

    *)
}
Sourceval make : ?normalized:??? -> ?product:??? -> ?label:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.t | `Enum of string | `Integer of RatioScale.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t