Class CfnParameterGroupProps
Properties for defining a CfnParameterGroup
.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.MemoryDB
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnParameterGroupProps : Object, ICfnParameterGroupProps
Syntax (vb)
Public Class CfnParameterGroupProps
Inherits Object
Implements ICfnParameterGroupProps
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.MemoryDB;
var parameters;
var cfnParameterGroupProps = new CfnParameterGroupProps {
Family = "family",
ParameterGroupName = "parameterGroupName",
// the properties below are optional
Description = "description",
Parameters = parameters,
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
Cfn |
Properties
Description | A description of the parameter group. |
Family | The name of the parameter group family that this parameter group is compatible with. |
Parameter |
The name of the parameter group. |
Parameters | Returns the detailed parameter list for the parameter group. |
Tags | An array of key-value pairs to apply to this resource. |
Constructors
CfnParameterGroupProps()
public CfnParameterGroupProps()
Properties
Description
A description of the parameter group.
public string Description { get; set; }
Property Value
System.
Remarks
Family
The name of the parameter group family that this parameter group is compatible with.
public string Family { get; set; }
Property Value
System.
Remarks
ParameterGroupName
The name of the parameter group.
public string ParameterGroupName { get; set; }
Property Value
System.
Remarks
Parameters
Returns the detailed parameter list for the parameter group.
public object Parameters { get; set; }
Property Value
System.
Remarks
Tags
An array of key-value pairs to apply to this resource.
public ICfnTag[] Tags { get; set; }
Property Value
ICfn