Interface CpuUtilizationScalingProps

All Superinterfaces:
BaseTargetTrackingProps, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CpuUtilizationScalingProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:03.133Z") @Stability(Stable) public interface CpuUtilizationScalingProps extends software.amazon.jsii.JsiiSerializable, BaseTargetTrackingProps
Properties for enabling scaling based on CPU utilization.

Example:

 AutoScalingGroup autoScalingGroup;
 autoScalingGroup.scaleOnCpuUtilization("KeepSpareCPU", CpuUtilizationScalingProps.builder()
         .targetUtilizationPercent(50)
         .build());