Module Values.ResultFieldSource

Contains one field from one log event returned by a CloudWatch Logs Insights query, along with the value of that field. For more information about the fields that are generated by CloudWatch logs, see Supported Logs and Discovered Fields.

Sourcetype nonrec t = {
  1. field : Field.t option;
    (*

    The log event field.

    *)
  2. value : Value.t option;
    (*

    The value of this field.

    *)
}
Sourceval make : ?field:??? -> ?value:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Field.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