Interface CfnDBClusterParameterGroupMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDBClusterParameterGroupMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-19T12:55:22.935Z")
@Stability(Stable)
public interface CfnDBClusterParameterGroupMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnDBClusterParameterGroupPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.neptune.*;
Object parameters;
CfnDBClusterParameterGroupMixinProps cfnDBClusterParameterGroupMixinProps = CfnDBClusterParameterGroupMixinProps.builder()
.description("description")
.family("family")
.name("name")
.parameters(parameters)
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDBClusterParameterGroupMixinPropsstatic final classAn implementation forCfnDBClusterParameterGroupMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringProvides the customer-specified description for this DB cluster parameter group.default StringMust beneptune1for engine versions prior to 1.2.0.0 , orneptune1.2for engine version1.2.0.0and higher.default StringgetName()Provides the name of the DB cluster parameter group.default ObjectThe parameters to set for this DB cluster parameter group.getTags()The tags that you want to attach to this parameter group.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
Provides the customer-specified description for this DB cluster parameter group.- See Also:
-
getFamily
Must beneptune1for engine versions prior to 1.2.0.0 , orneptune1.2for engine version1.2.0.0and higher.- See Also:
-
getName
Provides the name of the DB cluster parameter group.- See Also:
-
getParameters
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.
- See Also:
-
getTags
The tags that you want to attach to this parameter group.- See Also:
-
builder
-