Show / Hide Table of Contents

Class CfnParameterGroupMixinProps

Properties for CfnParameterGroupPropsMixin.

Inheritance
object
CfnParameterGroupMixinProps
Implements
ICfnParameterGroupMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-parametergroup.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-parametergroup.html

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

string

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-parametergroup.html#cfn-elasticache-parametergroup-cacheparametergroupfamily

Description

The description for this cache parameter group.

public string? Description { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-parametergroup.html#cfn-elasticache-parametergroup-description

Properties

A comma-delimited list of parameter name/value pairs.

public object? Properties { get; set; }
Property Value

object

Remarks

For example:

"Properties" : { "cas_disabled" : "1", "chunk_size_growth_factor" : "1.02"
}

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-parametergroup.html#cfn-elasticache-parametergroup-properties

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-parametergroup.html#cfn-elasticache-parametergroup-tags

Implements

ICfnParameterGroupMixinProps
Back to top Generated by DocFX