Module Values.GetGremlinQueryStatusOutputSource

Gets the status of a specified Gremlin query. 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:GetQueryStatus IAM action in that cluster. Note that the neptune-db:QueryLanguage:Gremlin IAM condition key can be used in the policy document to restrict the use of Gremlin queries (see Condition keys available in Neptune IAM data-access policy statements).

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

    The ID of the query for which status is being returned.

    *)
  2. queryString : String_.t option;
    (*

    The Gremlin query string.

    *)
  3. queryEvalStats : QueryEvalStats.t option;
    (*

    The evaluation status of the Gremlin query.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `BadRequestException of BadRequestException.t
  3. | `ClientTimeoutException of ClientTimeoutException.t
  4. | `ConcurrentModificationException of ConcurrentModificationException.t
  5. | `ConstraintViolationException of ConstraintViolationException.t
  6. | `FailureByQueryException of FailureByQueryException.t
  7. | `IllegalArgumentException of IllegalArgumentException.t
  8. | `InvalidArgumentException of InvalidArgumentException.t
  9. | `InvalidParameterException of InvalidParameterException.t
  10. | `MissingParameterException of MissingParameterException.t
  11. | `ParsingException of ParsingException.t
  12. | `PreconditionsFailedException of PreconditionsFailedException.t
  13. | `ReadOnlyViolationException of ReadOnlyViolationException.t
  14. | `TimeLimitExceededException of TimeLimitExceededException.t
  15. | `TooManyRequestsException of TooManyRequestsException.t
  16. | `UnsupportedOperationException of UnsupportedOperationException.t
  17. | `Unknown_operation_error of string * string option
]
Sourceval make : ?queryId:??? -> ?queryString:??? -> ?queryEvalStats:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `BadRequestException of BadRequestException.t | `ClientTimeoutException of ClientTimeoutException.t | `ConcurrentModificationException of ConcurrentModificationException.t | `ConstraintViolationException of ConstraintViolationException.t | `FailureByQueryException of FailureByQueryException.t | `IllegalArgumentException of IllegalArgumentException.t | `InvalidArgumentException of InvalidArgumentException.t | `InvalidParameterException of InvalidParameterException.t | `MissingParameterException of MissingParameterException.t | `ParsingException of ParsingException.t | `PreconditionsFailedException of PreconditionsFailedException.t | `ReadOnlyViolationException of ReadOnlyViolationException.t | `TimeLimitExceededException of TimeLimitExceededException.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 | `ConcurrentModificationException of ConcurrentModificationException.t | `ConstraintViolationException of ConstraintViolationException.t | `FailureByQueryException of FailureByQueryException.t | `IllegalArgumentException of IllegalArgumentException.t | `InvalidArgumentException of InvalidArgumentException.t | `InvalidParameterException of InvalidParameterException.t | `MissingParameterException of MissingParameterException.t | `ParsingException of ParsingException.t | `PreconditionsFailedException of PreconditionsFailedException.t | `ReadOnlyViolationException of ReadOnlyViolationException.t | `TimeLimitExceededException of TimeLimitExceededException.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 | `Integer of Integer.t | `Structure of 'a list ]) 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