Module Values.TimerFiredEventAttributesSource

Provides the details of the TimerFired event.

Sourcetype nonrec t = {
  1. timerId : TimerId.t option;
    (*

    The unique ID of the timer that fired.

    *)
  2. startedEventId : EventId.t option;
    (*

    The ID of the TimerStarted event that was recorded when this timer was started. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.

    *)
}
Sourceval make : ?timerId:??? -> ?startedEventId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of EventId.t | `String of TimerId.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