Class ParameterGroup
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.Resource
software.amazon.awscdk.services.neptune.alpha.ParameterGroup
- All Implemented Interfaces:
IResource
,IParameterGroup
,software.amazon.jsii.JsiiSerializable
,software.constructs.IConstruct
,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-10-31T19:13:08.120Z")
@Stability(Experimental)
public class ParameterGroup
extends Resource
implements IParameterGroup
(experimental) DB 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 TypeClassDescriptionstatic final class
(experimental) A fluent builder forParameterGroup
.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.amazon.awscdk.services.neptune.alpha.IParameterGroup
IParameterGroup.Jsii$Default, IParameterGroup.Jsii$Proxy
Nested classes/interfaces inherited from interface software.amazon.awscdk.IResource
IResource.Jsii$Default
-
Constructor Summary
ModifierConstructorDescriptionprotected
ParameterGroup
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
ParameterGroup
(software.amazon.jsii.JsiiObjectRef objRef) ParameterGroup
(software.constructs.Construct scope, String id, ParameterGroupProps props) -
Method Summary
Modifier and TypeMethodDescriptionstatic IParameterGroup
fromParameterGroupName
(software.constructs.Construct scope, String id, String parameterGroupName) (experimental) Imports a parameter group.(experimental) The name of the parameter group.Methods inherited from class software.amazon.awscdk.Resource
applyRemovalPolicy, generatePhysicalName, getEnv, getPhysicalName, getResourceArnAttribute, getResourceNameAttribute, getStack, isOwnedResource, isResource
Methods inherited from class software.constructs.Construct
getNode, isConstruct, toString
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface software.constructs.IConstruct
getNode
Methods inherited from interface software.amazon.awscdk.IResource
applyRemovalPolicy, getEnv, getStack
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Constructor Details
-
ParameterGroup
protected ParameterGroup(software.amazon.jsii.JsiiObjectRef objRef) -
ParameterGroup
protected ParameterGroup(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
ParameterGroup
@Stability(Experimental) public ParameterGroup(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull ParameterGroupProps props) - Parameters:
scope
- This parameter is required.id
- This parameter is required.props
- This parameter is required.
-
-
Method Details
-
fromParameterGroupName
@Stability(Experimental) @NotNull public static IParameterGroup fromParameterGroupName(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull String parameterGroupName) (experimental) Imports a parameter group.- Parameters:
scope
- This parameter is required.id
- This parameter is required.parameterGroupName
- This parameter is required.
-
getParameterGroupName
(experimental) The name of the parameter group.- Specified by:
getParameterGroupName
in interfaceIParameterGroup
-