[][src]Struct rusoto_dynamodb::RestoreTableToPointInTimeInput

pub struct RestoreTableToPointInTimeInput {
    pub restore_date_time: Option<f64>,
    pub source_table_name: String,
    pub target_table_name: String,
    pub use_latest_restorable_time: Option<bool>,
}

Fields

restore_date_time: Option<f64>

Time in the past to restore the table to.

source_table_name: String

Name of the source table that is being restored.

target_table_name: String

The name of the new table to which it must be restored to.

use_latest_restorable_time: Option<bool>

Restore the table to the latest possible time. LatestRestorableDateTime is typically 5 minutes before the current time.

Trait Implementations

impl Clone for RestoreTableToPointInTimeInput[src]

impl Default for RestoreTableToPointInTimeInput[src]

impl PartialEq<RestoreTableToPointInTimeInput> for RestoreTableToPointInTimeInput[src]

impl Debug for RestoreTableToPointInTimeInput[src]

impl StructuralPartialEq for RestoreTableToPointInTimeInput[src]

impl Serialize for RestoreTableToPointInTimeInput[src]

Auto Trait Implementations

Blanket Implementations

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

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

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.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self