Interface ICfnParameterGroupMixinProps
Properties for CfnParameterGroupPropsMixin.
Namespace: Amazon.CDK.Mixins.Preview.AWS.MemoryDB.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface ICfnParameterGroupMixinProps
Syntax (vb)
Public Interface ICfnParameterGroupMixinProps
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.Mixins.Preview.AWS.MemoryDB.Mixins;
var parameters;
var cfnParameterGroupMixinProps = new CfnParameterGroupMixinProps {
Description = "description",
Family = "family",
ParameterGroupName = "parameterGroupName",
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.
string? Description { get; }
Property Value
Remarks
Family
The name of the parameter group family that this parameter group is compatible with.
string? Family { get; }
Property Value
Remarks
ParameterGroupName
The name of the parameter group.
string? ParameterGroupName { get; }
Property Value
Remarks
Parameters
Returns the detailed parameter list for the parameter group.
object? Parameters { get; }
Property Value
Remarks
Tags
An array of key-value pairs to apply to this resource.
ICfnTag[]? Tags { get; }
Property Value
ICfnTag[]