Cancel Open Cypher Query
neptunedata_cancel_open_cypher_query | R Documentation |
Cancels a specified openCypher query¶
Description¶
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.
Usage¶
neptunedata_cancel_open_cypher_query(queryId, silent)
Arguments¶
queryId |
[required] The unique ID of the openCypher query to cancel. |
silent |
If set to |
Value¶
A list with the following syntax:
list(
status = "string",
payload = TRUE|FALSE
)
Request syntax¶
svc$cancel_open_cypher_query(
queryId = "string",
silent = TRUE|FALSE
)