#[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 ==
.impl StructuralPartialEq for DeleteClusterSnapshotMessage
Auto Trait Implementations§
impl Freeze for DeleteClusterSnapshotMessage
impl RefUnwindSafe for DeleteClusterSnapshotMessage
impl Send for DeleteClusterSnapshotMessage
impl Sync for DeleteClusterSnapshotMessage
impl Unpin for DeleteClusterSnapshotMessage
impl UnwindSafe for DeleteClusterSnapshotMessage
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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>
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>
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 more