[][src]Struct rusoto_storagegateway::CacheAttributes

pub struct CacheAttributes {
    pub cache_stale_timeout_in_seconds: Option<i64>,
}

Lists refresh cache information.

Fields

cache_stale_timeout_in_seconds: Option<i64>

Refreshes a file share's cache by using Time To Live (TTL). TTL is the length of time since the last refresh after which access to the directory would cause the file gateway to first refresh that directory's contents from the Amazon S3 bucket. The TTL duration is in seconds.

Valid Values: 300 to 2,592,000 seconds (5 minutes to 30 days)

Trait Implementations

impl Clone for CacheAttributes[src]

impl Debug for CacheAttributes[src]

impl Default for CacheAttributes[src]

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

impl PartialEq<CacheAttributes> for CacheAttributes[src]

impl Serialize for CacheAttributes[src]

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