Skip to main content

db_cluster_parameter_groups

Creates, updates, deletes or gets a db_cluster_parameter_group resource or lists db_cluster_parameter_groups in a region

Overview

Namedb_cluster_parameter_groups
TypeResource
DescriptionThe ``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 rebooting.
If you apply a change to parameter group associated with a stopped DB cluster, then the updated stack waits until the DB cluster is started.
Idawscc.rds.db_cluster_parameter_groups

Fields

NameDatatypeDescription
descriptionstringThe description for the DB cluster parameter group.
familystringThe DB cluster parameter group family name. A DB cluster parameter group can be associated with one and only one DB cluster parameter group family, and can be applied only to a DB cluster running a database engine and engine version compatible with that DB cluster parameter group family.<br />&#42;Aurora MySQL&#42; <br />Example: &#96;&#96;aurora-mysql5.7&#96;&#96;, &#96;&#96;aurora-mysql8.0&#96;&#96;<br />&#42;Aurora PostgreSQL&#42; <br />Example: &#96;&#96;aurora-postgresql14&#96;&#96;<br />&#42;RDS for MySQL&#42; <br />Example: &#96;&#96;mysql8.0&#96;&#96;<br />&#42;RDS for PostgreSQL&#42; <br />Example: &#96;&#96;postgres13&#96;&#96;<br />To list all of the available parameter group families for a DB engine, use the following command:<br />&#96;&#96;aws rds describe-db-engine-versions --query "DBEngineVersions&#91;&#93;.DBParameterGroupFamily" --engine &lt;engine&gt;&#96;&#96; <br />For example, to list all of the available parameter group families for the Aurora PostgreSQL DB engine, use the following command:<br />&#96;&#96;aws rds describe-db-engine-versions --query "DBEngineVersions&#91;&#93;.DBParameterGroupFamily" --engine aurora-postgresql&#96;&#96; <br />The output contains duplicates.<br />The following are the valid DB engine values:<br />+ &#96;&#96;aurora-mysql&#96;&#96; <br />+ &#96;&#96;aurora-postgresql&#96;&#96; <br />+ &#96;&#96;mysql&#96;&#96; <br />+ &#96;&#96;postgres&#96;&#96;
parametersobjectProvides a list of parameters for the DB cluster parameter group.
db_cluster_parameter_group_namestringThe name of the DB cluster parameter group.<br />Constraints:<br />+ Must not match the name of an existing DB cluster parameter group.<br /><br />This value is stored as a lowercase string.
tagsarrayTags to assign to the DB cluster parameter group.
regionstringAWS region.

For more information, see AWS::RDS::DBClusterParameterGroup.

Methods

NameAccessible byRequired Params
create_resourceINSERTDescription, Family, Parameters, region
delete_resourceDELETEdata__Identifier, region
update_resourceUPDATEdata__Identifier, data__PatchDocument, region
list_resourcesSELECTregion
get_resourceSELECTdata__Identifier, region

SELECT examples

Gets all properties from an individual db_cluster_parameter_group.

SELECT
region,
description,
family,
parameters,
db_cluster_parameter_group_name,
tags
FROM awscc.rds.db_cluster_parameter_groups
WHERE region = 'us-east-1' AND data__Identifier = '<DBClusterParameterGroupName>';

INSERT example

Use the following StackQL query and manifest file to create a new db_cluster_parameter_group resource, using stack-deploy.

/*+ create */
INSERT INTO awscc.rds.db_cluster_parameter_groups (
Description,
Family,
Parameters,
region
)
SELECT
'{{ Description }}',
'{{ Family }}',
'{{ Parameters }}',
'{{ region }}';

DELETE example

/*+ delete */
DELETE FROM awscc.rds.db_cluster_parameter_groups
WHERE data__Identifier = '<DBClusterParameterGroupName>'
AND region = 'us-east-1';

Permissions

To operate on the db_cluster_parameter_groups resource, the following permissions are required:

Create

iam:CreateServiceLinkedRole,
rds:AddTagsToResource,
rds:CreateDBClusterParameterGroup,
rds:DescribeDBClusterParameterGroups,
rds:DescribeDBClusterParameters,
rds:DescribeDBClusters,
rds:DescribeEngineDefaultClusterParameters,
rds:ListTagsForResource,
rds:ModifyDBClusterParameterGroup,
rds:RemoveTagsFromResource

Read

rds:DescribeDBClusterParameterGroups,
rds:DescribeDBClusterParameters,
rds:ListTagsForResource

Update

rds:AddTagsToResource,
rds:DescribeDBClusterParameterGroups,
rds:DescribeDBClusterParameters,
rds:DescribeDBClusters,
rds:DescribeEngineDefaultClusterParameters,
rds:ListTagsForResource,
rds:ModifyDBClusterParameterGroup,
rds:RemoveTagsFromResource,
rds:ResetDBClusterParameterGroup

Delete

rds:DeleteDBClusterParameterGroup

List

rds:DescribeDBClusterParameterGroups