Show / Hide Table of Contents

Class PolicyStepScalingPolicyConfigurationArgs

Inheritance
System.Object
InputArgs
ResourceArgs
PolicyStepScalingPolicyConfigurationArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.AppAutoScaling.Inputs
Assembly: Pulumi.Aws.dll
Syntax
public sealed class PolicyStepScalingPolicyConfigurationArgs : ResourceArgs

Constructors

View Source

PolicyStepScalingPolicyConfigurationArgs()

Declaration
public PolicyStepScalingPolicyConfigurationArgs()

Properties

View Source

AdjustmentType

Specifies whether the adjustment is an absolute number or a percentage of the current capacity. Valid values are ChangeInCapacity, ExactCapacity, and PercentChangeInCapacity.

Declaration
public Input<string> AdjustmentType { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Cooldown

The amount of time, in seconds, after a scaling activity completes and before the next scaling activity can start.

Declaration
public Input<int> Cooldown { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

MetricAggregationType

The aggregation type for the policy's metrics. Valid values are "Minimum", "Maximum", and "Average". Without a value, AWS will treat the aggregation type as "Average".

Declaration
public Input<string> MetricAggregationType { get; set; }
Property Value
Type Description
Input<System.String>
View Source

MinAdjustmentMagnitude

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.

Declaration
public Input<int> MinAdjustmentMagnitude { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

StepAdjustments

A set of adjustments that manage scaling. These have the following structure:

Declaration
public InputList<PolicyStepScalingPolicyConfigurationStepAdjustmentArgs> StepAdjustments { get; set; }
Property Value
Type Description
InputList<PolicyStepScalingPolicyConfigurationStepAdjustmentArgs>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.