Struct rusoto_dynamodb::PointInTimeRecoverySpecification[][src]

pub struct PointInTimeRecoverySpecification {
    pub point_in_time_recovery_enabled: bool,
}

Represents the settings used to enable point in time recovery.

Fields

Indicates whether point in time recovery is enabled (true) or disabled (false) on the table.

Trait Implementations

impl Default for PointInTimeRecoverySpecification
[src]

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

impl Debug for PointInTimeRecoverySpecification
[src]

Formats the value using the given formatter. Read more

impl Clone for PointInTimeRecoverySpecification
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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