Module Values.LambdaFunctionCompletedEventAttributesSource

Provides the details of the LambdaFunctionCompleted 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 Lambda 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. result : Data.t option;
    (*

    The results of the Lambda task.

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