Class: Aws::ElastiCache::Types::RebootCacheClusterMessage

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

Overview

Represents the input of a ‘RebootCacheCluster` operation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#cache_cluster_idString

The cluster identifier. This parameter is stored as a lowercase string.

Returns:

  • (String)


7457
7458
7459
7460
7461
7462
# File 'lib/aws-sdk-elasticache/types.rb', line 7457

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

#cache_node_ids_to_rebootArray<String>

A list of cache node IDs to reboot. A node ID is a numeric identifier (0001, 0002, etc.). To reboot an entire cluster, specify all of the cache node IDs.

Returns:

  • (Array<String>)


7457
7458
7459
7460
7461
7462
# File 'lib/aws-sdk-elasticache/types.rb', line 7457

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