Show / Hide Table of Contents

Interface IClusterParameterGroupProps

(experimental) Marker class for cluster parameter group.

Namespace: Amazon.CDK.AWS.Neptune.Alpha
Assembly: Amazon.CDK.AWS.Neptune.Alpha.dll
Syntax (csharp)
public interface IClusterParameterGroupProps
Syntax (vb)
Public Interface 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

Properties

ClusterParameterGroupName

(experimental) The name of the parameter group.

Description

(experimental) Description for this parameter group.

Family

(experimental) Parameter group family.

Parameters

(experimental) The parameters in this parameter group.

Properties

ClusterParameterGroupName

(experimental) The name of the parameter group.

string? ClusterParameterGroupName { get; }
Property Value

string

Remarks

Default: A CDK generated name for the parameter group

Stability: Experimental

Description

(experimental) Description for this parameter group.

string? Description { get; }
Property Value

string

Remarks

Default: a CDK generated description

Stability: Experimental

Family

(experimental) Parameter group family.

ParameterGroupFamily? Family { get; }
Property Value

ParameterGroupFamily

Remarks

Default: - NEPTUNE_1

Stability: Experimental

Parameters

(experimental) The parameters in this parameter group.

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

IDictionary<string, string>

Remarks

Stability: Experimental

Back to top Generated by DocFX