Module Values.TimerStartedEventAttributesSource

Provides the details of the TimerStarted event.

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

    The unique ID of the timer that was started.

    *)
  2. control : Data.t option;
    (*

    Data attached to the event that can be used by the decider in subsequent workflow tasks.

    *)
  3. startToFireTimeout : DurationInSeconds.t option;
    (*

    The duration of time after which the timer fires. The duration is specified in seconds, an integer greater than or equal to 0.

    *)
  4. decisionTaskCompletedEventId : EventId.t option;
    (*

    The ID of the DecisionTaskCompleted event corresponding to the decision task that resulted in the StartTimer decision for this activity task. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.

    *)
}
Sourceval make : ?timerId:??? -> ?control:??? -> ?startToFireTimeout:??? -> ?decisionTaskCompletedEventId:??? -> 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