Module Values.EndpointSource

An endpoint information details.

Sourcetype nonrec t = {
  1. address : String_.t option;
    (*

    IP address of the endpoint.

    *)
  2. cachePeriodInMinutes : Long.t option;
    (*

    Endpoint cache time to live (TTL) value.

    *)
}
Sourceval make : ?address:??? -> ?cachePeriodInMinutes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Long.t | `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