Show / Hide Table of Contents

Class ClusterParameterGroupProps

(experimental) Properties for a parameter group.

Inheritance
object
ClusterParameterGroupProps
Implements
IClusterParameterGroupProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Redshift.Alpha
Assembly: Amazon.CDK.AWS.Redshift.Alpha.dll
Syntax (csharp)
public class ClusterParameterGroupProps : IClusterParameterGroupProps
Syntax (vb)
Public Class ClusterParameterGroupProps Implements IClusterParameterGroupProps
Remarks

Stability: Experimental

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

ClusterParameterGroupProps()

(experimental) Properties for a parameter group.

Properties

Description

(experimental) Description for this parameter group.

Parameters

(experimental) The parameters in this parameter group.

Constructors

ClusterParameterGroupProps()

(experimental) Properties for a parameter group.

public ClusterParameterGroupProps()
Remarks

Stability: Experimental

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");

Properties

Description

(experimental) Description for this parameter group.

public string? Description { get; set; }
Property Value

string

Remarks

Default: a CDK generated description

Stability: Experimental

Parameters

(experimental) The parameters in this parameter group.

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

IDictionary<string, string>

Remarks

Stability: Experimental

Implements

IClusterParameterGroupProps
Back to top Generated by DocFX