[][src]Struct rusoto_appsync::CachingConfig

pub struct CachingConfig {
    pub caching_keys: Option<Vec<String>>,
    pub ttl: Option<i64>,
}

The caching configuration for a resolver that has caching enabled.

Fields

caching_keys: Option<Vec<String>>

The caching keys for a resolver that has caching enabled.

Valid values are entries from the $context.arguments, $context.source, and $context.identity maps.

ttl: Option<i64>

The TTL in seconds for a resolver that has caching enabled.

Valid values are between 1 and 3600 seconds.

Trait Implementations

impl Clone for CachingConfig[src]

impl Debug for CachingConfig[src]

impl Default for CachingConfig[src]

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

impl PartialEq<CachingConfig> for CachingConfig[src]

impl Serialize for CachingConfig[src]

impl StructuralPartialEq for CachingConfig[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, 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.