[][src]Struct rusoto_dynamodb::UpdateTimeToLiveInput

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

Represents the input of an UpdateTimeToLive operation.

Fields

table_name: String

The name of the table to be configured.

time_to_live_specification: TimeToLiveSpecification

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

Trait Implementations

impl Clone for UpdateTimeToLiveInput[src]

impl Debug for UpdateTimeToLiveInput[src]

impl Default for UpdateTimeToLiveInput[src]

impl PartialEq<UpdateTimeToLiveInput> for UpdateTimeToLiveInput[src]

impl Serialize for UpdateTimeToLiveInput[src]

impl StructuralPartialEq for UpdateTimeToLiveInput[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.