Interface MemoryUtilizationScalingProps
- All Superinterfaces:
BaseTargetTrackingProps,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
MemoryUtilizationScalingProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-04T09:27:40.993Z")
@Stability(Stable)
public interface MemoryUtilizationScalingProps
extends software.amazon.jsii.JsiiSerializable, BaseTargetTrackingProps
The properties for enabling scaling based on memory utilization.
Example:
Cluster cluster;
ApplicationLoadBalancedFargateService loadBalancedFargateService = ApplicationLoadBalancedFargateService.Builder.create(this, "Service")
.cluster(cluster)
.memoryLimitMiB(1024)
.desiredCount(1)
.cpu(512)
.taskImageOptions(ApplicationLoadBalancedTaskImageOptions.builder()
.image(ContainerImage.fromRegistry("amazon/amazon-ecs-sample"))
.build())
.minHealthyPercent(100)
.build();
ScalableTaskCount scalableTarget = loadBalancedFargateService.service.autoScaleTaskCount(EnableScalingProps.builder()
.minCapacity(1)
.maxCapacity(20)
.build());
scalableTarget.scaleOnCpuUtilization("CpuScaling", CpuUtilizationScalingProps.builder()
.targetUtilizationPercent(50)
.build());
scalableTarget.scaleOnMemoryUtilization("MemoryScaling", MemoryUtilizationScalingProps.builder()
.targetUtilizationPercent(50)
.build());
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forMemoryUtilizationScalingPropsstatic final classAn implementation forMemoryUtilizationScalingProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The target value for memory utilization across all tasks in the service.Methods inherited from interface software.amazon.awscdk.services.applicationautoscaling.BaseTargetTrackingProps
getDisableScaleIn, getPolicyName, getScaleInCooldown, getScaleOutCooldownMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTargetUtilizationPercent
The target value for memory utilization across all tasks in the service. -
builder
-