Module Values.EventSource

Represents a single occurrence of something interesting within the system. Some examples of events are creating a cluster, adding or removing a cache node, or rebooting a node.

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

    The identifier for the source of the event. For example, if the event occurred at the cluster level, the identifier would be the name of the cluster.

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

    Specifies the origin of this event - a cluster, a parameter group, a security group, etc.

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

    The text of the event.

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

    The date and time when the event occurred.

    *)
}
Sourceval make : ?sourceIdentifier:??? -> ?sourceType:??? -> ?message:??? -> ?date:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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