[][src]Struct rusoto_dynamodb::BackupSummary

pub struct BackupSummary {
    pub backup_arn: Option<String>,
    pub backup_creation_date_time: Option<f64>,
    pub backup_name: Option<String>,
    pub backup_size_bytes: Option<i64>,
    pub backup_status: Option<String>,
    pub table_arn: Option<String>,
    pub table_id: Option<String>,
    pub table_name: Option<String>,
}

Contains details for the backup.

Fields

ARN associated with the backup.

Time at which the backup was created.

Name of the specified backup.

Size of the backup in bytes.

Backup can be in one of the following states: CREATING, ACTIVE, DELETED.

ARN associated with the table.

Unique identifier for the table.

Name of the table.

Trait Implementations

impl Clone for BackupSummary
[src]

Performs copy-assignment from source. Read more

impl Default for BackupSummary
[src]

impl PartialEq<BackupSummary> for BackupSummary
[src]

impl Debug for BackupSummary
[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

impl<T> Same for T

Should always be Self

impl<T> Erased for T