Module Values.CancelOpenCypherQueryInputSource

Cancels a specified openCypher query. See Neptune openCypher status endpoint 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:CancelQuery IAM action in that cluster.

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

    The unique ID of the openCypher query to cancel.

    *)
  2. silent : Boolean.t option;
    (*

    If set to TRUE, causes the cancelation of the openCypher query to happen silently.

    *)
}
Sourceval context_ : string
Sourceval make : ?silent:??? -> queryId:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.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