Module Values.AddKeyEntrySource

This object defines one key that will be added with the addKeys processor.

Sourcetype nonrec t = {
  1. key : Key.t;
    (*

    The key of the new entry to be added to the log event

    *)
  2. value : AddKeyValue.t;
    (*

    The value of the new entry to be added to the log event

    *)
  3. overwriteIfExists : OverwriteIfExists.t option;
    (*

    Specifies whether to overwrite the value if the key already exists in the log event. If you omit this, the default is false.

    *)
}
Sourceval context_ : string
Sourceval make : ?overwriteIfExists:??? -> key:Key.t -> value:AddKeyValue.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of OverwriteIfExists.t | `String of Key.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