Class ClusterParameterGroup
A cluster parameter group.
Inherited Members
Namespace: Amazon.CDK.AWS.DocDB
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ClusterParameterGroup : Resource, IClusterParameterGroup, IResource, IConstruct, IDependable
Syntax (vb)
Public Class ClusterParameterGroup Inherits Resource Implements IClusterParameterGroup, IResource, IConstruct, IDependable
Remarks
Resource: AWS::DocDB::DBClusterParameterGroup
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.DocDB;
var clusterParameterGroup = new ClusterParameterGroup(this, "MyClusterParameterGroup", new ClusterParameterGroupProps {
Family = "family",
Parameters = new Dictionary<string, string> {
{ "parametersKey", "parameters" }
},
// the properties below are optional
DbClusterParameterGroupName = "dbClusterParameterGroupName",
Description = "description"
});
Synopsis
Constructors
ClusterParameterGroup(Construct, string, IClusterParameterGroupProps) | A cluster parameter group. |
Properties
PROPERTY_INJECTION_ID | Uniquely identifies this class. |
ParameterGroupName | The name of the parameter group. |
Methods
FromParameterGroupName(Construct, string, string) | Imports a parameter group. |
Constructors
ClusterParameterGroup(Construct, string, IClusterParameterGroupProps)
A cluster parameter group.
public ClusterParameterGroup(Construct scope, string id, IClusterParameterGroupProps props)
Parameters
- scope Construct
- id string
- props IClusterParameterGroupProps
Remarks
Resource: AWS::DocDB::DBClusterParameterGroup
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.DocDB;
var clusterParameterGroup = new ClusterParameterGroup(this, "MyClusterParameterGroup", new ClusterParameterGroupProps {
Family = "family",
Parameters = new Dictionary<string, string> {
{ "parametersKey", "parameters" }
},
// the properties below are optional
DbClusterParameterGroupName = "dbClusterParameterGroupName",
Description = "description"
});
Properties
PROPERTY_INJECTION_ID
Uniquely identifies this class.
public static string PROPERTY_INJECTION_ID { get; }
Property Value
Remarks
Resource: AWS::DocDB::DBClusterParameterGroup
ExampleMetadata: fixture=_generated
ParameterGroupName
The name of the parameter group.
public virtual string ParameterGroupName { get; }
Property Value
Remarks
Resource: AWS::DocDB::DBClusterParameterGroup
ExampleMetadata: fixture=_generated
Methods
FromParameterGroupName(Construct, string, string)
Imports a parameter group.
public static IClusterParameterGroup FromParameterGroupName(Construct scope, string id, string parameterGroupName)
Parameters
Returns
Remarks
Resource: AWS::DocDB::DBClusterParameterGroup
ExampleMetadata: fixture=_generated
Implements
Constructs.IConstruct
Constructs.IDependable