Interface BaseScalableAttributeProps
- All Superinterfaces:
EnableScalingProps
,software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
ScalableTaskCountProps
- All Known Implementing Classes:
BaseScalableAttributeProps.Jsii$Proxy
,ScalableTaskCountProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:37.321Z")
@Stability(Stable)
public interface BaseScalableAttributeProps
extends software.amazon.jsii.JsiiSerializable, EnableScalingProps
Properties for a ScalableTableAttribute.
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.applicationautoscaling.*; import software.amazon.awscdk.services.iam.*; Role role; BaseScalableAttributeProps baseScalableAttributeProps = BaseScalableAttributeProps.builder() .dimension("dimension") .maxCapacity(123) .resourceId("resourceId") .role(role) .serviceNamespace(ServiceNamespace.ECS) // the properties below are optional .minCapacity(123) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forBaseScalableAttributeProps
static final class
An implementation forBaseScalableAttributeProps
-
Method Summary
Methods inherited from interface software.amazon.awscdk.services.applicationautoscaling.EnableScalingProps
getMaxCapacity, getMinCapacity
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDimension
Scalable dimension of the attribute. -
getResourceId
Resource ID of the attribute. -
getRole
Role to use for scaling. -
getServiceNamespace
Service namespace of the scalable attribute. -
builder
- Returns:
- a
BaseScalableAttributeProps.Builder
ofBaseScalableAttributeProps
-