CfnDBParameterGroupMixinProps

class aws_cdk.mixins_preview.aws_neptune.mixins.CfnDBParameterGroupMixinProps(*, description=None, family=None, name=None, parameters=None, tags=None)

Bases: object

Properties for CfnDBParameterGroupPropsMixin.

Parameters:
  • description (Optional[str]) – Provides the customer-specified description for this DB parameter group.

  • family (Optional[str]) – 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 (Optional[str]) – Provides the name of the DB parameter group.

  • parameters (Any) – 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 (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The tags that you want to attach to this parameter group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_neptune import mixins as neptune_mixins

# parameters: Any

cfn_dBParameter_group_mixin_props = neptune_mixins.CfnDBParameterGroupMixinProps(
    description="description",
    family="family",
    name="name",
    parameters=parameters,
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

description

Provides the customer-specified description for this DB parameter group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-description

family

Must be neptune1 for engine versions prior to 1.2.0.0 , or neptune1.2 for engine version 1.2.0.0 and higher.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-family

name

Provides the name of the DB parameter group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-name

parameters

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-parameters

tags

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

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#cfn-neptune-dbparametergroup-tags