Struct rusoto_dynamodb::BackupDescription[][src]

pub struct BackupDescription {
    pub backup_details: Option<BackupDetails>,
    pub source_table_details: Option<SourceTableDetails>,
    pub source_table_feature_details: Option<SourceTableFeatureDetails>,
}

Contains the description of the backup created for the table.

Fields

Contains the details of the backup created for the table.

Contains the details of the table when the backup was created.

Contains the details of the features enabled on the table when the backup was created. For example, LSIs, GSIs, streams, TTL.

Trait Implementations

impl Default for BackupDescription
[src]

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

impl Debug for BackupDescription
[src]

Formats the value using the given formatter. Read more

impl Clone for BackupDescription
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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