Module Values.ActivityTaskStartedEventAttributesSource

Provides the details of the ActivityTaskStarted event.

Sourcetype nonrec t = {
  1. identity : Identity.t option;
    (*

    Identity of the worker that was assigned this task. This aids diagnostics when problems arise. The form of this identity is user defined.

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

    The ID of the ActivityTaskScheduled event that was recorded when this activity task was scheduled. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.

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