Skip to main content

propertygraph_summaries

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

Overview

Namepropertygraph_summaries
TypeResource
Idaws.neptunedata.propertygraph_summaries

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
payloadobjectPayload containing the property 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_propertygraph_summaryselectregionmodeGets 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.

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

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