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
pub 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
>
Creates a new builder-style object to manufacture DeleteCacheClusterInput
The cluster identifier for the cluster to be deleted. This parameter is not case sensitive.
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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more