Module Values.FindingHistoryUpdateSource

An array of objects that provides details about a change to a finding, including the Amazon Web Services Security Finding Format (ASFF) field that changed, the value of the field before the change, and the value of the field after the change.

Sourcetype nonrec t = {
  1. updatedField : NonEmptyString.t option;
    (*

    The ASFF field that changed during the finding change event.

    *)
  2. oldValue : NonEmptyString.t option;
    (*

    The value of the ASFF field before the finding change event.

    *)
  3. newValue : NonEmptyString.t option;
    (*

    The value of the ASFF field after the finding change event. To preserve storage and readability, Security Hub CSPM omits this value if FindingHistoryRecord exceeds database limits.

    *)
}
Sourceval make : ?updatedField:??? -> ?oldValue:??? -> ?newValue:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.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