Interface EnableScalingProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
BaseScalableAttributeProps
,ScalableTaskCountProps
- All Known Implementing Classes:
BaseScalableAttributeProps.Jsii$Proxy
,EnableScalingProps.Jsii$Proxy
,ScalableTaskCountProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:37.366Z")
@Stability(Stable)
public interface EnableScalingProps
extends software.amazon.jsii.JsiiSerializable
Properties for enabling Application Auto Scaling.
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()) .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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forEnableScalingProps
static final class
An implementation forEnableScalingProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic EnableScalingProps.Builder
builder()
Maximum capacity to scale to.default Number
Minimum capacity to scale to.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMaxCapacity
Maximum capacity to scale to. -
getMinCapacity
Minimum capacity to scale to.Default: 1
-
builder
- Returns:
- a
EnableScalingProps.Builder
ofEnableScalingProps
-