Struct rusoto_opsworks::LoadBasedAutoScalingConfiguration [] [src]

pub struct LoadBasedAutoScalingConfiguration {
    pub down_scaling: Option<AutoScalingThresholds>,
    pub enable: Option<bool>,
    pub layer_id: Option<String>,
    pub up_scaling: Option<AutoScalingThresholds>,
}

Describes a layer's load-based auto scaling configuration.

Fields

An AutoScalingThresholds object that describes the downscaling configuration, which defines how and when AWS OpsWorks Stacks reduces the number of instances.

Whether load-based auto scaling is enabled for the layer.

The layer ID.

An AutoScalingThresholds object that describes the upscaling configuration, which defines how and when AWS OpsWorks Stacks increases the number of instances.

Trait Implementations

impl Default for LoadBasedAutoScalingConfiguration
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for LoadBasedAutoScalingConfiguration
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for LoadBasedAutoScalingConfiguration
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations