Module Values.PathMappingRuleSource

The details of a source and destination path.

Sourcetype nonrec t = {
  1. sourcePathFormat : PathFormat.t option;
    (*

    The source path format.

    *)
  2. sourcePath : String_.t option;
    (*

    The source path.

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

    The destination path.

    *)
}
Sourceval make : ?sourcePathFormat:??? -> ?sourcePath:??? -> ?destinationPath:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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