Interface RequestCountScalingProps

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

@Generated(value="jsii-pacmak/1.120.0 (build 192dc88)", date="2025-12-05T22:26:29.340Z") @Stability(Stable) public interface RequestCountScalingProps extends software.amazon.jsii.JsiiSerializable, BaseTargetTrackingProps
Properties for enabling scaling based on request/second.

Example:

 AutoScalingGroup autoScalingGroup;
 autoScalingGroup.scaleOnRequestCount("LimitRPS", RequestCountScalingProps.builder()
         .targetRequestsPerSecond(1000)
         .build());