Interface ParameterGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ParameterGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:40.346Z")
@Stability(Experimental)
public interface ParameterGroupProps
extends software.amazon.jsii.JsiiSerializable
(experimental) Marker class for cluster parameter group.
Example:
ClusterParameterGroup clusterParams = ClusterParameterGroup.Builder.create(this, "ClusterParams") .description("Cluster parameter group") .parameters(Map.of( "neptune_enable_audit_log", "1")) .build(); ParameterGroup dbParams = ParameterGroup.Builder.create(this, "DbParams") .description("Db parameter group") .parameters(Map.of( "neptune_query_timeout", "120000")) .build(); DatabaseCluster cluster = DatabaseCluster.Builder.create(this, "Database") .vpc(vpc) .instanceType(InstanceType.R5_LARGE) .clusterParameterGroup(clusterParams) .parameterGroup(dbParams) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forParameterGroupProps
static final class
An implementation forParameterGroupProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic ParameterGroupProps.Builder
builder()
default String
(experimental) Description for this parameter group.default String
(experimental) The name of the parameter group.(experimental) The parameters in this parameter group.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getParameters
(experimental) The parameters in this parameter group. -
getDescription
(experimental) Description for this parameter group.Default: a CDK generated description
-
getParameterGroupName
(experimental) The name of the parameter group.Default: A CDK generated name for the parameter group
-
builder
- Returns:
- a
ParameterGroupProps.Builder
ofParameterGroupProps
-