Struct aws_sdk_rds::input::DeleteDbClusterInput  
source · [−]#[non_exhaustive]pub struct DeleteDbClusterInput {
    pub db_cluster_identifier: Option<String>,
    pub skip_final_snapshot: bool,
    pub final_db_snapshot_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.db_cluster_identifier: Option<String>The DB cluster identifier for the DB cluster to be deleted. This parameter isn't case-sensitive.
Constraints:
-  Must match an existing DBClusterIdentifier. 
skip_final_snapshot: boolA value that indicates whether to skip the creation of a final DB cluster snapshot before the DB cluster is deleted. If skip is specified, no DB cluster snapshot is created. If skip isn't specified, a DB cluster snapshot is created before the DB cluster is deleted. By default, skip isn't specified, and the DB cluster snapshot is created. By default, this parameter is disabled.
You must specify a FinalDBSnapshotIdentifier parameter if SkipFinalSnapshot is disabled.
final_db_snapshot_identifier: Option<String> The DB cluster snapshot identifier of the new DB cluster snapshot created when SkipFinalSnapshot is disabled. 
 Specifying this parameter and also skipping the creation of a final DB cluster snapshot with the SkipFinalShapshot parameter results in an error.
Constraints:
-  Must be 1 to 255 letters, numbers, or hyphens. 
-  First character must be a letter 
-  Can't end with a hyphen or contain two consecutive hyphens 
Implementations
sourceimpl DeleteDbClusterInput
 
impl DeleteDbClusterInput
sourcepub async fn make_operation(
    &self, 
    _config: &Config
) -> Result<Operation<DeleteDBCluster, AwsErrorRetryPolicy>, BuildError>
 
pub async fn make_operation(
    &self, 
    _config: &Config
) -> Result<Operation<DeleteDBCluster, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<DeleteDBCluster>
sourcepub fn builder() -> Builder
 
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DeleteDbClusterInput
sourceimpl DeleteDbClusterInput
 
impl DeleteDbClusterInput
sourcepub fn db_cluster_identifier(&self) -> Option<&str>
 
pub fn db_cluster_identifier(&self) -> Option<&str>
The DB cluster identifier for the DB cluster to be deleted. This parameter isn't case-sensitive.
Constraints:
-  Must match an existing DBClusterIdentifier. 
sourcepub fn skip_final_snapshot(&self) -> bool
 
pub fn skip_final_snapshot(&self) -> bool
A value that indicates whether to skip the creation of a final DB cluster snapshot before the DB cluster is deleted. If skip is specified, no DB cluster snapshot is created. If skip isn't specified, a DB cluster snapshot is created before the DB cluster is deleted. By default, skip isn't specified, and the DB cluster snapshot is created. By default, this parameter is disabled.
You must specify a FinalDBSnapshotIdentifier parameter if SkipFinalSnapshot is disabled.
sourcepub fn final_db_snapshot_identifier(&self) -> Option<&str>
 
pub fn final_db_snapshot_identifier(&self) -> Option<&str>
 The DB cluster snapshot identifier of the new DB cluster snapshot created when SkipFinalSnapshot is disabled. 
 Specifying this parameter and also skipping the creation of a final DB cluster snapshot with the SkipFinalShapshot parameter results in an error.
Constraints:
-  Must be 1 to 255 letters, numbers, or hyphens. 
-  First character must be a letter 
-  Can't end with a hyphen or contain two consecutive hyphens 
Trait Implementations
sourceimpl Clone for DeleteDbClusterInput
 
impl Clone for DeleteDbClusterInput
sourcefn clone(&self) -> DeleteDbClusterInput
 
fn clone(&self) -> DeleteDbClusterInput
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 DeleteDbClusterInput
 
impl Debug for DeleteDbClusterInput
sourceimpl PartialEq<DeleteDbClusterInput> for DeleteDbClusterInput
 
impl PartialEq<DeleteDbClusterInput> for DeleteDbClusterInput
sourcefn eq(&self, other: &DeleteDbClusterInput) -> bool
 
fn eq(&self, other: &DeleteDbClusterInput) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &DeleteDbClusterInput) -> bool
 
fn ne(&self, other: &DeleteDbClusterInput) -> bool
This method tests for !=.
impl StructuralPartialEq for DeleteDbClusterInput
Auto Trait Implementations
impl RefUnwindSafe for DeleteDbClusterInput
impl Send for DeleteDbClusterInput
impl Sync for DeleteDbClusterInput
impl Unpin for DeleteDbClusterInput
impl UnwindSafe for DeleteDbClusterInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
    T: ?Sized, 
 
impl<T> BorrowMut<T> for T where
    T: ?Sized, 
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
 
pub 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> ToOwned for T where
    T: Clone, 
 
impl<T> ToOwned for T where
    T: Clone, 
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
 
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
 
pub fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more
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