Interface ICfnParameterGroupProps
Properties for defining a CfnParameterGroup
.
Namespace: Amazon.CDK.AWS.MemoryDB
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnParameterGroupProps
Syntax (vb)
Public Interface 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
Properties
Description | A description of the parameter group. |
Family | The name of the parameter group family that this parameter group is compatible with. |
ParameterGroupName | 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. |
Properties
Description
A description of the parameter group.
virtual string Description { get; }
Property Value
System.String
Remarks
Family
The name of the parameter group family that this parameter group is compatible with.
string Family { get; }
Property Value
System.String
Remarks
ParameterGroupName
The name of the parameter group.
string ParameterGroupName { get; }
Property Value
System.String
Remarks
Parameters
Returns the detailed parameter list for the parameter group.
virtual object Parameters { get; }
Property Value
System.Object
Remarks
Tags
An array of key-value pairs to apply to this resource.
virtual ICfnTag[] Tags { get; }
Property Value
ICfnTag[]