Interface CpuUtilizationScalingProps

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

@Generated(value="jsii-pacmak/1.128.0 (build 749b9a9)", date="2026-04-29T18:45:15.330Z") @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());