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-17T21:37:29.316Z")
@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.docdb.*; 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()
The description for the cluster parameter group.The cluster parameter group family name.default String
getName()
The name of the DB cluster parameter group.Provides a list of parameters for the cluster parameter group.getTags()
The tags to be assigned to the cluster parameter group.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
The description for the cluster parameter group.- See Also:
-
getFamily
The cluster parameter group family name.- See Also:
-
getParameters
Provides a list of parameters for the cluster parameter group.- See Also:
-
getName
The name of the DB cluster parameter group.Constraints:
- Must not match the name of an existing
DBClusterParameterGroup
.
This value is stored as a lowercase string.
- See Also:
- Must not match the name of an existing
-
getTags
The tags to be assigned to the cluster parameter group.- See Also:
-
builder
-