pub struct RebootCacheClusterMessage {
pub cache_cluster_id: String,
pub cache_node_ids_to_reboot: Vec<String>,
}
Expand description
Represents the input of a RebootCacheCluster
operation.
Fields§
§cache_cluster_id: String
The cluster identifier. This parameter is stored as a lowercase string.
cache_node_ids_to_reboot: Vec<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.
Trait Implementations§
Source§impl Clone for RebootCacheClusterMessage
impl Clone for RebootCacheClusterMessage
Source§fn clone(&self) -> RebootCacheClusterMessage
fn clone(&self) -> RebootCacheClusterMessage
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RebootCacheClusterMessage
impl Debug for RebootCacheClusterMessage
Source§impl Default for RebootCacheClusterMessage
impl Default for RebootCacheClusterMessage
Source§fn default() -> RebootCacheClusterMessage
fn default() -> RebootCacheClusterMessage
Returns the “default value” for a type. Read more
impl StructuralPartialEq for RebootCacheClusterMessage
Auto Trait Implementations§
impl Freeze for RebootCacheClusterMessage
impl RefUnwindSafe for RebootCacheClusterMessage
impl Send for RebootCacheClusterMessage
impl Sync for RebootCacheClusterMessage
impl Unpin for RebootCacheClusterMessage
impl UnwindSafe for RebootCacheClusterMessage
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more