interface CfnDBClusterParameterGroupProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Neptune.CfnDBClusterParameterGroupProps |
Java | software.amazon.awscdk.services.neptune.CfnDBClusterParameterGroupProps |
Python | aws_cdk.aws_neptune.CfnDBClusterParameterGroupProps |
TypeScript | @aws-cdk/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 * as neptune from '@aws-cdk/aws-neptune';
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
Name | Type | Description |
---|---|---|
description | string | Provides the customer-specified description for this DB cluster parameter group. |
family | 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 | any | The parameters to set for this DB cluster parameter group. |
name? | string | Provides the name of the DB cluster parameter group. |
tags? | Cfn [] | 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:
Cfn
[]
(optional)
The tags that you want to attach to this parameter group.