[][src]Struct rusoto_opsworks::WeeklyAutoScalingSchedule

pub struct WeeklyAutoScalingSchedule {
    pub friday: Option<HashMap<String, String>>,
    pub monday: Option<HashMap<String, String>>,
    pub saturday: Option<HashMap<String, String>>,
    pub sunday: Option<HashMap<String, String>>,
    pub thursday: Option<HashMap<String, String>>,
    pub tuesday: Option<HashMap<String, String>>,
    pub wednesday: Option<HashMap<String, String>>,
}

Describes a time-based instance's auto scaling schedule. The schedule consists of a set of key-value pairs.

  • The key is the time period (a UTC hour) and must be an integer from 0 - 23.

  • The value indicates whether the instance should be online or offline for the specified period, and must be set to "on" or "off"

The default setting for all time periods is off, so you use the following parameters primarily to specify the online periods. You don't have to explicitly specify offline periods unless you want to change an online period to an offline period.

The following example specifies that the instance should be online for four hours, from UTC 1200 - 1600. It will be off for the remainder of the day.

{ "12":"on", "13":"on", "14":"on", "15":"on" }

Fields

friday: Option<HashMap<String, String>>

The schedule for Friday.

monday: Option<HashMap<String, String>>

The schedule for Monday.

saturday: Option<HashMap<String, String>>

The schedule for Saturday.

sunday: Option<HashMap<String, String>>

The schedule for Sunday.

thursday: Option<HashMap<String, String>>

The schedule for Thursday.

tuesday: Option<HashMap<String, String>>

The schedule for Tuesday.

wednesday: Option<HashMap<String, String>>

The schedule for Wednesday.

Trait Implementations

impl Clone for WeeklyAutoScalingSchedule[src]

impl Debug for WeeklyAutoScalingSchedule[src]

impl Default for WeeklyAutoScalingSchedule[src]

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

impl PartialEq<WeeklyAutoScalingSchedule> for WeeklyAutoScalingSchedule[src]

impl Serialize for WeeklyAutoScalingSchedule[src]

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