Module Values.ExecuteOpenCypherExplainQueryInputSource

Executes an openCypher explain request. See The openCypher explain feature for more information. 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:ReadDataViaQuery IAM action in that cluster. Note that the neptune-db:QueryLanguage:OpenCypher IAM condition key can be used in the policy document to restrict the use of openCypher queries (see Condition keys available in Neptune IAM data-access policy statements).

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

    The openCypher query string.

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

    The openCypher query parameters.

    *)
  3. explainMode : OpenCypherExplainMode.t;
    (*

    The openCypher explain mode. Can be one of: static, dynamic, or details.

    *)
}
Sourceval context_ : string
Sourceval make : ?parameters:??? -> openCypherQuery:String_.t -> explainMode:OpenCypherExplainMode.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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