Show / Hide Table of Contents

Interface ICpuUtilizationScalingProps

Properties for enabling scaling based on CPU utilization.

Inherited Members
IBaseTargetTrackingProps.Cooldown
IBaseTargetTrackingProps.DisableScaleIn
IBaseTargetTrackingProps.EstimatedInstanceWarmup
Namespace: Amazon.CDK.AWS.AutoScaling
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICpuUtilizationScalingProps : IBaseTargetTrackingProps
Syntax (vb)
Public Interface ICpuUtilizationScalingProps Inherits IBaseTargetTrackingProps
Remarks

ExampleMetadata: infused

Examples
AutoScalingGroup autoScalingGroup;


            autoScalingGroup.ScaleOnCpuUtilization("KeepSpareCPU", new CpuUtilizationScalingProps {
                TargetUtilizationPercent = 50
            });

Synopsis

Properties

TargetUtilizationPercent

Target average CPU utilization across the task.

Properties

TargetUtilizationPercent

Target average CPU utilization across the task.

double TargetUtilizationPercent { get; }
Property Value

double

Remarks

ExampleMetadata: infused

Back to top Generated by DocFX