Struct rusoto_dynamodb::ContinuousBackupsDescription[][src]

pub struct ContinuousBackupsDescription {
    pub continuous_backups_status: String,
    pub point_in_time_recovery_description: Option<PointInTimeRecoveryDescription>,
}

Represents the continuous backups and point in time recovery settings on the table.

Fields

ContinuousBackupsStatus can be one of the following states : ENABLED, DISABLED

The description of the point in time recovery settings applied to the table.

Trait Implementations

impl Default for ContinuousBackupsDescription
[src]

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

impl Debug for ContinuousBackupsDescription
[src]

Formats the value using the given formatter. Read more

impl Clone for ContinuousBackupsDescription
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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