aws-cdk-lib.aws_neptune.CfnDBClusterParameterGroupProps

interface CfnDBClusterParameterGroupProps

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

Properties for defining a CfnDBClusterParameterGroup.

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 cfnDBClusterParameterGroupProps: neptune.CfnDBClusterParameterGroupProps = {
  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 cluster 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 cluster parameter group.
name?stringProvides the name of the DB cluster 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 cluster 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 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.


name?

Type: string (optional)

Provides the name of the DB cluster parameter group.


tags?

Type: CfnTag[] (optional)

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