Class: Aws::ElastiCache::Types::PendingModifiedValues

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

Overview

A group of settings that are applied to the cluster in the future, or that are currently being applied.

Instance Attribute Summary collapse

Instance Attribute Details

#cache_node_ids_to_removeArray<String>

A list of cache node IDs that are being removed (or will be removed) from the cluster. A node ID is a 4-digit numeric identifier (0001, 0002, etc.).

Returns:

  • (Array<String>)


4725
4726
4727
4728
4729
4730
4731
# File 'lib/aws-sdk-elasticache/types.rb', line 4725

class PendingModifiedValues < Struct.new(
  :num_cache_nodes,
  :cache_node_ids_to_remove,
  :engine_version,
  :cache_node_type)
  include Aws::Structure
end

#cache_node_typeString

The cache node type that this cluster or replication group is scaled to.

Returns:

  • (String)


4725
4726
4727
4728
4729
4730
4731
# File 'lib/aws-sdk-elasticache/types.rb', line 4725

class PendingModifiedValues < Struct.new(
  :num_cache_nodes,
  :cache_node_ids_to_remove,
  :engine_version,
  :cache_node_type)
  include Aws::Structure
end

#engine_versionString

The new cache engine version that the cluster runs.

Returns:

  • (String)


4725
4726
4727
4728
4729
4730
4731
# File 'lib/aws-sdk-elasticache/types.rb', line 4725

class PendingModifiedValues < Struct.new(
  :num_cache_nodes,
  :cache_node_ids_to_remove,
  :engine_version,
  :cache_node_type)
  include Aws::Structure
end

#num_cache_nodesInteger

The new number of cache nodes for the cluster.

For clusters running Redis, this value must be 1. For clusters running Memcached, this value must be between 1 and 20.

Returns:

  • (Integer)


4725
4726
4727
4728
4729
4730
4731
# File 'lib/aws-sdk-elasticache/types.rb', line 4725

class PendingModifiedValues < Struct.new(
  :num_cache_nodes,
  :cache_node_ids_to_remove,
  :engine_version,
  :cache_node_type)
  include Aws::Structure
end