AWS Fundamentals Logo
AWS Fundamentals
L1 ConstructAWS::Neptune::DBClusterParameterGroup

CfnDBClusterParameterGroup

The `AWS::Neptune::DBClusterParameterGroup` resource creates a new Amazon Neptune DB cluster parameter group. > Applying a parameter group to a DB cluster might require instances to reboot, resulting in a database outage while the instances reboot. > If you provide a custom `DBClusterParameterGroup` that you associate with the `DBCluster` , it is best to specify an `EngineVersion` property in the `DBCluster` . That `EngineVersion` needs to be compatible with the value of the `Family` property in the `DBClusterParameterGroup` .

Import

import { CfnDBClusterParameterGroup } from 'aws-cdk-lib/aws-neptune';

Or use the module namespace:

import * as neptune from 'aws-cdk-lib/aws-neptune';
// neptune.CfnDBClusterParameterGroup

Properties

Configuration passed to the constructor as CfnDBClusterParameterGroupProps.

descriptionRequired
string

Provides the customer-specified description for this DB cluster parameter group.

familyRequired
string

Must be `neptune1` for engine versions prior to [1.2.0.0](https://docs.aws.amazon.com/neptune/latest/userguide/engine-releases-1.2.0.0.html) , or `neptune1.2` for engine version `1.2.0.0` and higher.

parametersRequired
any

The parameters to set for this DB cluster parameter group. The parameters are expressed as a JSON object consisting of key-value pairs. If you update the parameters, some interruption may occur depending on which parameters you update.

nameOptional
string

Provides the name of the DB cluster parameter group.

tagsOptional
CfnTag[]

The tags that you want to attach to this parameter group.

CloudFormation Resource

This L1 construct maps directly to the following CloudFormation resource type.

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter