Module Values.EventInputSource

Input information for an event.

Sourcetype nonrec t = {
  1. payload : InputPayload.t option;
    (*

    The input payload.

    *)
  2. truncated : Truncated.t option;
    (*

    Indicates if the error payload was truncated due to size limits.

    *)
}
Sourceval make : ?payload:??? -> ?truncated:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Truncated.t | `String of InputPayload.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