[][src]Struct rusoto_opsworks::AutoScalingThresholds

pub struct AutoScalingThresholds {
    pub alarms: Option<Vec<String>>,
    pub cpu_threshold: Option<f64>,
    pub ignore_metrics_time: Option<i64>,
    pub instance_count: Option<i64>,
    pub load_threshold: Option<f64>,
    pub memory_threshold: Option<f64>,
    pub thresholds_wait_time: Option<i64>,
}

Describes a load-based auto scaling upscaling or downscaling threshold configuration, which specifies when AWS OpsWorks Stacks starts or stops load-based instances.

Fields

alarms: Option<Vec<String>>

Custom Cloudwatch auto scaling alarms, to be used as thresholds. This parameter takes a list of up to five alarm names, which are case sensitive and must be in the same region as the stack.

To use custom alarms, you must update your service role to allow cloudwatch:DescribeAlarms. You can either have AWS OpsWorks Stacks update the role for you when you first use this feature or you can edit the role manually. For more information, see Allowing AWS OpsWorks Stacks to Act on Your Behalf.

cpu_threshold: Option<f64>

The CPU utilization threshold, as a percent of the available CPU. A value of -1 disables the threshold.

ignore_metrics_time: Option<i64>

The amount of time (in minutes) after a scaling event occurs that AWS OpsWorks Stacks should ignore metrics and suppress additional scaling events. For example, AWS OpsWorks Stacks adds new instances following an upscaling event but the instances won't start reducing the load until they have been booted and configured. There is no point in raising additional scaling events during that operation, which typically takes several minutes. IgnoreMetricsTime allows you to direct AWS OpsWorks Stacks to suppress scaling events long enough to get the new instances online.

instance_count: Option<i64>

The number of instances to add or remove when the load exceeds a threshold.

load_threshold: Option<f64>

The load threshold. A value of -1 disables the threshold. For more information about how load is computed, see Load (computing).

memory_threshold: Option<f64>

The memory utilization threshold, as a percent of the available memory. A value of -1 disables the threshold.

thresholds_wait_time: Option<i64>

The amount of time, in minutes, that the load must exceed a threshold before more instances are added or removed.

Trait Implementations

impl PartialEq<AutoScalingThresholds> for AutoScalingThresholds[src]

impl Clone for AutoScalingThresholds[src]

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

Performs copy-assignment from source. Read more

impl Default for AutoScalingThresholds[src]

impl Debug for AutoScalingThresholds[src]

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

impl Serialize for AutoScalingThresholds[src]

Auto Trait Implementations

Blanket Implementations

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> From for T[src]

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