[][src]Struct rusoto_dlm::FastRestoreRule

pub struct FastRestoreRule {
    pub availability_zones: Vec<String>,
    pub count: Option<i64>,
    pub interval: Option<i64>,
    pub interval_unit: Option<String>,
}

Specifies a rule for enabling fast snapshot restore. You can enable fast snapshot restore based on either a count or a time interval.

Fields

availability_zones: Vec<String>

The Availability Zones in which to enable fast snapshot restore.

count: Option<i64>

The number of snapshots to be enabled with fast snapshot restore.

interval: Option<i64>

The amount of time to enable fast snapshot restore. The maximum is 100 years. This is equivalent to 1200 months, 5200 weeks, or 36500 days.

interval_unit: Option<String>

The unit of time for enabling fast snapshot restore.

Trait Implementations

impl Clone for FastRestoreRule[src]

impl Debug for FastRestoreRule[src]

impl Default for FastRestoreRule[src]

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

impl PartialEq<FastRestoreRule> for FastRestoreRule[src]

impl Serialize for FastRestoreRule[src]

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