Skip to main content

loader_jobs

Creates, updates, deletes, gets or lists a loader_jobs resource.

Overview

Nameloader_jobs
TypeResource
Idaws.neptunedata.loader_jobs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
payloadobjectThe requested list of job IDs.
statusstringReturns the status of the job list request.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_loader_jobsselectregionlimit, includeQueuedLoadsRetrieves 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..

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)
includeQueuedLoadsbooleanAn optional parameter that can be used to exclude the load IDs of queued load requests when requesting a list of load IDs by setting the parameter to FALSE. The default value is TRUE.
limitintegerThe number of load IDs to list. Must be a positive integer greater than zero and not more than 100 (which is the default).

SELECT examples

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..

SELECT
payload,
status
FROM aws.neptunedata.loader_jobs
WHERE region = '{{ region }}' -- required
AND limit = '{{ limit }}'
AND includeQueuedLoads = '{{ includeQueuedLoads }}'
;