Interface ParameterGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ParameterGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:11.780Z")
@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 ParameterGroupFamily
(experimental) Parameter group family.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
-
getFamily
(experimental) Parameter group family.Default: - NEPTUNE_1
-
getParameterGroupName
(experimental) The name of the parameter group.Default: A CDK generated name for the parameter group
-
builder
- Returns:
- a
ParameterGroupProps.Builder
ofParameterGroupProps
-