Class CfnDBClusterParameterGroupProps
Properties for defining a CfnDBClusterParameterGroup
.
Inheritance
System.Object
CfnDBClusterParameterGroupProps
Implements
Namespace: Amazon.CDK.AWS.DocDB
Assembly: Amazon.CDK.AWS.DocDB.dll
Syntax (csharp)
public class CfnDBClusterParameterGroupProps : Object, ICfnDBClusterParameterGroupProps
Syntax (vb)
Public Class CfnDBClusterParameterGroupProps
Inherits Object
Implements ICfnDBClusterParameterGroupProps
Remarks
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 parameters;
var cfnDBClusterParameterGroupProps = new CfnDBClusterParameterGroupProps {
Description = "description",
Family = "family",
Parameters = parameters,
// the properties below are optional
Name = "name",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
CfnDBClusterParameterGroupProps() |
Properties
Description | The description for the cluster parameter group. |
Family | The cluster parameter group family name. |
Name | The name of the DB cluster parameter group. |
Parameters | Provides a list of parameters for the cluster parameter group. |
Tags | The tags to be assigned to the cluster parameter group. |
Constructors
CfnDBClusterParameterGroupProps()
public CfnDBClusterParameterGroupProps()
Properties
Description
The description for the cluster parameter group.
public string Description { get; set; }
Property Value
System.String
Remarks
Family
The cluster parameter group family name.
public string Family { get; set; }
Property Value
System.String
Remarks
Name
The name of the DB cluster parameter group.
public string Name { get; set; }
Property Value
System.String
Remarks
Constraints:
This value is stored as a lowercase string.
Parameters
Provides a list of parameters for the cluster parameter group.
public object Parameters { get; set; }
Property Value
System.Object
Remarks
Tags
The tags to be assigned to the cluster parameter group.
public ICfnTag[] Tags { get; set; }
Property Value
ICfnTag[]