Module Values.EventSource

Describes an event.

Sourcetype nonrec t = {
  1. sourceIdentifier : String_.t option;
    (*

    The identifier for the source of the event.

    *)
  2. sourceType : SourceType.t option;
    (*

    The source type for this event.

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

    The text of this event.

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

    A list of the event categories. Values: Configuration, Management, Monitoring, Security, Pending

    *)
  5. severity : String_.t option;
    (*

    The severity of the event. Values: ERROR, INFO

    *)
  6. date : TStamp.t option;
    (*

    The date and time of the event.

    *)
  7. eventId : String_.t option;
    (*

    The identifier of the event.

    *)
}
Sourceval make : ?sourceIdentifier:??? -> ?sourceType:??? -> ?message:??? -> ?eventCategories:??? -> ?severity:??? -> ?date:??? -> ?eventId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list | `String of String_.t | `Timestamp of TStamp.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