[][src]Struct rusoto_ec2::ScheduledInstanceRecurrence

pub struct ScheduledInstanceRecurrence {
    pub frequency: Option<String>,
    pub interval: Option<i64>,
    pub occurrence_day_set: Option<Vec<i64>>,
    pub occurrence_relative_to_end: Option<bool>,
    pub occurrence_unit: Option<String>,
}

Describes the recurring schedule for a Scheduled Instance.

Fields

frequency: Option<String>

The frequency (Daily, Weekly, or Monthly).

interval: Option<i64>

The interval quantity. The interval unit depends on the value of frequency. For example, every 2 weeks or every 2 months.

occurrence_day_set: Option<Vec<i64>>

The days. For a monthly schedule, this is one or more days of the month (1-31). For a weekly schedule, this is one or more days of the week (1-7, where 1 is Sunday).

occurrence_relative_to_end: Option<bool>

Indicates whether the occurrence is relative to the end of the specified week or month.

occurrence_unit: Option<String>

The unit for occurrenceDaySet (DayOfWeek or DayOfMonth).

Trait Implementations

impl Clone for ScheduledInstanceRecurrence[src]

impl Debug for ScheduledInstanceRecurrence[src]

impl Default for ScheduledInstanceRecurrence[src]

impl PartialEq<ScheduledInstanceRecurrence> for ScheduledInstanceRecurrence[src]

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