Module Values.UrlRewriteConfigSource

Information about a URL rewrite transform. This transform matches a pattern in the request URL and replaces it with the specified string.

Sourcetype nonrec t = {
  1. rewrites : RewriteConfigList.t option;
    (*

    The URL rewrite transform to apply to the request. The transform consists of a regular expression to match and a replacement string.

    *)
}
Sourceval make : ?rewrites:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of StringValue.t ]) list ] list ]) 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