Class: AWS.Neptunedata
- Inherits:
-
AWS.Service
- Object
- AWS.Service
- AWS.Neptunedata
- Identifier:
- neptunedata
- API Version:
- 2023-08-01
- Defined in:
- (unknown)
Overview
Constructs a service interface object. Each API operation is exposed as a function on service.
Service Description
The Amazon Neptune data API provides SDK support for more than 40 of Neptune's data operations, including data loading, query execution, data inquiry, and machine learning. It supports the Gremlin and openCypher query languages, and is available in all SDK languages. It automatically signs API requests and greatly simplifies integrating Neptune into your applications.
Sending a Request Using Neptunedata
var neptunedata = new AWS.Neptunedata();
neptunedata.cancelGremlinQuery(params, function (err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Locking the API Version
In order to ensure that the Neptunedata object uses this specific API, you can
construct the object by passing the apiVersion
option to the constructor:
var neptunedata = new AWS.Neptunedata({apiVersion: '2023-08-01'});
You can also set the API version globally in AWS.config.apiVersions
using
the neptunedata service identifier:
AWS.config.apiVersions = {
neptunedata: '2023-08-01',
// other service API versions
};
var neptunedata = new AWS.Neptunedata();
Constructor Summary collapse
-
new AWS.Neptunedata(options = {}) ⇒ Object
constructor
Constructs a service object.
Property Summary collapse
-
endpoint ⇒ AWS.Endpoint
readwrite
An Endpoint object representing the endpoint URL for service requests.
Properties inherited from AWS.Service
Method Summary collapse
-
cancelGremlinQuery(params = {}, callback) ⇒ AWS.Request
Cancels a Gremlin query.
-
cancelLoaderJob(params = {}, callback) ⇒ AWS.Request
Cancels a specified load job.
-
cancelMLDataProcessingJob(params = {}, callback) ⇒ AWS.Request
Cancels a Neptune ML data processing job.
-
cancelMLModelTrainingJob(params = {}, callback) ⇒ AWS.Request
Cancels a Neptune ML model training job.
-
cancelMLModelTransformJob(params = {}, callback) ⇒ AWS.Request
Cancels a specified model transform job.
-
cancelOpenCypherQuery(params = {}, callback) ⇒ AWS.Request
Cancels a specified openCypher query.
-
createMLEndpoint(params = {}, callback) ⇒ AWS.Request
Creates a new Neptune ML inference endpoint that lets you query one specific model that the model-training process constructed.
-
deleteMLEndpoint(params = {}, callback) ⇒ AWS.Request
Cancels the creation of a Neptune ML inference endpoint.
-
deletePropertygraphStatistics(params = {}, callback) ⇒ AWS.Request
Deletes statistics for Gremlin and openCypher (property graph) data.
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:DeleteStatistics IAM action in that cluster.
. -
deleteSparqlStatistics(params = {}, callback) ⇒ AWS.Request
Deletes SPARQL statistics
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:DeleteStatistics IAM action in that cluster.
. -
executeFastReset(params = {}, callback) ⇒ AWS.Request
The fast reset REST API lets you reset a Neptune graph quicky and easily, removing all of its data.
Neptune fast reset is a two-step process.
-
executeGremlinExplainQuery(params = {}, callback) ⇒ AWS.Request
Executes a Gremlin Explain query.
Amazon Neptune has added a Gremlin feature named
explain
that provides is a self-service tool for understanding the execution approach being taken by the Neptune engine for the query. -
executeGremlinProfileQuery(params = {}, callback) ⇒ AWS.Request
Executes a Gremlin Profile query, which runs a specified traversal, collects various metrics about the run, and produces a profile report as output.
-
executeGremlinQuery(params = {}, callback) ⇒ AWS.Request
This commands executes a Gremlin query.
-
executeOpenCypherExplainQuery(params = {}, callback) ⇒ AWS.Request
Executes an openCypher
explain
request. -
executeOpenCypherQuery(params = {}, callback) ⇒ AWS.Request
Executes an openCypher query.
-
getEngineStatus(params = {}, callback) ⇒ AWS.Request
Retrieves the status of the graph database on the host.
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:GetEngineStatus IAM action in that cluster.
. -
getGremlinQueryStatus(params = {}, callback) ⇒ AWS.Request
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).
. -
getLoaderJobStatus(params = {}, callback) ⇒ AWS.Request
Gets status information about a specified load job.
-
getMLDataProcessingJob(params = {}, callback) ⇒ AWS.Request
Retrieves information about a specified data processing job.
-
getMLEndpoint(params = {}, callback) ⇒ AWS.Request
Retrieves details about an inference endpoint.
-
getMLModelTrainingJob(params = {}, callback) ⇒ AWS.Request
Retrieves information about a Neptune ML model training job.
-
getMLModelTransformJob(params = {}, callback) ⇒ AWS.Request
Gets information about a specified model transform job.
-
getOpenCypherQueryStatus(params = {}, callback) ⇒ AWS.Request
Retrieves the status of a specified openCypher 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: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).
. -
getPropertygraphStatistics(params = {}, callback) ⇒ AWS.Request
Gets property graph statistics (Gremlin and openCypher).
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.
. -
getPropertygraphStream(params = {}, callback) ⇒ AWS.Request
Gets a stream for a property graph.
With the Neptune Streams feature, you can generate a complete sequence of change-log entries that record every change made to your graph data as it happens.
-
getPropertygraphSummary(params = {}, callback) ⇒ AWS.Request
Gets a graph summary for a property graph.
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:GetGraphSummary IAM action in that cluster.
. -
getRDFGraphSummary(params = {}, callback) ⇒ AWS.Request
Gets a graph summary for an RDF graph.
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:GetGraphSummary IAM action in that cluster.
. -
getSparqlStatistics(params = {}, callback) ⇒ AWS.Request
Gets RDF statistics (SPARQL).
.
-
getSparqlStream(params = {}, callback) ⇒ AWS.Request
Gets a stream for an RDF graph.
With the Neptune Streams feature, you can generate a complete sequence of change-log entries that record every change made to your graph data as it happens.
-
listGremlinQueries(params = {}, callback) ⇒ AWS.Request
Lists active Gremlin queries.
-
listLoaderJobs(params = {}, callback) ⇒ AWS.Request
Retrieves a list of the
loadIds
for all active loader jobs.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:ListLoaderJobs IAM action in that cluster..
. -
listMLDataProcessingJobs(params = {}, callback) ⇒ AWS.Request
Returns a list of Neptune ML data processing jobs.
-
listMLEndpoints(params = {}, callback) ⇒ AWS.Request
Lists existing inference endpoints.
-
listMLModelTrainingJobs(params = {}, callback) ⇒ AWS.Request
Lists Neptune ML model-training jobs.
-
listMLModelTransformJobs(params = {}, callback) ⇒ AWS.Request
Returns a list of model transform job IDs.
-
listOpenCypherQueries(params = {}, callback) ⇒ AWS.Request
Lists active openCypher queries.
-
managePropertygraphStatistics(params = {}, callback) ⇒ AWS.Request
Manages the generation and use of property graph statistics.
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:ManageStatistics IAM action in that cluster.
. -
manageSparqlStatistics(params = {}, callback) ⇒ AWS.Request
Manages the generation and use of RDF graph statistics.
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:ManageStatistics IAM action in that cluster.
. -
startLoaderJob(params = {}, callback) ⇒ AWS.Request
Starts a Neptune bulk loader job to load data from an Amazon S3 bucket into a Neptune DB instance.
-
startMLDataProcessingJob(params = {}, callback) ⇒ AWS.Request
Creates a new Neptune ML data processing job for processing the graph data exported from Neptune for training.
-
startMLModelTrainingJob(params = {}, callback) ⇒ AWS.Request
Creates a new Neptune ML model training job.
-
startMLModelTransformJob(params = {}, callback) ⇒ AWS.Request
Creates a new model transform job.
Methods inherited from AWS.Service
makeRequest, makeUnauthenticatedRequest, waitFor, setupRequestListeners, defineService
Constructor Details
new AWS.Neptunedata(options = {}) ⇒ Object
Constructs a service object. This object has one method for each API operation.
Property Details
Method Details
cancelGremlinQuery(params = {}, callback) ⇒ AWS.Request
Cancels a Gremlin query. See Gremlin query cancellation 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.
cancelLoaderJob(params = {}, callback) ⇒ AWS.Request
Cancels a specified load job. This is an HTTP DELETE
request. See Neptune Loader Get-Status API 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:CancelLoaderJob IAM action in that cluster..
cancelMLDataProcessingJob(params = {}, callback) ⇒ AWS.Request
Cancels a Neptune ML data processing job. See The dataprocessing
command.
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:CancelMLDataProcessingJob IAM action in that cluster.
cancelMLModelTrainingJob(params = {}, callback) ⇒ AWS.Request
Cancels a Neptune ML model training job. See Model training using the modeltraining
command.
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:CancelMLModelTrainingJob IAM action in that cluster.
cancelMLModelTransformJob(params = {}, callback) ⇒ AWS.Request
Cancels a specified model transform job. See Use a trained model to generate new model artifacts.
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:CancelMLModelTransformJob IAM action in that cluster.
cancelOpenCypherQuery(params = {}, callback) ⇒ AWS.Request
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.
createMLEndpoint(params = {}, callback) ⇒ AWS.Request
Creates a new Neptune ML inference endpoint that lets you query one specific model that the model-training process constructed. See Managing inference endpoints using the endpoints command.
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:CreateMLEndpoint IAM action in that cluster.
deleteMLEndpoint(params = {}, callback) ⇒ AWS.Request
Cancels the creation of a Neptune ML inference endpoint. See Managing inference endpoints using the endpoints command.
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:DeleteMLEndpoint IAM action in that cluster.
deletePropertygraphStatistics(params = {}, callback) ⇒ AWS.Request
Deletes statistics for Gremlin and openCypher (property graph) data.
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:DeleteStatistics IAM action in that cluster.
deleteSparqlStatistics(params = {}, callback) ⇒ AWS.Request
Deletes SPARQL statistics
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:DeleteStatistics IAM action in that cluster.
executeFastReset(params = {}, callback) ⇒ AWS.Request
The fast reset REST API lets you reset a Neptune graph quicky and easily, removing all of its data.
Neptune fast reset is a two-step process. First you call ExecuteFastReset
with action
set to initiateDatabaseReset
. This returns a UUID token which you then include when calling ExecuteFastReset
again with action
set to performDatabaseReset
. See Empty an Amazon Neptune DB cluster using the fast reset API.
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:ResetDatabase IAM action in that cluster.
executeGremlinExplainQuery(params = {}, callback) ⇒ AWS.Request
Executes a Gremlin Explain query.
Amazon Neptune has added a Gremlin feature named explain
that provides is a self-service tool for understanding the execution approach being taken by the Neptune engine for the query. You invoke it by adding an explain
parameter to an HTTP call that submits a Gremlin query.
The explain feature provides information about the logical structure of query execution plans. You can use this information to identify potential evaluation and execution bottlenecks and to tune your query, as explained in Tuning Gremlin queries. You can also use query hints to improve query execution plans.
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 one of the following IAM actions in that cluster, depending on the query:
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).
executeGremlinProfileQuery(params = {}, callback) ⇒ AWS.Request
Executes a Gremlin Profile query, which runs a specified traversal, collects various metrics about the run, and produces a profile report as output. See Gremlin profile API in Neptune for details.
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: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).
executeGremlinQuery(params = {}, callback) ⇒ AWS.Request
This commands executes a Gremlin query. Amazon Neptune is compatible with Apache TinkerPop3 and Gremlin, so you can use the Gremlin traversal language to query the graph, as described under The Graph in the Apache TinkerPop3 documentation. More details can also be found in Accessing a Neptune graph with Gremlin.
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 enables one of the following IAM actions in that cluster, depending on the query:
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).
executeOpenCypherExplainQuery(params = {}, callback) ⇒ AWS.Request
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).
executeOpenCypherQuery(params = {}, callback) ⇒ AWS.Request
Executes an openCypher query. See Accessing the Neptune Graph with openCypher for more information.
Neptune supports building graph applications using openCypher, which is currently one of the most popular query languages among developers working with graph databases. Developers, business analysts, and data scientists like openCypher's declarative, SQL-inspired syntax because it provides a familiar structure in which to querying property graphs.
The openCypher language was originally developed by Neo4j, then open-sourced in 2015 and contributed to the openCypher project under an Apache 2 open-source license.
Note that 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 one of the following IAM actions in that cluster, depending on the query:
Note also 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).
getEngineStatus(params = {}, callback) ⇒ AWS.Request
Retrieves the status of the graph database on the host.
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:GetEngineStatus IAM action in that cluster.
getGremlinQueryStatus(params = {}, callback) ⇒ AWS.Request
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).
getLoaderJobStatus(params = {}, callback) ⇒ AWS.Request
Gets status information about a specified load job. Neptune keeps track of the most recent 1,024 bulk load jobs, and stores the last 10,000 error details per job.
See Neptune Loader Get-Status API 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:GetLoaderJobStatus IAM action in that cluster..
getMLDataProcessingJob(params = {}, callback) ⇒ AWS.Request
Retrieves information about a specified data processing job. See The dataprocessing
command.
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:neptune-db:GetMLDataProcessingJobStatus IAM action in that cluster.
getMLEndpoint(params = {}, callback) ⇒ AWS.Request
Retrieves details about an inference endpoint. See Managing inference endpoints using the endpoints command.
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:GetMLEndpointStatus IAM action in that cluster.
getMLModelTrainingJob(params = {}, callback) ⇒ AWS.Request
Retrieves information about a Neptune ML model training job. See Model training using the modeltraining
command.
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:GetMLModelTrainingJobStatus IAM action in that cluster.
getMLModelTransformJob(params = {}, callback) ⇒ AWS.Request
Gets information about a specified model transform job. See Use a trained model to generate new model artifacts.
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:GetMLModelTransformJobStatus IAM action in that cluster.
getOpenCypherQueryStatus(params = {}, callback) ⇒ AWS.Request
Retrieves the status of a specified openCypher 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: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).
getPropertygraphStatistics(params = {}, callback) ⇒ AWS.Request
Gets property graph statistics (Gremlin and openCypher).
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.
getPropertygraphStream(params = {}, callback) ⇒ AWS.Request
Gets a stream for a property graph.
With the Neptune Streams feature, you can generate a complete sequence of change-log entries that record every change made to your graph data as it happens. GetPropertygraphStream
lets you collect these change-log entries for a property graph.
The Neptune streams feature needs to be enabled on your Neptune DBcluster. To enable streams, set the neptune_streams DB cluster parameter to 1
.
See Capturing graph changes in real time using Neptune streams.
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:GetStreamRecords IAM action in that cluster.
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 enables one of the following IAM actions, depending on the query:
Note that you can restrict property-graph queries using the following IAM context keys:
See Condition keys available in Neptune IAM data-access policy statements).
getPropertygraphSummary(params = {}, callback) ⇒ AWS.Request
Gets a graph summary for a property graph.
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:GetGraphSummary IAM action in that cluster.
getRDFGraphSummary(params = {}, callback) ⇒ AWS.Request
Gets a graph summary for an RDF graph.
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:GetGraphSummary IAM action in that cluster.
getSparqlStream(params = {}, callback) ⇒ AWS.Request
Gets a stream for an RDF graph.
With the Neptune Streams feature, you can generate a complete sequence of change-log entries that record every change made to your graph data as it happens. GetSparqlStream
lets you collect these change-log entries for an RDF graph.
The Neptune streams feature needs to be enabled on your Neptune DBcluster. To enable streams, set the neptune_streams DB cluster parameter to 1
.
See Capturing graph changes in real time using Neptune streams.
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:GetStreamRecords IAM action in that cluster.
Note that the neptune-db:QueryLanguage:Sparql IAM condition key can be used in the policy document to restrict the use of SPARQL queries (see Condition keys available in Neptune IAM data-access policy statements).
listGremlinQueries(params = {}, callback) ⇒ AWS.Request
Lists active Gremlin queries. See Gremlin query status API for details about the output.
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).
listLoaderJobs(params = {}, callback) ⇒ AWS.Request
Retrieves a list of the loadIds
for all active loader jobs.
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:ListLoaderJobs IAM action in that cluster..
listMLDataProcessingJobs(params = {}, callback) ⇒ AWS.Request
Returns a list of Neptune ML data processing jobs. See Listing active data-processing jobs using the Neptune ML dataprocessing command.
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:ListMLDataProcessingJobs IAM action in that cluster.
listMLEndpoints(params = {}, callback) ⇒ AWS.Request
Lists existing inference endpoints. See Managing inference endpoints using the endpoints command.
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:ListMLEndpoints IAM action in that cluster.
listMLModelTrainingJobs(params = {}, callback) ⇒ AWS.Request
Lists Neptune ML model-training jobs. See Model training using the modeltraining
command.
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:neptune-db:ListMLModelTrainingJobs IAM action in that cluster.
listMLModelTransformJobs(params = {}, callback) ⇒ AWS.Request
Returns a list of model transform job IDs. See Use a trained model to generate new model artifacts.
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:ListMLModelTransformJobs IAM action in that cluster.
listOpenCypherQueries(params = {}, callback) ⇒ AWS.Request
Lists active openCypher queries. 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:GetQueryStatus 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).
managePropertygraphStatistics(params = {}, callback) ⇒ AWS.Request
Manages the generation and use of property graph statistics.
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:ManageStatistics IAM action in that cluster.
manageSparqlStatistics(params = {}, callback) ⇒ AWS.Request
Manages the generation and use of RDF graph statistics.
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:ManageStatistics IAM action in that cluster.
startLoaderJob(params = {}, callback) ⇒ AWS.Request
Starts a Neptune bulk loader job to load data from an Amazon S3 bucket into a Neptune DB instance. See Using the Amazon Neptune Bulk Loader to Ingest Data.
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:StartLoaderJob IAM action in that cluster.
startMLDataProcessingJob(params = {}, callback) ⇒ AWS.Request
Creates a new Neptune ML data processing job for processing the graph data exported from Neptune for training. See The dataprocessing
command.
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:StartMLModelDataProcessingJob IAM action in that cluster.
startMLModelTrainingJob(params = {}, callback) ⇒ AWS.Request
Creates a new Neptune ML model training job. See Model training using the modeltraining
command.
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:StartMLModelTrainingJob IAM action in that cluster.
startMLModelTransformJob(params = {}, callback) ⇒ AWS.Request
Creates a new model transform job. See Use a trained model to generate new model artifacts.
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:StartMLModelTransformJob IAM action in that cluster.