CfnDBClusterParameterGroupProps

class aws_cdk.aws_neptune.CfnDBClusterParameterGroupProps(*, description, family, parameters, name=None, tags=None)

Bases: object

Properties for defining a CfnDBClusterParameterGroup.

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

  • family (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.

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

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The tags that you want to attach to this parameter group.

Link:

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

ExampleMetadata:

fixture=_generated

Example:

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

# parameters: Any

cfn_dBCluster_parameter_group_props = neptune.CfnDBClusterParameterGroupProps(
    description="description",
    family="family",
    parameters=parameters,

    # the properties below are optional
    name="name",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

description

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

Link:

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

family

//docs.aws.amazon.com/neptune/latest/userguide/engine-releases-1.2.0.0.html>`_ , or neptune1.2 for engine version 1.2.0.0 and higher.

Link:

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

Type:

Must be neptune1 for engine versions prior to `1.2.0.0 <https

name

Provides the name of the DB cluster parameter group.

Link:

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

parameters

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.

Link:

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

tags

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

Link:

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