Struct aws_sdk_elasticache::input::RebootCacheClusterInput
source · [−]#[non_exhaustive]pub struct RebootCacheClusterInput { /* private fields */ }Expand description
Represents the input of a RebootCacheCluster operation.
Implementations
sourceimpl RebootCacheClusterInput
impl RebootCacheClusterInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<RebootCacheCluster, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<RebootCacheCluster, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<RebootCacheCluster>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture RebootCacheClusterInput.
sourceimpl RebootCacheClusterInput
impl RebootCacheClusterInput
sourcepub fn cache_cluster_id(&self) -> Option<&str>
pub fn cache_cluster_id(&self) -> Option<&str>
The cluster identifier. This parameter is stored as a lowercase string.
sourcepub fn cache_node_ids_to_reboot(&self) -> Option<&[String]>
pub fn cache_node_ids_to_reboot(&self) -> Option<&[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
sourceimpl Clone for RebootCacheClusterInput
impl Clone for RebootCacheClusterInput
sourcefn clone(&self) -> RebootCacheClusterInput
fn clone(&self) -> RebootCacheClusterInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for RebootCacheClusterInput
impl Debug for RebootCacheClusterInput
sourceimpl PartialEq<RebootCacheClusterInput> for RebootCacheClusterInput
impl PartialEq<RebootCacheClusterInput> for RebootCacheClusterInput
sourcefn eq(&self, other: &RebootCacheClusterInput) -> bool
fn eq(&self, other: &RebootCacheClusterInput) -> bool
impl StructuralPartialEq for RebootCacheClusterInput
Auto Trait Implementations
impl RefUnwindSafe for RebootCacheClusterInput
impl Send for RebootCacheClusterInput
impl Sync for RebootCacheClusterInput
impl Unpin for RebootCacheClusterInput
impl UnwindSafe for RebootCacheClusterInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more