Values.ActivityTaskFailedEventAttributesSourceProvides the details of the ActivityTaskFailed event.
type nonrec t = {reason : FailureReason.t option;The reason provided for the failure.
*)details : Data.t option;The details of the failure.
*)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.
*)startedEventId : EventId.t option;The ID of the ActivityTaskStarted event recorded when this activity task was started. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.
*)}val to_value :
t ->
[> `Structure of
(string * [> `Long of EventId.t | `String of FailureReason.t ]) list ]