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]

[src]

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

impl Debug for TimeToLiveSpecification
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for TimeToLiveSpecification
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations