Class: Aws::ElastiCache::Types::RebootCacheClusterMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElastiCache::Types::RebootCacheClusterMessage
- 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
-
#cache_cluster_id ⇒ String
The cluster identifier.
-
#cache_node_ids_to_reboot ⇒ Array<String>
A list of cache node IDs to reboot.
Instance Attribute Details
#cache_cluster_id ⇒ String
The cluster identifier. This parameter is stored as a lowercase string.
7499 7500 7501 7502 7503 7504 |
# File 'lib/aws-sdk-elasticache/types.rb', line 7499 class RebootCacheClusterMessage < Struct.new( :cache_cluster_id, :cache_node_ids_to_reboot) SENSITIVE = [] include Aws::Structure end |
#cache_node_ids_to_reboot ⇒ Array<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.
7499 7500 7501 7502 7503 7504 |
# File 'lib/aws-sdk-elasticache/types.rb', line 7499 class RebootCacheClusterMessage < Struct.new( :cache_cluster_id, :cache_node_ids_to_reboot) SENSITIVE = [] include Aws::Structure end |