Class CfnParameterGroupMixinProps
Properties for CfnParameterGroupPropsMixin.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.ElastiCache
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnParameterGroupMixinProps : ICfnParameterGroupMixinProps
Syntax (vb)
Public Class CfnParameterGroupMixinProps Implements 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.CfnPropertyMixins.AWS.ElastiCache;
var cfnParameterGroupMixinProps = new CfnParameterGroupMixinProps {
CacheParameterGroupFamily = "cacheParameterGroupFamily",
Description = "description",
Properties = new Dictionary<string, string> {
{ "propertiesKey", "properties" }
},
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
| CfnParameterGroupMixinProps() | Properties for CfnParameterGroupPropsMixin. |
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
CfnParameterGroupMixinProps()
Properties for CfnParameterGroupPropsMixin.
public CfnParameterGroupMixinProps()
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.CfnPropertyMixins.AWS.ElastiCache;
var cfnParameterGroupMixinProps = new CfnParameterGroupMixinProps {
CacheParameterGroupFamily = "cacheParameterGroupFamily",
Description = "description",
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.