Show / Hide Table of Contents

Class ClusterParameterGroup

(experimental) A cluster parameter group.

Inheritance
object
Resource
ClusterParameterGroup
Implements
IClusterParameterGroup
IResource
IConstruct
IDependable
Inherited Members
Resource.IsOwnedResource(IConstruct)
Resource.IsResource(IConstruct)
Resource.ApplyRemovalPolicy(RemovalPolicy)
Resource.GeneratePhysicalName()
Resource.GetResourceArnAttribute(string, IArnComponents)
Resource.GetResourceNameAttribute(string)
Resource.Env
Resource.PhysicalName
Resource.Stack
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

string

Remarks

Stability: Experimental

PROPERTY_INJECTION_ID

(experimental) Uniquely identifies this class.

public static string PROPERTY_INJECTION_ID { get; }
Property Value

string

Remarks

Stability: Experimental

Parameters

(experimental) The parameters in the parameter group.

public virtual IDictionary<string, string> Parameters { get; }
Property Value

IDictionary<string, string>

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 string

the parameter name.

value 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 Construct
id string
clusterParameterGroupName string
Returns

IClusterParameterGroup

Remarks

Stability: Experimental

Implements

IClusterParameterGroup
IResource
Constructs.IConstruct
Constructs.IDependable
Back to top Generated by DocFX