[][src]Struct rusoto_dynamodb::PointInTimeRecoveryDescription

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>,
}

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

impl Clone for PointInTimeRecoveryDescription[src]

impl Debug for PointInTimeRecoveryDescription[src]

impl Default for PointInTimeRecoveryDescription[src]

impl<'de> Deserialize<'de> for PointInTimeRecoveryDescription[src]

impl PartialEq<PointInTimeRecoveryDescription> for PointInTimeRecoveryDescription[src]

impl StructuralPartialEq for PointInTimeRecoveryDescription[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.