Module Values.GatewayRouteHostnameMatchSource

An object representing the gateway route host name to match.

Sourcetype nonrec t = {
  1. exact : ExactHostName.t option;
    (*

    The exact host name to match on.

    *)
  2. suffix : SuffixHostname.t option;
    (*

    The specified ending characters of the host name to match on.

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