Module Values.InvocationCompletedDetailsSource

Details about a function invocation that completed.

Sourcetype nonrec t = {
  1. startTimestamp : ExecutionTimestamp.t option;
    (*

    The date and time when the invocation started, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).

    *)
  2. endTimestamp : ExecutionTimestamp.t option;
    (*

    The date and time when the invocation ended, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).

    *)
  3. requestId : String_.t option;
    (*

    The request ID for the invocation.

    *)
  4. error : EventError.t option;
    (*

    Details about the invocation failure.

    *)
}
Sourceval make : ?startTimestamp:??? -> ?endTimestamp:??? -> ?requestId:??? -> ?error:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `Boolean of Truncated.t | `Structure of (string * [> `List of [> `String of StackTraceEntry.t ] list | `String of ErrorMessage.t ]) list ]) list | `Timestamp of ExecutionTimestamp.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