interface CfnDBClusterParameterGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Neptune.CfnDBClusterParameterGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsneptune#CfnDBClusterParameterGroupMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.neptune.CfnDBClusterParameterGroupMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_neptune.CfnDBClusterParameterGroupMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_neptune » CfnDBClusterParameterGroupMixinProps |
Properties for CfnDBClusterParameterGroupPropsMixin.
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/cfn-property-mixins';
declare const parameters: any;
const cfnDBClusterParameterGroupMixinProps: neptune.CfnDBClusterParameterGroupMixinProps = {
description: 'description',
family: 'family',
name: 'name',
parameters: parameters,
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. |
| name? | string | Provides the name of the DB cluster parameter group. |
| parameters? | any | The parameters to set for this DB cluster parameter group. |
| tags? | Cfn[] | The tags that you want to attach to this parameter group. |
description?
Type:
string
(optional)
Provides the customer-specified description for this DB cluster parameter group.
family?
Type:
string
(optional)
Must be neptune1 for engine versions prior to 1.2.0.0 , or neptune1.2 for engine version 1.2.0.0 and higher.
name?
Type:
string
(optional)
Provides the name of the DB cluster parameter group.
parameters?
Type:
any
(optional)
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.
tags?
Type:
Cfn[]
(optional)
The tags that you want to attach to this parameter group.

.NET
Go
Java
Python
TypeScript