Module Values.RDFGraphSummaryValueMapSource

Payload for an RDF graph summary response.

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

    The version of this graph summary response.

    *)
  2. lastStatisticsComputationTime : SyntheticTimestamp_date_time.t option;
    (*

    The timestamp, in ISO 8601 format, of the time at which Neptune last computed statistics.

    *)
  3. graphSummary : RDFGraphSummary.t option;
    (*

    The graph summary of an RDF graph. See Graph summary response for an RDF graph.

    *)
}
Sourceval make : ?version:??? -> ?lastStatisticsComputationTime:??? -> ?graphSummary:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `List of [> `Map of ([> `String of String_.t ] * [> `Long of Long.t ]) list | `String of String_.t | `Structure of (string * [> `List of [> `String of String_.t ] list | `Long of Long.t ]) list ] list | `Long of Long.t ]) list | `Timestamp of SyntheticTimestamp_date_time.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