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
Syntax (vb)
Public Class ClusterParameterGroup
Inherits Resource
Implements IClusterParameterGroup, IResource
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
Cluster |
Used by jsii to construct an instance of this class from a Javascript-owned object reference |
Cluster |
Used by jsii to construct an instance of this class from DeputyProps |
Cluster |
Properties
Cluster |
(experimental) The name of the parameter group. |
Parameters | (experimental) The parameters in the parameter group. |
Methods
Add |
(experimental) Adds a parameter to the parameter group. |
From |
(experimental) Imports a parameter group. |
Constructors
ClusterParameterGroup(ByRefValue)
Used by jsii to construct an instance of this class from a Javascript-owned object reference
protected ClusterParameterGroup(ByRefValue reference)
Parameters
- reference Amazon.
JSII. Runtime. Deputy. By Ref Value The Javascript-owned object reference
ClusterParameterGroup(DeputyBase.DeputyProps)
Used by jsii to construct an instance of this class from DeputyProps
protected ClusterParameterGroup(DeputyBase.DeputyProps props)
Parameters
- props Amazon.
JSII. Runtime. Deputy. Deputy Base. Deputy Props The deputy props
ClusterParameterGroup(Construct, String, IClusterParameterGroupProps)
public ClusterParameterGroup(Construct scope, string id, IClusterParameterGroupProps props)
Parameters
- scope Constructs.
Construct - id System.
String - props ICluster
Parameter Group Props
Remarks
Stability: Experimental
Properties
ClusterParameterGroupName
(experimental) The name of the parameter group.
public virtual string ClusterParameterGroupName { get; }
Property Value
System.
Remarks
Stability: Experimental
Parameters
(experimental) The parameters in the parameter group.
public virtual IDictionary<string, string> Parameters { get; }
Property Value
System.
Remarks
Stability: Experimental
Methods
AddParameter(String, String)
(experimental) Adds a parameter to the parameter group.
public virtual void AddParameter(string name, string value)
Parameters
- name System.
String the parameter name.
- value System.
String the parameter name.
Remarks
Stability: Experimental
FromClusterParameterGroupName(Construct, String, String)
(experimental) Imports a parameter group.
public static IClusterParameterGroup FromClusterParameterGroupName(Construct scope, string id, string clusterParameterGroupName)
Parameters
- scope Constructs.
Construct - id System.
String - clusterParameterGroupName System.
String
Returns
Remarks
Stability: Experimental