Class CfnParameterGroupProps
Properties for defining a CfnParameterGroup.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.ElastiCache
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnParameterGroupProps : ICfnParameterGroupProps
Syntax (vb)
Public Class CfnParameterGroupProps 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.ElastiCache;
var cfnParameterGroupProps = new CfnParameterGroupProps {
CacheParameterGroupFamily = "cacheParameterGroupFamily",
Description = "description",
// the properties below are optional
Properties = new Dictionary<string, string> {
{ "propertiesKey", "properties" }
},
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
| CfnParameterGroupProps() | Properties for defining a |
Properties
| CacheParameterGroupFamily | The name of the cache parameter group family that this cache parameter group is compatible with. |
| Description | The description for this cache parameter group. |
| Properties | A comma-delimited list of parameter name/value pairs. |
| Tags | A tag that can be added to an ElastiCache parameter group. |
Constructors
CfnParameterGroupProps()
Properties for defining a CfnParameterGroup.
public CfnParameterGroupProps()
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.ElastiCache;
var cfnParameterGroupProps = new CfnParameterGroupProps {
CacheParameterGroupFamily = "cacheParameterGroupFamily",
Description = "description",
// the properties below are optional
Properties = new Dictionary<string, string> {
{ "propertiesKey", "properties" }
},
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Properties
CacheParameterGroupFamily
The name of the cache parameter group family that this cache parameter group is compatible with.
public string CacheParameterGroupFamily { get; set; }
Property Value
Remarks
Valid values are: valkey8 | valkey7 | memcached1.4 | memcached1.5 | memcached1.6 | redis2.6 | redis2.8 | redis3.2 | redis4.0 | redis5.0 | redis6.x | redis7
Description
The description for this cache parameter group.
public string Description { get; set; }
Property Value
Remarks
Properties
A comma-delimited list of parameter name/value pairs.
public object? Properties { get; set; }
Property Value
Remarks
For example:
"Properties" : { "cas_disabled" : "1", "chunk_size_growth_factor" : "1.02"
}
Type union: either Dictionary<string, string> or IResolvable
Tags
A tag that can be added to an ElastiCache parameter group.
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]
Remarks
Tags are composed of a Key/Value pair. You can use tags to categorize and track all your parameter groups. A tag with a null Value is permitted.