AWS::Neptune::DBClusterParameterGroupThe `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 { CfnDBClusterParameterGroup } from 'aws-cdk-lib/aws-neptune';Or use the module namespace:
import * as neptune from 'aws-cdk-lib/aws-neptune';
// neptune.CfnDBClusterParameterGroupConfiguration passed to the constructor as CfnDBClusterParameterGroupProps.
descriptionRequiredstringProvides the customer-specified description for this DB cluster parameter group.
familyRequiredstringMust 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.
parametersRequiredanyThe 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.
nameOptionalstringProvides the name of the DB cluster parameter group.
tagsOptionalCfnTag[]The tags that you want to attach to this parameter group.
This L1 construct maps directly to the following CloudFormation resource type.
Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.
Subscribe to Newsletteraws-neptuneAWS::Neptune::DBClusterParameterGroup