AWS Fundamentals Logo
AWS Fundamentals
AWS::Neptune::DBSubnetGroup

Neptune DBSubnetGroup

The AWS::Neptune::DBSubnetGroup type creates an Amazon Neptune DB subnet group. Subnet groups must contain at least two subnets in two different Availability Zones in the same AWS Region.

Properties

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

Filter:
PropertyTypeFlags
DBSubnetGroupDescription
string
Required
SubnetIds
Array<string>
Required
DBSubnetGroupName
string
Create-only
Tags
Array<Tag>

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::Neptune::DBSubnetGroup

Resources:
  MyResource:
    Type: AWS::Neptune::DBSubnetGroup
    Properties:
      DBSubnetGroupDescription: "value"
      SubnetIds: "my-subnetids"
      Tags:
        - Key: Environment
          Value: Production

Required IAM Permissions

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

create

rds:CreateDBSubnetGrouprds:DescribeDBSubnetGroupsrds:ListTagsForResourcerds:AddTagsToResourceiam:CreateServiceLinkedRole

read

rds:DescribeDBSubnetGroupsrds:ListTagsForResource

update

rds:ModifyDBSubnetGrouprds:DescribeDBSubnetGroupsrds:AddTagsToResourcerds:RemoveTagsFromResourcerds:ListTagsForResource

delete

rds:DeleteDBSubnetGrouprds:DescribeDBSubnetGroupsrds:ListTagsForResourcerds:RemoveTagsFromResource

list

rds:DescribeDBSubnetGroupsrds:ListTagsForResource

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

ServiceNeptune
Properties4
Required2
TaggingSupported
Primary IDDBSubnetGroupName

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

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

DBSubnetGroupName

External Links