Module Values.RouteSource

Describes a route in a route table.

Sourcetype nonrec t = {
  1. destinationType : DestinationType.t option;
    (*

    The type of destination for the route.

    *)
  2. targetType : TargetType.t option;
    (*

    The type of target for the route.

    *)
  3. destination : LengthBoundedString.t option;
    (*

    The destination of the route.

    *)
  4. target : LengthBoundedString.t option;
    (*

    The route's target.

    *)
}
Sourceval make : ?destinationType:??? -> ?targetType:??? -> ?destination:??? -> ?target:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of LengthBoundedString.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