AWS Fundamentals Logo
AWS Fundamentals
AWS::NeptuneGraph::Graph

NeptuneGraph Graph

The AWS::NeptuneGraph::Graph resource creates an Amazon NeptuneGraph Graph.

Properties

8 configurable properties. 1 required. Click a row to see details.

Filter:
PropertyTypeFlags
ProvisionedMemory
integer
Required
DeletionProtection
boolean
GraphName
string
Create-only
KmsKeyIdentifier
string
Create-only
PublicConnectivity
boolean
ReplicaCount
integer
Create-only
Tags
Array<Tag>
VectorSearchConfiguration
VectorSearchConfiguration
Create-only

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
EndpointstringThe connection endpoint for the graph. For example: `g-12a3bcdef4.us-east-1.neptune-graph.amazonaws.com`
GraphArnstringGraph resource ARN
GraphIdstringThe auto-generated id assigned by the service.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::NeptuneGraph::Graph

Resources:
  MyResource:
    Type: AWS::NeptuneGraph::Graph
    Properties:
      ProvisionedMemory: 1
      Tags:
        - Key: Environment
          Value: Production

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

read

neptune-graph:GetGraphneptune-graph:ListTagsForResourcekms:DescribeKeykms:CreateGrantkms:Decrypt

create

iam:PassRoleneptune-graph:CreateGraphneptune-graph:GetGraphneptune-graph:ListTagsForResourceneptune-graph:TagResourcekms:DescribeKeykms:CreateGrantkms:Decryptiam:CreateServiceLinkedRole

update

iam:PassRoleneptune-graph:GetGraphneptune-graph:ListTagsForResourceneptune-graph:TagResourceneptune-graph:UntagResourceneptune-graph:UpdateGraphkms:DescribeKeykms:CreateGrantkms:Decrypt

list

neptune-graph:GetGraphneptune-graph:ListGraphsneptune-graph:ListTagsForResourcekms:DescribeKeykms:CreateGrantkms:Decrypt

delete

neptune-graph:DeleteGraphneptune-graph:GetGraphneptune-graph:ListTagsForResourceneptune-graph:UntagResourcekms:DescribeKeykms:CreateGrantkms:Decrypt

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceNeptuneGraph
Properties11
Required1
TaggingSupported
Primary IDGraphId

Supported Operations

ReadCreateUpdateListDelete

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

GraphNameReplicaCountVectorSearchConfigurationKmsKeyIdentifier

External Links