Struct rusoto_dynamodb::BackupDetails[][src]

pub struct BackupDetails {
    pub backup_arn: String,
    pub backup_creation_date_time: f64,
    pub backup_name: String,
    pub backup_size_bytes: Option<i64>,
    pub backup_status: String,
}

Contains the details of the backup created for the table.

Fields

ARN associated with the backup.

Time at which the backup was created. This is the request time of the backup.

Name of the requested backup.

Size of the backup in bytes.

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

Trait Implementations

impl Default for BackupDetails
[src]

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

impl Debug for BackupDetails
[src]

Formats the value using the given formatter. Read more

impl Clone for BackupDetails
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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