Show / Hide Table of Contents

Class CfnParameterGroupProps

Properties for defining a CfnParameterGroup.

Inheritance
object
CfnParameterGroupProps
Implements
ICfnParameterGroupProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.ElastiCache
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnParameterGroupProps : ICfnParameterGroupProps
Syntax (vb)
Public Class CfnParameterGroupProps Implements ICfnParameterGroupProps
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.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 CfnParameterGroup.

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

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.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

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

ICfnParameterGroupProps
Back to top Generated by DocFX