Class ClusterParameterGroup
(experimental) A cluster parameter group.
Inherited Members
Namespace: Amazon.CDK.AWS.Redshift.Alpha
Assembly: Amazon.CDK.AWS.Redshift.Alpha.dll
Syntax (csharp)
public class ClusterParameterGroup : Resource, IClusterParameterGroup, IResource, IConstruct, IDependable
Syntax (vb)
Public Class ClusterParameterGroup Inherits Resource Implements IClusterParameterGroup, IResource, IConstruct, IDependable
Remarks
Stability: Experimental
Resource: AWS::Redshift::ClusterParameterGroup
ExampleMetadata: infused
Examples
using Amazon.CDK.AWS.Redshift.Alpha;
var params = new ClusterParameterGroup(this, "Params", new ClusterParameterGroupProps {
Description = "desc",
Parameters = new Dictionary<string, string> {
{ "require_ssl", "true" }
}
});
params.AddParameter("enable_user_activity_logging", "true");
Synopsis
Constructors
ClusterParameterGroup(Construct, string, IClusterParameterGroupProps) | (experimental) A cluster parameter group. |
Properties
ClusterParameterGroupName | (experimental) The name of the parameter group. |
PROPERTY_INJECTION_ID | (experimental) Uniquely identifies this class. |
Parameters | (experimental) The parameters in the parameter group. |
Methods
AddParameter(string, string) | (experimental) Adds a parameter to the parameter group. |
FromClusterParameterGroupName(Construct, string, string) | (experimental) Imports a parameter group. |
Constructors
ClusterParameterGroup(Construct, string, IClusterParameterGroupProps)
(experimental) A cluster parameter group.
public ClusterParameterGroup(Construct scope, string id, IClusterParameterGroupProps props)
Parameters
- scope Construct
- id string
- props IClusterParameterGroupProps
Remarks
Stability: Experimental
Properties
ClusterParameterGroupName
(experimental) The name of the parameter group.
public virtual string ClusterParameterGroupName { get; }
Property Value
Remarks
Stability: Experimental
PROPERTY_INJECTION_ID
(experimental) Uniquely identifies this class.
public static string PROPERTY_INJECTION_ID { get; }
Property Value
Remarks
Stability: Experimental
Parameters
(experimental) The parameters in the parameter group.
public virtual IDictionary<string, string> Parameters { get; }
Property Value
Remarks
Stability: Experimental
Methods
AddParameter(string, string)
(experimental) Adds a parameter to the parameter group.
public virtual void AddParameter(string name, string value)
Parameters
Remarks
Stability: Experimental
FromClusterParameterGroupName(Construct, string, string)
(experimental) Imports a parameter group.
public static IClusterParameterGroup FromClusterParameterGroupName(Construct scope, string id, string clusterParameterGroupName)
Parameters
Returns
Remarks
Stability: Experimental