[][src]Struct rusoto_dynamodb::ArchivalSummary

pub struct ArchivalSummary {
    pub archival_backup_arn: Option<String>,
    pub archival_date_time: Option<f64>,
    pub archival_reason: Option<String>,
}

Contains details of a table archival operation.

Fields

archival_backup_arn: Option<String>

The Amazon Resource Name (ARN) of the backup the table was archived to, when applicable in the archival reason. If you wish to restore this backup to the same table name, you will need to delete the original table.

archival_date_time: Option<f64>

The date and time when table archival was initiated by DynamoDB, in UNIX epoch time format.

archival_reason: Option<String>

The reason DynamoDB archived the table. Currently, the only possible value is:

  • INACCESSIBLEENCRYPTIONCREDENTIALS - The table was archived due to the table's AWS KMS key being inaccessible for more than seven days. An On-Demand backup was created at the archival time.

Trait Implementations

impl Clone for ArchivalSummary[src]

impl Debug for ArchivalSummary[src]

impl Default for ArchivalSummary[src]

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

impl PartialEq<ArchivalSummary> for ArchivalSummary[src]

impl StructuralPartialEq for ArchivalSummary[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> Instrument for T[src]

impl<T> Instrument 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> 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.