interface CfnDBParameterGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Neptune.Mixins.CfnDBParameterGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsneptune/mixins#CfnDBParameterGroupMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.neptune.mixins.CfnDBParameterGroupMixinProps |
Python | aws_cdk.mixins_preview.aws_neptune.mixins.CfnDBParameterGroupMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_neptune » mixins » CfnDBParameterGroupMixinProps |
Properties for CfnDBParameterGroupPropsMixin.
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 cfnDBParameterGroupMixinProps: neptune_mixins.CfnDBParameterGroupMixinProps = {
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 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 parameter group. |
| parameters? | any | The parameters to set for this DB 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 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 parameter group.
parameters?
Type:
any
(optional)
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 CloudFormation to reboot the associated DB instance without failover.
tags?
Type:
Cfn[]
(optional)
The tags that you want to attach to this parameter group.

.NET
Go
Java
Python
TypeScript