Class: Aws::ElastiCache::Types::ListAllowedNodeTypeModificationsMessage

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb

Overview

The input parameters for the ListAllowedNodeTypeModifications operation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#cache_cluster_idString

The name of the cluster you want to scale up to a larger node instanced type. ElastiCache uses the cluster id to identify the current node type of this cluster and from that to create a list of node types you can scale up to.

You must provide a value for either the CacheClusterId or the ReplicationGroupId.

Returns:

  • (String)


5642
5643
5644
5645
5646
5647
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 5642

class ListAllowedNodeTypeModificationsMessage < Struct.new(
  :cache_cluster_id,
  :replication_group_id)
  SENSITIVE = []
  include Aws::Structure
end

#replication_group_idString

The name of the replication group want to scale up to a larger node type. ElastiCache uses the replication group id to identify the current node type being used by this replication group, and from that to create a list of node types you can scale up to.

You must provide a value for either the CacheClusterId or the ReplicationGroupId.

Returns:

  • (String)


5642
5643
5644
5645
5646
5647
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 5642

class ListAllowedNodeTypeModificationsMessage < Struct.new(
  :cache_cluster_id,
  :replication_group_id)
  SENSITIVE = []
  include Aws::Structure
end