AWS Fundamentals Logo
AWS Fundamentals
AWS::Neptune::DBParameterGroup

Neptune DBParameterGroup

AWS::Neptune::DBParameterGroup creates a new DB parameter group. This type can be declared in a template and referenced in the DBParameterGroupName parameter of AWS::Neptune::DBInstance

Properties

5 configurable properties. 3 required. Click a row to see details.

Filter:
PropertyTypeFlags
Description
string
RequiredCreate-only
Family
string
RequiredCreate-only
Parameters
object
Required
Name
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::DBParameterGroup

Resources:
  MyResource:
    Type: AWS::Neptune::DBParameterGroup
    Properties:
      Family: "value"
      Description: "value"
      Parameters: {}
      Tags:
        - Key: Environment
          Value: Production
      Name: !Ref "AWS::StackName"

Required IAM Permissions

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

create

rds:AddTagsToResourcerds:CreateDBParameterGrouprds:DescribeDBParameterGroupsrds:DescribeDBParametersrds:DescribeEngineDefaultParametersrds:ModifyDBParameterGrouprds:ListTagsForResourceiam:CreateServiceLinkedRole

read

rds:DescribeDBParameterGroupsrds:ListTagsForResourcerds:DescribeDBParametersrds:DescribeEngineDefaultParameters

update

rds:AddTagsToResourcerds:DescribeDBParameterGroupsrds:DescribeDBParametersrds:DescribeEngineDefaultParametersrds:ListTagsForResourcerds:ModifyDBParameterGrouprds:ResetDBParameterGrouprds:RemoveTagsFromResource

delete

rds:DeleteDBParameterGrouprds:RemoveTagsFromResource

list

rds:DescribeDBParameterGroupsrds: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
Properties5
Required3
TaggingSupported
Primary IDName

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

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

NameDescriptionFamily

External Links