Struct rusoto_application_autoscaling::StepScalingPolicyConfiguration [] [src]

pub struct StepScalingPolicyConfiguration {
    pub adjustment_type: Option<String>,
    pub cooldown: Option<i64>,
    pub metric_aggregation_type: Option<String>,
    pub min_adjustment_magnitude: Option<i64>,
    pub step_adjustments: Option<Vec<StepAdjustment>>,
}

Represents a step scaling policy configuration.

Fields

The adjustment type, which specifies how the ScalingAdjustment parameter in a StepAdjustment is interpreted.

The amount of time, in seconds, after a scaling activity completes where previous trigger-related scaling activities can influence future scaling events.

For scale out policies, while the cooldown period is in effect, the capacity that has been added by the previous scale out event that initiated the cooldown is calculated as part of the desired capacity for the next scale out. The intention is to continuously (but not excessively) scale out. For example, an alarm triggers a step scaling policy to scale out an Amazon ECS service by 2 tasks, the scaling activity completes successfully, and a cooldown period of 5 minutes starts. During the Cooldown period, if the alarm triggers the same policy again but at a more aggressive step adjustment to scale out the service by 3 tasks, the 2 tasks that were added in the previous scale out event are considered part of that capacity and only 1 additional task is added to the desired count.

For scale in policies, the cooldown period is used to block subsequent scale in requests until it has expired. The intention is to scale in conservatively to protect your application's availability. However, if another alarm triggers a scale out policy during the cooldown period after a scale-in, Application Auto Scaling scales out your scalable target immediately.

The aggregation type for the CloudWatch metrics. Valid values are Minimum, Maximum, and Average.

The minimum number to adjust your scalable dimension as a result of a scaling activity. If the adjustment type is PercentChangeInCapacity, the scaling policy changes the scalable dimension of the scalable target by this amount.

A set of adjustments that enable you to scale based on the size of the alarm breach.

Trait Implementations

impl Default for StepScalingPolicyConfiguration
[src]

[src]

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

impl Debug for StepScalingPolicyConfiguration
[src]

[src]

Formats the value using the given formatter.

impl Clone for StepScalingPolicyConfiguration
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more