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]

[src]

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

impl Debug for BackupDetails
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for BackupDetails
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for BackupDetails

impl Sync for BackupDetails