[][src]Struct rusoto_iotanalytics::RetentionPeriod

pub struct RetentionPeriod {
    pub number_of_days: Option<i64>,
    pub unlimited: Option<bool>,
}

How long, in days, message data is kept.

Fields

number_of_days: Option<i64>

The number of days that message data is kept. The "unlimited" parameter must be false.

unlimited: Option<bool>

If true, message data is kept indefinitely.

Trait Implementations

impl Clone for RetentionPeriod[src]

impl Debug for RetentionPeriod[src]

impl Default for RetentionPeriod[src]

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

impl PartialEq<RetentionPeriod> for RetentionPeriod[src]

impl Serialize for RetentionPeriod[src]

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