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

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

Overview

Note:

When making an API call, you may pass RebootCacheClusterMessage data as a hash:

{
  cache_cluster_id: "String", # required
  cache_node_ids_to_reboot: ["String"], # required
}

Represents the input of a ‘RebootCacheCluster` operation.

Instance Attribute Summary collapse

Instance Attribute Details

#cache_cluster_idString

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

Returns:

  • (String)


4814
4815
4816
4817
4818
# File 'lib/aws-sdk-elasticache/types.rb', line 4814

class RebootCacheClusterMessage < Struct.new(
  :cache_cluster_id,
  :cache_node_ids_to_reboot)
  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>)


4814
4815
4816
4817
4818
# File 'lib/aws-sdk-elasticache/types.rb', line 4814

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