@Generated(value="jsii-pacmak/1.70.0 (build 03c2f6f)", date="2022-11-01T13:16:53.587Z") @Stability(value=Experimental) public class ParameterGroup extends Resource implements IParameterGroup
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 |
ParameterGroup.Builder
(experimental) A fluent builder for
ParameterGroup. |
software.amazon.jsii.JsiiObject.InitializationModeIParameterGroup.Jsii$Default, IParameterGroup.Jsii$Proxy| Modifier | Constructor and Description |
|---|---|
|
ParameterGroup(software.constructs.Construct scope,
String id,
ParameterGroupProps props) |
protected |
ParameterGroup(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) |
protected |
ParameterGroup(software.amazon.jsii.JsiiObjectRef objRef) |
| Modifier and Type | Method and Description |
|---|---|
static IParameterGroup |
fromParameterGroupName(software.constructs.Construct scope,
String id,
String parameterGroupName)
(experimental) Imports a parameter group.
|
String |
getParameterGroupName()
(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 ParameterGroup(software.amazon.jsii.JsiiObjectRef objRef)
protected ParameterGroup(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
@Stability(value=Experimental)
public ParameterGroup(@NotNull
software.constructs.Construct scope,
@NotNull
String id,
@NotNull
ParameterGroupProps props)
scope - This parameter is required.id - This parameter is required.props - This parameter is required.@Stability(value=Experimental) @NotNull public static IParameterGroup fromParameterGroupName(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull String parameterGroupName)
scope - This parameter is required.id - This parameter is required.parameterGroupName - This parameter is required.@Stability(value=Experimental) @NotNull public String getParameterGroupName()
getParameterGroupName in interface IParameterGroupCopyright © 2022. All rights reserved.