aws-cdk-lib.aws_neptune.CfnDBParameterGroupProps

interface CfnDBParameterGroupProps

LanguageType name
.NETAmazon.CDK.AWS.Neptune.CfnDBParameterGroupProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsneptune#CfnDBParameterGroupProps
Javasoftware.amazon.awscdk.services.neptune.CfnDBParameterGroupProps
Pythonaws_cdk.aws_neptune.CfnDBParameterGroupProps
TypeScript aws-cdk-lib » aws_neptune » CfnDBParameterGroupProps

Properties for defining a CfnDBParameterGroup.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_neptune as neptune } from 'aws-cdk-lib';

declare const parameters: any;
const cfnDBParameterGroupProps: neptune.CfnDBParameterGroupProps = {
  description: 'description',
  family: 'family',
  parameters: parameters,

  // the properties below are optional
  name: 'name',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
descriptionstringProvides the customer-specified description for this DB parameter group.
familystringMust be neptune1 for engine versions prior to 1.2.0.0 , or neptune1.2 for engine version 1.2.0.0 and higher.
parametersanyThe parameters to set for this DB parameter group.
name?stringProvides the name of the DB parameter group.
tags?CfnTag[]The tags that you want to attach to this parameter group.

description

Type: string

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


family

Type: string

Must be neptune1 for engine versions prior to 1.2.0.0 , or neptune1.2 for engine version 1.2.0.0 and higher.


parameters

Type: any

The parameters to set for this DB parameter group.

The parameters are expressed as a JSON object consisting of key-value pairs.

Changes to dynamic parameters are applied immediately. During an update, if you have static parameters (whether they were changed or not), it triggers AWS CloudFormation to reboot the associated DB instance without failover.


name?

Type: string (optional)

Provides the name of the DB parameter group.


tags?

Type: CfnTag[] (optional)

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