Show / Hide Table of Contents

Class PolicyTargetTrackingScalingPolicyConfigurationArgs

Inheritance
System.Object
InputArgs
ResourceArgs
PolicyTargetTrackingScalingPolicyConfigurationArgs
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 PolicyTargetTrackingScalingPolicyConfigurationArgs : ResourceArgs

Constructors

View Source

PolicyTargetTrackingScalingPolicyConfigurationArgs()

Declaration
public PolicyTargetTrackingScalingPolicyConfigurationArgs()

Properties

View Source

CustomizedMetricSpecification

A custom CloudWatch metric. Documentation can be found at: AWS Customized Metric Specification. See supported fields below.

Declaration
public Input<PolicyTargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationArgs> CustomizedMetricSpecification { get; set; }
Property Value
Type Description
Input<PolicyTargetTrackingScalingPolicyConfigurationCustomizedMetricSpecificationArgs>
View Source

DisableScaleIn

Indicates whether scale in by the target tracking policy is disabled. If the value is true, scale in is disabled and the target tracking policy won't remove capacity from the scalable resource. Otherwise, scale in is enabled and the target tracking policy can remove capacity from the scalable resource. The default value is false.

Declaration
public Input<bool> DisableScaleIn { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

PredefinedMetricSpecification

A predefined metric. See supported fields below.

Declaration
public Input<PolicyTargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationArgs> PredefinedMetricSpecification { get; set; }
Property Value
Type Description
Input<PolicyTargetTrackingScalingPolicyConfigurationPredefinedMetricSpecificationArgs>
View Source

ScaleInCooldown

The amount of time, in seconds, after a scale in activity completes before another scale in activity can start.

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

ScaleOutCooldown

The amount of time, in seconds, after a scale out activity completes before another scale out activity can start.

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

TargetValue

The target value for the metric.

Declaration
public Input<double> TargetValue { get; set; }
Property Value
Type Description
Input<System.Double>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.