#[non_exhaustive]pub struct DeleteClusterSnapshotMessage {
pub snapshot_identifier: Option<String>,
pub snapshot_cluster_identifier: Option<String>,
}
Expand description
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.snapshot_identifier: Option<String>
The unique identifier of the manual snapshot to be deleted.
Constraints: Must be the name of an existing snapshot that is in the available
, failed
, or cancelled
state.
snapshot_cluster_identifier: Option<String>
The unique identifier of the cluster the snapshot was created from. This parameter is required if your IAM user has a policy containing a snapshot resource element that specifies anything other than * for the cluster name.
Constraints: Must be the name of valid cluster.
Implementations§
source§impl DeleteClusterSnapshotMessage
impl DeleteClusterSnapshotMessage
sourcepub fn snapshot_identifier(&self) -> Option<&str>
pub fn snapshot_identifier(&self) -> Option<&str>
The unique identifier of the manual snapshot to be deleted.
Constraints: Must be the name of an existing snapshot that is in the available
, failed
, or cancelled
state.
sourcepub fn snapshot_cluster_identifier(&self) -> Option<&str>
pub fn snapshot_cluster_identifier(&self) -> Option<&str>
The unique identifier of the cluster the snapshot was created from. This parameter is required if your IAM user has a policy containing a snapshot resource element that specifies anything other than * for the cluster name.
Constraints: Must be the name of valid cluster.
source§impl DeleteClusterSnapshotMessage
impl DeleteClusterSnapshotMessage
sourcepub fn builder() -> DeleteClusterSnapshotMessageBuilder
pub fn builder() -> DeleteClusterSnapshotMessageBuilder
Creates a new builder-style object to manufacture DeleteClusterSnapshotMessage
.
Trait Implementations§
source§impl Clone for DeleteClusterSnapshotMessage
impl Clone for DeleteClusterSnapshotMessage
source§fn clone(&self) -> DeleteClusterSnapshotMessage
fn clone(&self) -> DeleteClusterSnapshotMessage
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DeleteClusterSnapshotMessage
impl Debug for DeleteClusterSnapshotMessage
source§impl PartialEq for DeleteClusterSnapshotMessage
impl PartialEq for DeleteClusterSnapshotMessage
source§fn eq(&self, other: &DeleteClusterSnapshotMessage) -> bool
fn eq(&self, other: &DeleteClusterSnapshotMessage) -> bool
self
and other
values to be equal, and is used
by ==
.