AWS Fundamentals Logo
AWS Fundamentals
AWS::NeptuneGraph::PrivateGraphEndpoint

NeptuneGraph PrivateGraphEndpoint

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

Properties

4 configurable properties. 2 required. Click a row to see details.

Filter:
PropertyTypeFlags
GraphIdentifier
string
RequiredCreate-onlyWrite-only
VpcId
string
RequiredCreate-only
SecurityGroupIds
Array<string>
Create-onlyWrite-only
SubnetIds
Array<string>
Create-only

Return Values

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

AttributeTypeDescription
PrivateGraphEndpointIdentifierstringPrivateGraphEndpoint resource identifier generated by concatenating the associated GraphIdentifier and VpcId with an underscore separator. For example, if GraphIdentifier is `g-12a3bcdef4` and VpcId is `vpc-0a12bc34567de8f90`, the generated PrivateGraphEndpointIdentifier will be `g-12a3bcdef4_v...
VpcEndpointIdstringVPC endpoint that provides a private connection between the Graph and specified VPC.

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::PrivateGraphEndpoint

Resources:
  MyResource:
    Type: AWS::NeptuneGraph::PrivateGraphEndpoint
    Properties:
      GraphIdentifier: "my-graphidentifier"
      VpcId: "my-vpcid"

Required IAM Permissions

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

create

ec2:CreateVpcEndpointec2:DescribeVpcEndpointsec2:DescribeSecurityGroupsec2:DescribeSubnetsec2:DescribeVpcsec2:DescribeVpcAttributeec2:DescribeAvailabilityZonesec2:ModifyVpcEndpoint

read

neptune-graph:GetPrivateGraphEndpoint

update

iam:PassRoleneptune-graph:GetPrivateGraphEndpoint

delete

ec2:DeleteVpcEndpointsec2:DescribeVpcEndpointsec2:DescribeSecurityGroupsec2:DescribeSubnetsec2:DescribeVpcsec2:DescribeVpcAttributeec2:DescribeAvailabilityZonesec2:ModifyVpcEndpoint

list

neptune-graph:GetPrivateGraphEndpointneptune-graph:ListPrivateGraphEndpointsneptune-graph:ListGraphs

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
Properties6
Required2
TaggingNot supported
Primary IDPrivateGraphEndpointIdentifier

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

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

GraphIdentifierSecurityGroupIdsSubnetIdsVpcId

Related Resources

External Links