[−][src]Struct rusoto_opsworks::WeeklyAutoScalingSchedule
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 PartialEq<WeeklyAutoScalingSchedule> for WeeklyAutoScalingSchedule
[src]
fn eq(&self, other: &WeeklyAutoScalingSchedule) -> bool
[src]
fn ne(&self, other: &WeeklyAutoScalingSchedule) -> bool
[src]
impl Default for WeeklyAutoScalingSchedule
[src]
impl Clone for WeeklyAutoScalingSchedule
[src]
fn clone(&self) -> WeeklyAutoScalingSchedule
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for WeeklyAutoScalingSchedule
[src]
impl Serialize for WeeklyAutoScalingSchedule
[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer,
[src]
__S: Serializer,
impl<'de> Deserialize<'de> for WeeklyAutoScalingSchedule
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Send for WeeklyAutoScalingSchedule
impl Sync for WeeklyAutoScalingSchedule
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self