Struct rusoto_dynamodb::UpdateTimeToLiveInput [] [src]

pub struct UpdateTimeToLiveInput {
    pub table_name: String,
    pub time_to_live_specification: TimeToLiveSpecification,
}

Represents the input of an UpdateTimeToLive operation.

Fields

The name of the table to be configured.

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

Trait Implementations

impl Default for UpdateTimeToLiveInput
[src]

[src]

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

impl Debug for UpdateTimeToLiveInput
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateTimeToLiveInput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations