Show / Hide Table of Contents

Class ClusterParameterGroupProps

(experimental) Marker class for cluster parameter group.

Inheritance
System.Object
ClusterParameterGroupProps
Implements
IClusterParameterGroupProps
Namespace: Amazon.CDK.AWS.Neptune
Assembly: Amazon.CDK.AWS.Neptune.dll
Syntax (csharp)
public class ClusterParameterGroupProps : Object, IClusterParameterGroupProps
Syntax (vb)
Public Class ClusterParameterGroupProps
    Inherits Object
    Implements IClusterParameterGroupProps
Remarks

Stability: Experimental

ExampleMetadata: infused

Examples
var clusterParams = new ClusterParameterGroup(this, "ClusterParams", new ClusterParameterGroupProps {
    Description = "Cluster parameter group",
    Parameters = new Dictionary<string, string> {
        { "neptune_enable_audit_log", "1" }
    }
});

var dbParams = new ParameterGroup(this, "DbParams", new ParameterGroupProps {
    Description = "Db parameter group",
    Parameters = new Dictionary<string, string> {
        { "neptune_query_timeout", "120000" }
    }
});

var cluster = new DatabaseCluster(this, "Database", new DatabaseClusterProps {
    Vpc = vpc,
    InstanceType = InstanceType.R5_LARGE,
    ClusterParameterGroup = clusterParams,
    ParameterGroup = dbParams
});

Synopsis

Constructors

ClusterParameterGroupProps()

Properties

ClusterParameterGroupName

(experimental) The name of the parameter group.

Description

(experimental) Description for this parameter group.

Parameters

(experimental) The parameters in this parameter group.

Constructors

ClusterParameterGroupProps()

public ClusterParameterGroupProps()

Properties

ClusterParameterGroupName

(experimental) The name of the parameter group.

public string ClusterParameterGroupName { get; set; }
Property Value

System.String

Remarks

Default: A CDK generated name for the parameter group

Stability: Experimental

Description

(experimental) Description for this parameter group.

public string Description { get; set; }
Property Value

System.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

System.Collections.Generic.IDictionary<System.String, System.String>

Remarks

Stability: Experimental

Implements

IClusterParameterGroupProps
Back to top Generated by DocFX