Module Values.GetSparqlStatisticsOutputSource

Gets RDF statistics (SPARQL).

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

    The HTTP return code of the request. If the request succeeded, the code is 200. See Common error codes for DFE statistics request for a list of common errors. When invoking this operation in a Neptune cluster that has IAM authentication enabled, the IAM user or role making the request must have a policy attached that allows the neptune-db:GetStatisticsStatus IAM action in that cluster.

    *)
  2. payload : Statistics.t option;
    (*

    Statistics for RDF data.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `BadRequestException of BadRequestException.t
  3. | `ClientTimeoutException of ClientTimeoutException.t
  4. | `ConstraintViolationException of ConstraintViolationException.t
  5. | `IllegalArgumentException of IllegalArgumentException.t
  6. | `InvalidArgumentException of InvalidArgumentException.t
  7. | `InvalidParameterException of InvalidParameterException.t
  8. | `MissingParameterException of MissingParameterException.t
  9. | `PreconditionsFailedException of PreconditionsFailedException.t
  10. | `ReadOnlyViolationException of ReadOnlyViolationException.t
  11. | `StatisticsNotAvailableException of StatisticsNotAvailableException.t
  12. | `TooManyRequestsException of TooManyRequestsException.t
  13. | `UnsupportedOperationException of UnsupportedOperationException.t
  14. | `Unknown_operation_error of string * string option
]
Sourceval make : ?status:??? -> ?payload:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `BadRequestException of BadRequestException.t | `ClientTimeoutException of ClientTimeoutException.t | `ConstraintViolationException of ConstraintViolationException.t | `IllegalArgumentException of IllegalArgumentException.t | `InvalidArgumentException of InvalidArgumentException.t | `InvalidParameterException of InvalidParameterException.t | `MissingParameterException of MissingParameterException.t | `PreconditionsFailedException of PreconditionsFailedException.t | `ReadOnlyViolationException of ReadOnlyViolationException.t | `StatisticsNotAvailableException of StatisticsNotAvailableException.t | `TooManyRequestsException of TooManyRequestsException.t | `Unknown_operation_error of string * string option | `UnsupportedOperationException of UnsupportedOperationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `BadRequestException of BadRequestException.t | `ClientTimeoutException of ClientTimeoutException.t | `ConstraintViolationException of ConstraintViolationException.t | `IllegalArgumentException of IllegalArgumentException.t | `InvalidArgumentException of InvalidArgumentException.t | `InvalidParameterException of InvalidParameterException.t | `MissingParameterException of MissingParameterException.t | `PreconditionsFailedException of PreconditionsFailedException.t | `ReadOnlyViolationException of ReadOnlyViolationException.t | `StatisticsNotAvailableException of StatisticsNotAvailableException.t | `TooManyRequestsException of TooManyRequestsException.t | `Unknown_operation_error of string * string option | `UnsupportedOperationException of UnsupportedOperationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `Boolean of Boolean.t | `String of String_.t | `Structure of (string * [> `Integer of Integer.t ]) list | `Timestamp of SyntheticTimestamp_date_time.t ]) 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