Module Values.LambdaFunctionTimedOutEventAttributesSource

Provides details of the LambdaFunctionTimedOut event.

Sourcetype nonrec t = {
  1. scheduledEventId : EventId.t option;
    (*

    The ID of the LambdaFunctionScheduled event that was recorded when this activity task was scheduled. To help diagnose issues, use this information to trace back the chain of events leading up to this event.

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

    The ID of the ActivityTaskStarted event that was recorded when this activity task started. To help diagnose issues, use this information to trace back the chain of events leading up to this event.

    *)
  3. timeoutType : LambdaFunctionTimeoutType.t option;
    (*

    The type of the timeout that caused this event.

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