Skip to main content

rdf_graph_summaries

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

Overview

Namerdf_graph_summaries
TypeResource
Idaws.neptunedata.rdf_graph_summaries

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
payloadobjectPayload for an RDF graph summary response
status_codeintegerThe HTTP return code of the request. If the request succeeded, the code is 200.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_rdf_graph_summaryselectregionmodeGets 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.

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)
modestringMode can take one of two values: BASIC (the default), and DETAILED.

SELECT examples

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.

SELECT
payload,
status_code
FROM aws.neptunedata.rdf_graph_summaries
WHERE region = '{{ region }}' -- required
AND mode = '{{ mode }}'
;