AWS Security ChangesHomeSearch

AWS neptune-analytics documentation change

Service: neptune-analytics · 2026-03-07 · Documentation medium

File: neptune-analytics/latest/userguide/gettingStarted-connecting-private-link-create-policy.md

Summary

Added example endpoint policy restricting access to specific Neptune graph resource

Security assessment

Improves security documentation by showing how to limit PrivateLink access but does not fix a specific vulnerability.

Diff

diff --git a/neptune-analytics/latest/userguide/gettingStarted-connecting-private-link-create-policy.md b/neptune-analytics/latest/userguide/gettingStarted-connecting-private-link-create-policy.md
index 2c2b04f12..ce317eb47 100644
--- a//neptune-analytics/latest/userguide/gettingStarted-connecting-private-link-create-policy.md
+++ b//neptune-analytics/latest/userguide/gettingStarted-connecting-private-link-create-policy.md
@@ -25,0 +26,27 @@ You can create an endpoint policy that restricts access to only specific Neptune
+JSON
+    
+
+****
+    
+    
+    
+    {
+      "Version":"2012-10-17",		 	 	 
+      "Id": "Policy1216114807515",
+      "Statement": [
+        {
+          "Sid": "Access-to-specific-graph-only",
+          "Principal": "*",
+          "Action": [
+            "neptune-graph:GetGraphSummary"
+          ],
+          "Effect": "Allow",
+          "Resource": [
+            "arn:aws:neptune-graph:us-east-1:111122223333:graph/resource-id"
+          ]
+        }
+      ]
+    }
+    
+    
+