Struct rusoto_dynamodb::RestoreSummary [] [src]

pub struct RestoreSummary {
    pub restore_date_time: f64,
    pub restore_in_progress: bool,
    pub source_backup_arn: Option<String>,
    pub source_table_arn: Option<String>,
}

Contains details for the restore.

Fields

Point in time or source backup time.

Indicates if a restore is in progress or not.

ARN of the backup from which the table was restored.

ARN of the source table of the backup that is being restored.

Trait Implementations

impl Default for RestoreSummary
[src]

[src]

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

impl Debug for RestoreSummary
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for RestoreSummary
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations