Interface IParameterGroupProps
(experimental) Marker class for cluster parameter group.
Namespace: Amazon.CDK.AWS.Neptune.Alpha
Assembly: Amazon.CDK.AWS.Neptune.Alpha.dll
Syntax (csharp)
public interface IParameterGroupProps
Syntax (vb)
Public Interface IParameterGroupProps
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
Description | (experimental) Description for this parameter group. |
Family | (experimental) Parameter group family. |
ParameterGroupName | (experimental) The name of the parameter group. |
Parameters | (experimental) The parameters in this parameter group. |
Properties
Description
(experimental) Description for this parameter group.
virtual string Description { get; }
Property Value
System.String
Remarks
Default: a CDK generated description
Stability: Experimental
Family
(experimental) Parameter group family.
virtual ParameterGroupFamily Family { get; }
Property Value
Remarks
Default: - NEPTUNE_1
Stability: Experimental
ParameterGroupName
(experimental) The name of the parameter group.
virtual string ParameterGroupName { get; }
Property Value
System.String
Remarks
Default: A CDK generated name for the parameter group
Stability: Experimental
Parameters
(experimental) The parameters in this parameter group.
IDictionary<string, string> Parameters { get; }
Property Value
System.Collections.Generic.IDictionary<System.String, System.String>
Remarks
Stability: Experimental