pub struct DeleteCacheClusterMessage {
pub cache_cluster_id: String,
pub final_snapshot_identifier: Option<String>,
}
Expand description
Represents the input of a DeleteCacheCluster
operation.
Fields§
§cache_cluster_id: 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.
Trait Implementations§
Source§impl Clone for DeleteCacheClusterMessage
impl Clone for DeleteCacheClusterMessage
Source§fn clone(&self) -> DeleteCacheClusterMessage
fn clone(&self) -> DeleteCacheClusterMessage
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 DeleteCacheClusterMessage
impl Debug for DeleteCacheClusterMessage
Source§impl Default for DeleteCacheClusterMessage
impl Default for DeleteCacheClusterMessage
Source§fn default() -> DeleteCacheClusterMessage
fn default() -> DeleteCacheClusterMessage
Returns the “default value” for a type. Read more
impl StructuralPartialEq for DeleteCacheClusterMessage
Auto Trait Implementations§
impl Freeze for DeleteCacheClusterMessage
impl RefUnwindSafe for DeleteCacheClusterMessage
impl Send for DeleteCacheClusterMessage
impl Sync for DeleteCacheClusterMessage
impl Unpin for DeleteCacheClusterMessage
impl UnwindSafe for DeleteCacheClusterMessage
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