pub struct PointInTimeRecoveryDescription {
pub earliest_restorable_date_time: Option<f64>,
pub latest_restorable_date_time: Option<f64>,
pub point_in_time_recovery_status: Option<String>,
}
Expand description
The description of the point in time settings applied to the table.
Fields§
§earliest_restorable_date_time: Option<f64>
Specifies the earliest point in time you can restore your table to. You can restore your table to any point in time during the last 35 days.
latest_restorable_date_time: Option<f64>
LatestRestorableDateTime
is typically 5 minutes before the current time.
point_in_time_recovery_status: Option<String>
The current state of point in time recovery:
-
ENABLING
- Point in time recovery is being enabled. -
ENABLED
- Point in time recovery is enabled. -
DISABLED
- Point in time recovery is disabled.
Trait Implementations§
Source§impl Clone for PointInTimeRecoveryDescription
impl Clone for PointInTimeRecoveryDescription
Source§fn clone(&self) -> PointInTimeRecoveryDescription
fn clone(&self) -> PointInTimeRecoveryDescription
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for PointInTimeRecoveryDescription
impl Default for PointInTimeRecoveryDescription
Source§fn default() -> PointInTimeRecoveryDescription
fn default() -> PointInTimeRecoveryDescription
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PointInTimeRecoveryDescription
impl<'de> Deserialize<'de> for PointInTimeRecoveryDescription
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PointInTimeRecoveryDescription
impl PartialEq for PointInTimeRecoveryDescription
Source§fn eq(&self, other: &PointInTimeRecoveryDescription) -> bool
fn eq(&self, other: &PointInTimeRecoveryDescription) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PointInTimeRecoveryDescription
Auto Trait Implementations§
impl Freeze for PointInTimeRecoveryDescription
impl RefUnwindSafe for PointInTimeRecoveryDescription
impl Send for PointInTimeRecoveryDescription
impl Sync for PointInTimeRecoveryDescription
impl Unpin for PointInTimeRecoveryDescription
impl UnwindSafe for PointInTimeRecoveryDescription
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
Mutably borrows from an owned value. Read more