[][src]Struct rusoto_appsync::DeltaSyncConfig

pub struct DeltaSyncConfig {
    pub base_table_ttl: Option<i64>,
    pub delta_sync_table_name: Option<String>,
    pub delta_sync_table_ttl: Option<i64>,
}

Describes a Delta Sync configuration.

Fields

base_table_ttl: Option<i64>

The number of minutes an Item is stored in the datasource.

delta_sync_table_name: Option<String>

The Delta Sync table name.

delta_sync_table_ttl: Option<i64>

The number of minutes a Delta Sync log entry is stored in the Delta Sync table.

Trait Implementations

impl Clone for DeltaSyncConfig[src]

impl Debug for DeltaSyncConfig[src]

impl Default for DeltaSyncConfig[src]

impl<'de> Deserialize<'de> for DeltaSyncConfig[src]

impl PartialEq<DeltaSyncConfig> for DeltaSyncConfig[src]

impl Serialize for DeltaSyncConfig[src]

impl StructuralPartialEq for DeltaSyncConfig[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument 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.