AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Container for the parameters to the CreateCacheParameterGroup operation. Creates a new Amazon ElastiCache cache parameter group. An ElastiCache cache parameter group is a collection of parameters and their values that are applied to all of the nodes in any cluster or replication group using the CacheParameterGroup.

A newly created CacheParameterGroup is an exact duplicate of the default parameter group for the CacheParameterGroupFamily. To customize the newly created CacheParameterGroup you can change the values of specific parameters. For more information, see:

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.ElastiCache.AmazonElastiCacheRequest
      Amazon.ElastiCache.Model.CreateCacheParameterGroupRequest

Namespace: Amazon.ElastiCache.Model
Assembly: AWSSDK.ElastiCache.dll
Version: 3.x.y.z

Syntax

C#
public class CreateCacheParameterGroupRequest : AmazonElastiCacheRequest
         IAmazonWebServiceRequest

The CreateCacheParameterGroupRequest type exposes the following members

Constructors

NameDescription
Public Method CreateCacheParameterGroupRequest()

Empty constructor used to set properties independently even when a simple constructor is available

Public Method CreateCacheParameterGroupRequest(string, string, string)

Instantiates CreateCacheParameterGroupRequest with the parameterized properties

Properties

NameTypeDescription
Public Property CacheParameterGroupFamily System.String

Gets and sets the property CacheParameterGroupFamily.

The name of the cache parameter group family that the cache parameter group can be used with.

Valid values are: memcached1.4 | memcached1.5 | memcached1.6 | redis2.6 | redis2.8 | redis3.2 | redis4.0 | redis5.0 | redis6.x | redis7

Public Property CacheParameterGroupName System.String

Gets and sets the property CacheParameterGroupName.

A user-specified name for the cache parameter group.

Public Property Description System.String

Gets and sets the property Description.

A user-specified description for the cache parameter group.

Public Property Tags System.Collections.Generic.List<Amazon.ElastiCache.Model.Tag>

Gets and sets the property Tags.

A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.

Examples

Creates the Amazon ElastiCache parameter group custom-redis2-8.

CreateCacheParameterGroup


var client = new AmazonElastiCacheClient();
var response = client.CreateCacheParameterGroup(new CreateCacheParameterGroupRequest 
{
    CacheParameterGroupFamily = "redis2.8",
    CacheParameterGroupName = "custom-redis2-8",
    Description = "Custom Redis 2.8 parameter group."
});

CacheParameterGroup cacheParameterGroup = response.CacheParameterGroup;

            

Version Information

.NET:
Supported in: 8.0 and newer, Core 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5 and newer, 3.5