Interface CfnDBClusterParameterGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDBClusterParameterGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-27T17:02:05.194Z")
@Stability(Stable)
public interface CfnDBClusterParameterGroupProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnDBClusterParameterGroup
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.neptune.*; Object parameters; CfnDBClusterParameterGroupProps cfnDBClusterParameterGroupProps = CfnDBClusterParameterGroupProps.builder() .description("description") .family("family") .parameters(parameters) // the properties below are optional .name("name") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDBClusterParameterGroupProps
static final class
An implementation forCfnDBClusterParameterGroupProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
Provides the customer-specified description for this DB cluster parameter group.Must beneptune1
for engine versions prior to 1.2.0.0 , orneptune1.2
for engine version1.2.0.0
and higher.default String
getName()
Provides the name of the DB cluster parameter group.The 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 beneptune1
for engine versions prior to 1.2.0.0 , orneptune1.2
for engine version1.2.0.0
and higher.- 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:
-
getName
Provides the name of the DB cluster parameter group.- See Also:
-
getTags
The tags that you want to attach to this parameter group.- See Also:
-
builder
-