Struct rusoto_dynamodb::TimeToLiveSpecification[][src]

pub struct TimeToLiveSpecification {
    pub attribute_name: String,
    pub enabled: bool,
}

Represents the settings used to enable or disable Time to Live for the specified table.

Fields

The name of the Time to Live attribute used to store the expiration time for items in the table.

Indicates whether Time To Live is to be enabled (true) or disabled (false) on the table.

Trait Implementations

impl Default for TimeToLiveSpecification
[src]

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

impl Debug for TimeToLiveSpecification
[src]

Formats the value using the given formatter. Read more

impl Clone for TimeToLiveSpecification
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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