Module Values.LambdaFunctionFailedEventAttributesSource

Provides the details of the LambdaFunctionFailed event. It isn't set for other event types.

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 LambdaFunctionStarted event 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. reason : FailureReason.t option;
    (*

    The reason provided for the failure.

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

    The details of the failure.

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