@Generated(value="jsii-pacmak/1.70.0 (build 03c2f6f)", date="2022-11-01T13:16:53.571Z") @Stability(value=Experimental) public class ClusterParameterGroup extends Resource implements IClusterParameterGroup
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();
| Modifier and Type | Class and Description |
|---|---|
static class |
ClusterParameterGroup.Builder
(experimental) A fluent builder for
ClusterParameterGroup. |
software.amazon.jsii.JsiiObject.InitializationModeIClusterParameterGroup.Jsii$Default, IClusterParameterGroup.Jsii$Proxy| Modifier | Constructor and Description |
|---|---|
|
ClusterParameterGroup(software.constructs.Construct scope,
String id,
ClusterParameterGroupProps props) |
protected |
ClusterParameterGroup(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) |
protected |
ClusterParameterGroup(software.amazon.jsii.JsiiObjectRef objRef) |
| Modifier and Type | Method and Description |
|---|---|
static IClusterParameterGroup |
fromClusterParameterGroupName(software.constructs.Construct scope,
String id,
String clusterParameterGroupName)
(experimental) Imports a parameter group.
|
String |
getClusterParameterGroupName()
(experimental) The name of the parameter group.
|
applyRemovalPolicy, generatePhysicalName, getEnv, getPhysicalName, getResourceArnAttribute, getResourceNameAttribute, getStack, isResourcegetNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validatejsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitapplyRemovalPolicy, getEnv, getStackgetNodeprotected ClusterParameterGroup(software.amazon.jsii.JsiiObjectRef objRef)
protected ClusterParameterGroup(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
@Stability(value=Experimental)
public ClusterParameterGroup(@NotNull
software.constructs.Construct scope,
@NotNull
String id,
@NotNull
ClusterParameterGroupProps props)
scope - This parameter is required.id - This parameter is required.props - This parameter is required.@Stability(value=Experimental) @NotNull public static IClusterParameterGroup fromClusterParameterGroupName(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull String clusterParameterGroupName)
scope - This parameter is required.id - This parameter is required.clusterParameterGroupName - This parameter is required.@Stability(value=Experimental) @NotNull public String getClusterParameterGroupName()
getClusterParameterGroupName in interface IClusterParameterGroupCopyright © 2022. All rights reserved.