Class ClusterParameterGroup
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.Resource
software.amazon.awscdk.services.redshift.alpha.ClusterParameterGroup
- All Implemented Interfaces:
IResource
,IClusterParameterGroup
,software.amazon.jsii.JsiiSerializable
,software.constructs.IConstruct
,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.106.0 (build e852934)",
date="2025-03-04T22:57:35.625Z")
@Stability(Experimental)
public class ClusterParameterGroup
extends Resource
implements IClusterParameterGroup
(experimental) A cluster parameter group.
Example:
import software.amazon.awscdk.services.redshift.alpha.ClusterParameterGroup; ClusterParameterGroup params = ClusterParameterGroup.Builder.create(this, "Params") .description("desc") .parameters(Map.of( "require_ssl", "true")) .build(); params.addParameter("enable_user_activity_logging", "true");
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final class
(experimental) A fluent builder forClusterParameterGroup
.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.amazon.awscdk.services.redshift.alpha.IClusterParameterGroup
IClusterParameterGroup.Jsii$Default, IClusterParameterGroup.Jsii$Proxy
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.amazon.awscdk.IResource
IResource.Jsii$Default
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
ClusterParameterGroup
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
ClusterParameterGroup
(software.amazon.jsii.JsiiObjectRef objRef) ClusterParameterGroup
(software.constructs.Construct scope, String id, ClusterParameterGroupProps props) -
Method Summary
Modifier and TypeMethodDescriptionvoid
addParameter
(String name, String value) (experimental) Adds a parameter to the parameter group.static IClusterParameterGroup
fromClusterParameterGroupName
(software.constructs.Construct scope, String id, String clusterParameterGroupName) (experimental) Imports a parameter group.(experimental) The name of the parameter group.(experimental) The parameters in 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
-
ClusterParameterGroup
protected ClusterParameterGroup(software.amazon.jsii.JsiiObjectRef objRef) -
ClusterParameterGroup
protected ClusterParameterGroup(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
ClusterParameterGroup
@Stability(Experimental) public ClusterParameterGroup(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull ClusterParameterGroupProps props) - Parameters:
scope
- This parameter is required.id
- This parameter is required.props
- This parameter is required.
-
-
Method Details
-
fromClusterParameterGroupName
@Stability(Experimental) @NotNull public static IClusterParameterGroup fromClusterParameterGroupName(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull String clusterParameterGroupName) (experimental) Imports a parameter group.- Parameters:
scope
- This parameter is required.id
- This parameter is required.clusterParameterGroupName
- This parameter is required.
-
addParameter
(experimental) Adds a parameter to the parameter group.- Parameters:
name
- the parameter name. This parameter is required.value
- the parameter name. This parameter is required.
-
getClusterParameterGroupName
(experimental) The name of the parameter group.- Specified by:
getClusterParameterGroupName
in interfaceIClusterParameterGroup
-
getParameters
(experimental) The parameters in the parameter group.
-