Interface ScalableInstanceCountProps
- All Superinterfaces:
BaseScalableAttributeProps,EnableScalingProps,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ScalableInstanceCountProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-04T09:27:53.700Z")
@Stability(Experimental)
public interface ScalableInstanceCountProps
extends software.amazon.jsii.JsiiSerializable, BaseScalableAttributeProps
(experimental) The properties of a scalable attribute representing task count.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.sagemaker.alpha.*;
import software.amazon.awscdk.services.applicationautoscaling.*;
import software.amazon.awscdk.services.iam.*;
Role role;
ScalableInstanceCountProps scalableInstanceCountProps = ScalableInstanceCountProps.builder()
.dimension("dimension")
.maxCapacity(123)
.resourceId("resourceId")
.role(role)
.serviceNamespace(ServiceNamespace.ECS)
// the properties below are optional
.minCapacity(123)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forScalableInstanceCountPropsstatic final classAn implementation forScalableInstanceCountProps -
Method Summary
Static MethodsMethods inherited from interface software.amazon.awscdk.services.applicationautoscaling.BaseScalableAttributeProps
getDimension, getResourceId, getRole, getServiceNamespaceMethods inherited from interface software.amazon.awscdk.services.applicationautoscaling.EnableScalingProps
getMaxCapacity, getMinCapacityMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
builder
- Returns:
- a
ScalableInstanceCountProps.BuilderofScalableInstanceCountProps
-