Module Values.ActivityTaskTimedOutEventAttributesSource

Provides the details of the ActivityTaskTimedOut event.

Sourcetype nonrec t = {
  1. timeoutType : ActivityTaskTimeoutType.t option;
    (*

    The type of the timeout that caused this event.

    *)
  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.

    *)
  3. 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.

    *)
  4. details : LimitedData.t option;
    (*

    Contains the content of the details parameter for the last call made by the activity to RecordActivityTaskHeartbeat.

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