interface CfnDBClusterParameterGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Neptune.Mixins.CfnDBClusterParameterGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsneptune/mixins#CfnDBClusterParameterGroupMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.neptune.mixins.CfnDBClusterParameterGroupMixinProps |
Python | aws_cdk.mixins_preview.aws_neptune.mixins.CfnDBClusterParameterGroupMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_neptune » mixins » 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 { mixins as neptune_mixins } from '@aws-cdk/mixins-preview/aws-neptune';
declare const parameters: any;
const cfnDBClusterParameterGroupMixinProps: neptune_mixins.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