Interface IParameterGroup
A parameter group.
Inherited Members
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.AWS.RDS.dll
Syntax (csharp)
public interface IParameterGroup : IResource, IConstruct, IDependable
Syntax (vb)
Public Interface IParameterGroup
Inherits IResource, IConstruct, IConstruct, IDependable
Remarks
Represents both a cluster parameter group, and an instance parameter group.
Synopsis
Methods
AddParameter(String, String) | Adds a parameter to this group. |
BindToCluster(IParameterGroupClusterBindOptions) | Method called when this Parameter Group is used when defining a database cluster. |
BindToInstance(IParameterGroupInstanceBindOptions) | Method called when this Parameter Group is used when defining a database instance. |
Methods
AddParameter(String, String)
Adds a parameter to this group.
bool AddParameter(string key, string value)
Parameters
- key System.String
- value System.String
Returns
System.Boolean
true if the parameter was actually added (i.e., this ParameterGroup is not imported), false otherwise
Remarks
If this is an imported parameter group, this method does nothing.
BindToCluster(IParameterGroupClusterBindOptions)
Method called when this Parameter Group is used when defining a database cluster.
IParameterGroupClusterConfig BindToCluster(IParameterGroupClusterBindOptions options)
Parameters
Returns
BindToInstance(IParameterGroupInstanceBindOptions)
Method called when this Parameter Group is used when defining a database instance.
IParameterGroupInstanceConfig BindToInstance(IParameterGroupInstanceBindOptions options)
Parameters
Returns