Struct rusoto_dynamodb::BackupSummary[][src]

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

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

impl Debug for BackupSummary
[src]

Formats the value using the given formatter. Read more

impl Clone for BackupSummary
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for BackupSummary
[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