[][src]Struct rusoto_dlm::Schedule

pub struct Schedule {
    pub copy_tags: Option<bool>,
    pub create_rule: Option<CreateRule>,
    pub cross_region_copy_rules: Option<Vec<CrossRegionCopyRule>>,
    pub fast_restore_rule: Option<FastRestoreRule>,
    pub name: Option<String>,
    pub retain_rule: Option<RetainRule>,
    pub tags_to_add: Option<Vec<Tag>>,
    pub variable_tags: Option<Vec<Tag>>,
}

Specifies a backup schedule.

Fields

copy_tags: Option<bool>

Copy all user-defined tags on a source volume to snapshots of the volume created by this policy.

create_rule: Option<CreateRule>

The creation rule.

cross_region_copy_rules: Option<Vec<CrossRegionCopyRule>>

The rule for cross-Region snapshot copies.

fast_restore_rule: Option<FastRestoreRule>

The rule for enabling fast snapshot restore.

name: Option<String>

The name of the schedule.

retain_rule: Option<RetainRule>

The retention rule.

tags_to_add: Option<Vec<Tag>>

The tags to apply to policy-created resources. These user-defined tags are in addition to the AWS-added lifecycle tags.

variable_tags: Option<Vec<Tag>>

A collection of key/value pairs with values determined dynamically when the policy is executed. Keys may be any valid Amazon EC2 tag key. Values must be in one of the two following formats: $(instance-id) or $(timestamp). Variable tags are only valid for EBS Snapshot Management – Instance policies.

Trait Implementations

impl Clone for Schedule[src]

impl Debug for Schedule[src]

impl Default for Schedule[src]

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

impl PartialEq<Schedule> for Schedule[src]

impl Serialize for Schedule[src]

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