[][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]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq<WeeklyAutoScalingSchedule> for WeeklyAutoScalingSchedule[src]

impl Default for WeeklyAutoScalingSchedule[src]

impl Debug for WeeklyAutoScalingSchedule[src]

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

impl Serialize for WeeklyAutoScalingSchedule[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self