#[non_exhaustive]pub struct BatchModifyClusterSnapshotsInput {
pub snapshot_identifier_list: Option<Vec<String>>,
pub manual_snapshot_retention_period: Option<i32>,
pub force: bool,
}
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_list: Option<Vec<String>>
A list of snapshot identifiers you want to modify.
manual_snapshot_retention_period: Option<i32>
The number of days that a manual snapshot is retained. If you specify the value -1, the manual snapshot is retained indefinitely.
The number must be either -1 or an integer between 1 and 3,653.
If you decrease the manual snapshot retention period from its current value, existing manual snapshots that fall outside of the new retention period will return an error. If you want to suppress the errors and delete the snapshots, use the force option.
force: bool
A boolean value indicating whether to override an exception if the retention period has passed.
Implementations
sourceimpl BatchModifyClusterSnapshotsInput
impl BatchModifyClusterSnapshotsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<BatchModifyClusterSnapshots, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<BatchModifyClusterSnapshots, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<BatchModifyClusterSnapshots
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture BatchModifyClusterSnapshotsInput
sourceimpl BatchModifyClusterSnapshotsInput
impl BatchModifyClusterSnapshotsInput
sourcepub fn snapshot_identifier_list(&self) -> Option<&[String]>
pub fn snapshot_identifier_list(&self) -> Option<&[String]>
A list of snapshot identifiers you want to modify.
sourcepub fn manual_snapshot_retention_period(&self) -> Option<i32>
pub fn manual_snapshot_retention_period(&self) -> Option<i32>
The number of days that a manual snapshot is retained. If you specify the value -1, the manual snapshot is retained indefinitely.
The number must be either -1 or an integer between 1 and 3,653.
If you decrease the manual snapshot retention period from its current value, existing manual snapshots that fall outside of the new retention period will return an error. If you want to suppress the errors and delete the snapshots, use the force option.
Trait Implementations
sourceimpl Clone for BatchModifyClusterSnapshotsInput
impl Clone for BatchModifyClusterSnapshotsInput
sourcefn clone(&self) -> BatchModifyClusterSnapshotsInput
fn clone(&self) -> BatchModifyClusterSnapshotsInput
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 PartialEq<BatchModifyClusterSnapshotsInput> for BatchModifyClusterSnapshotsInput
impl PartialEq<BatchModifyClusterSnapshotsInput> for BatchModifyClusterSnapshotsInput
sourcefn eq(&self, other: &BatchModifyClusterSnapshotsInput) -> bool
fn eq(&self, other: &BatchModifyClusterSnapshotsInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &BatchModifyClusterSnapshotsInput) -> bool
fn ne(&self, other: &BatchModifyClusterSnapshotsInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for BatchModifyClusterSnapshotsInput
Auto Trait Implementations
impl RefUnwindSafe for BatchModifyClusterSnapshotsInput
impl Send for BatchModifyClusterSnapshotsInput
impl Sync for BatchModifyClusterSnapshotsInput
impl Unpin for BatchModifyClusterSnapshotsInput
impl UnwindSafe for BatchModifyClusterSnapshotsInput
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