#[non_exhaustive]pub struct DeleteCacheClusterInput {
    pub cache_cluster_id: Option<String>,
    pub final_snapshot_identifier: Option<String>,
}Expand description
Represents the input of a DeleteCacheCluster operation.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional 
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.cache_cluster_id: Option<String>The cluster identifier for the cluster to be deleted. This parameter is not case sensitive.
final_snapshot_identifier: Option<String>The user-supplied name of a final cluster snapshot. This is the unique name that identifies the snapshot. ElastiCache creates the snapshot, and then deletes the cluster immediately afterward.
Implementations§
source§impl DeleteCacheClusterInput
 
impl DeleteCacheClusterInput
sourcepub fn cache_cluster_id(&self) -> Option<&str>
 
pub fn cache_cluster_id(&self) -> Option<&str>
The cluster identifier for the cluster to be deleted. This parameter is not case sensitive.
sourcepub fn final_snapshot_identifier(&self) -> Option<&str>
 
pub fn final_snapshot_identifier(&self) -> Option<&str>
The user-supplied name of a final cluster snapshot. This is the unique name that identifies the snapshot. ElastiCache creates the snapshot, and then deletes the cluster immediately afterward.
source§impl DeleteCacheClusterInput
 
impl DeleteCacheClusterInput
sourcepub fn builder() -> DeleteCacheClusterInputBuilder
 
pub fn builder() -> DeleteCacheClusterInputBuilder
Creates a new builder-style object to manufacture DeleteCacheClusterInput.
Trait Implementations§
source§impl Clone for DeleteCacheClusterInput
 
impl Clone for DeleteCacheClusterInput
source§fn clone(&self) -> DeleteCacheClusterInput
 
fn clone(&self) -> DeleteCacheClusterInput
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 DeleteCacheClusterInput
 
impl Debug for DeleteCacheClusterInput
source§impl PartialEq for DeleteCacheClusterInput
 
impl PartialEq for DeleteCacheClusterInput
source§fn eq(&self, other: &DeleteCacheClusterInput) -> bool
 
fn eq(&self, other: &DeleteCacheClusterInput) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DeleteCacheClusterInput
Auto Trait Implementations§
impl Freeze for DeleteCacheClusterInput
impl RefUnwindSafe for DeleteCacheClusterInput
impl Send for DeleteCacheClusterInput
impl Sync for DeleteCacheClusterInput
impl Unpin for DeleteCacheClusterInput
impl UnwindSafe for DeleteCacheClusterInput
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
source§impl<T> Instrument for T
 
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.