Struct aws_sdk_backup::model::CalculatedLifecycle
source · [−]#[non_exhaustive]pub struct CalculatedLifecycle {
pub move_to_cold_storage_at: Option<DateTime>,
pub delete_at: Option<DateTime>,
}
Expand description
Contains DeleteAt
and MoveToColdStorageAt
timestamps, which are used to specify a lifecycle for a recovery point.
The lifecycle defines when a protected resource is transitioned to cold storage and when it expires. Backup transitions and expires backups automatically according to the lifecycle that you define.
Backups transitioned to cold storage must be stored in cold storage for a minimum of 90 days. Therefore, the “retention” setting must be 90 days greater than the “transition to cold after days” setting. The “transition to cold after days” setting cannot be changed after a backup has been transitioned to cold.
Only resource types that support full Backup management can transition their backups to cold storage. Those resource types are listed in the "Full Backup management" section of the Feature availability by resource table. Backup ignores this expression for other resource types.
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.move_to_cold_storage_at: Option<DateTime>
A timestamp that specifies when to transition a recovery point to cold storage.
delete_at: Option<DateTime>
A timestamp that specifies when to delete a recovery point.
Implementations
sourceimpl CalculatedLifecycle
impl CalculatedLifecycle
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CalculatedLifecycle
Trait Implementations
sourceimpl Clone for CalculatedLifecycle
impl Clone for CalculatedLifecycle
sourcefn clone(&self) -> CalculatedLifecycle
fn clone(&self) -> CalculatedLifecycle
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 CalculatedLifecycle
impl Debug for CalculatedLifecycle
sourceimpl PartialEq<CalculatedLifecycle> for CalculatedLifecycle
impl PartialEq<CalculatedLifecycle> for CalculatedLifecycle
sourcefn eq(&self, other: &CalculatedLifecycle) -> bool
fn eq(&self, other: &CalculatedLifecycle) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &CalculatedLifecycle) -> bool
fn ne(&self, other: &CalculatedLifecycle) -> bool
This method tests for !=
.
impl StructuralPartialEq for CalculatedLifecycle
Auto Trait Implementations
impl RefUnwindSafe for CalculatedLifecycle
impl Send for CalculatedLifecycle
impl Sync for CalculatedLifecycle
impl Unpin for CalculatedLifecycle
impl UnwindSafe for CalculatedLifecycle
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> 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.
sourcefn clone_into(&self, target: &mut T)
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