Struct aws_sdk_elasticache::input::DeleteCacheClusterInput
source · [−]#[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
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
sourceimpl DeleteCacheClusterInput
impl DeleteCacheClusterInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DeleteCacheCluster, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DeleteCacheCluster, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<DeleteCacheCluster
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DeleteCacheClusterInput
sourceimpl 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.
Trait Implementations
sourceimpl Clone for DeleteCacheClusterInput
impl Clone for DeleteCacheClusterInput
sourcefn clone(&self) -> DeleteCacheClusterInput
fn clone(&self) -> DeleteCacheClusterInput
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 more
sourceimpl Debug for DeleteCacheClusterInput
impl Debug for DeleteCacheClusterInput
sourceimpl PartialEq<DeleteCacheClusterInput> for DeleteCacheClusterInput
impl PartialEq<DeleteCacheClusterInput> for DeleteCacheClusterInput
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &DeleteCacheClusterInput) -> bool
fn ne(&self, other: &DeleteCacheClusterInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for DeleteCacheClusterInput
Auto Trait Implementations
impl RefUnwindSafe for DeleteCacheClusterInput
impl Send for DeleteCacheClusterInput
impl Sync for DeleteCacheClusterInput
impl Unpin for DeleteCacheClusterInput
impl UnwindSafe for DeleteCacheClusterInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more