Module Values.RelationalDatabaseEventSource

Describes an event for a database.

Sourcetype nonrec t = {
  1. resource : ResourceName.t option;
    (*

    The database that the database event relates to.

    *)
  2. createdAt : IsoDate.t option;
    (*

    The timestamp when the database event was created.

    *)
  3. message : String_.t option;
    (*

    The message of the database event.

    *)
  4. eventCategories : StringList.t option;
    (*

    The category that the database event belongs to.

    *)
}
Sourceval make : ?resource:??? -> ?createdAt:??? -> ?message:??? -> ?eventCategories:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] list | `String of ResourceName.t | `Timestamp of IsoDate.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