AWS Fundamentals Logo
AWS Fundamentals
AWS::RDS::DBClusterParameterGroup

RDS DBClusterParameterGroup

The AWS::RDS::DBClusterParameterGroup resource creates a new Amazon RDS DB cluster parameter group. For information about configuring parameters for Amazon Aurora DB clusters, see [Working with parameter groups](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_WorkingWithParamGroups.html) in the *Amazon Aurora User Guide*. If you apply a parameter group to a DB cluster, then its DB instances might need to reboot. This can result in an outage while the DB instances are ...

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
DBClusterParameterGroupName
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::RDS::DBClusterParameterGroup

Resources:
  MyResource:
    Type: AWS::RDS::DBClusterParameterGroup
    Properties:
      Description: "value"
      Family: "value"
      Parameters: {}
      Tags:
        - Key: Environment
          Value: Production

Required IAM Permissions

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

create

iam:CreateServiceLinkedRolerds:AddTagsToResourcerds:CreateDBClusterParameterGrouprds:DescribeDBClusterParameterGroupsrds:DescribeDBClusterParametersrds:DescribeDBClustersrds:DescribeEngineDefaultClusterParametersrds:ListTagsForResource

read

rds:DescribeDBClusterParameterGroupsrds:DescribeDBClusterParametersrds:ListTagsForResource

update

rds:AddTagsToResourcerds:DescribeDBClusterParameterGroupsrds:DescribeDBClusterParametersrds:DescribeDBClustersrds:DescribeEngineDefaultClusterParametersrds:ListTagsForResourcerds:ModifyDBClusterParameterGrouprds:RemoveTagsFromResource

delete

rds:DeleteDBClusterParameterGroup

list

rds:DescribeDBClusterParameterGroups

Get the RDS Cheat Sheet

Everything you need to know about RDS on one page. HD quality, print-friendly.

Download Free Infographic

Quick Facts

ServiceRDS
Properties5
Required3
TaggingSupported
Primary IDDBClusterParameterGroupName

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

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

DBClusterParameterGroupNameDescriptionFamily

External Links