Module Values.DataLakeExceptionSource

The details for an Amazon Security Lake exception.

Sourcetype nonrec t = {
  1. exception_ : SafeString.t option;
    (*

    The underlying exception of a Security Lake exception.

    *)
  2. region : Region.t option;
    (*

    The Amazon Web Services Regions where the exception occurred.

    *)
  3. remediation : SafeString.t option;
    (*

    List of all remediation steps for a Security Lake exception.

    *)
  4. timestamp : SyntheticTimestamp_date_time.t option;
    (*

    This error can occur if you configure the wrong timestamp format, or if the subset of entries used for validation had errors or missing values.

    *)
}
Sourceval make : ?exception_:??? -> ?region:??? -> ?remediation:??? -> ?timestamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of SafeString.t | `Timestamp of SyntheticTimestamp_date_time.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