Struct rusoto_dynamodb::PointInTimeRecoveryDescription[][src]

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

Specifies the earliest point in time you can restore your table to. It is equal to the maximum of point in time recovery enabled time and CurrentTime - PointInTimeRecoveryPeriod.

LatestRestorableDateTime is 5 minutes from now and there is a +/- 1 minute fuzziness on the restore times.

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 Default for PointInTimeRecoveryDescription
[src]

Returns the "default value" for a type. Read more

impl Debug for PointInTimeRecoveryDescription
[src]

Formats the value using the given formatter. Read more

impl Clone for PointInTimeRecoveryDescription
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for PointInTimeRecoveryDescription
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations