Module Values.RenameKeyEntrySource

This object defines one key that will be renamed with the renameKey processor.

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

    The key to rename

    *)
  2. renameTo : RenameTo.t;
    (*

    The string to use for the new key name

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

    Specifies whether to overwrite the existing value if the destination key already exists. The default is false

    *)
}
Sourceval context_ : string
Sourceval make : ?overwriteIfExists:??? -> key:Key.t -> renameTo:RenameTo.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