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.

Lists all available node types that you can scale your Redis cluster's or replication group's current node type.

When you use the ModifyCacheCluster or ModifyReplicationGroup operations to scale your cluster or replication group, the value of the CacheNodeType parameter must be one of the node types returned by this operation.

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to ListAllowedNodeTypeModificationsAsync.

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

Syntax

C#
public abstract ListAllowedNodeTypeModificationsResponse ListAllowedNodeTypeModifications(
         ListAllowedNodeTypeModificationsRequest request
)

Parameters

request
Type: Amazon.ElastiCache.Model.ListAllowedNodeTypeModificationsRequest

Container for the necessary parameters to execute the ListAllowedNodeTypeModifications service method.

Return Value


The response from the ListAllowedNodeTypeModifications service method, as returned by ElastiCache.

Exceptions

ExceptionCondition
CacheClusterNotFoundException The requested cluster ID does not refer to an existing cluster.
InvalidParameterCombinationException Two or more incompatible parameters were specified.
InvalidParameterValueException The value for a parameter is invalid.
ReplicationGroupNotFoundException The specified replication group does not exist.

Examples

Lists all available node types that you can scale your Redis cluster's or replication group's current node type up to.

ListAllowedNodeTypeModifications


var client = new AmazonElastiCacheClient();
var response = client.ListAllowedNodeTypeModifications(new ListAllowedNodeTypeModificationsRequest 
{
    ReplicationGroupId = "myreplgroup"
});

List<string> scaleUpModifications = response.ScaleUpModifications;

            

Lists all available node types that you can scale your Redis cluster's or replication group's current node type up to.

ListAllowedNodeTypeModifications


var client = new AmazonElastiCacheClient();
var response = client.ListAllowedNodeTypeModifications(new ListAllowedNodeTypeModificationsRequest 
{
    ReplicationGroupId = "myreplgroup"
});

List<string> scaleUpModifications = response.ScaleUpModifications;

            

Version Information

.NET Framework:
Supported in: 4.5, 4.0, 3.5

See Also