@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)", date="2023-03-22T19:35:41.384Z") public interface BaseScalableAttributeProps extends EnableScalingProps
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();
Modifier and Type | Interface and Description |
---|---|
static class |
BaseScalableAttributeProps.Builder
A builder for
BaseScalableAttributeProps |
static class |
BaseScalableAttributeProps.Jsii$Proxy
An implementation for
BaseScalableAttributeProps |
Modifier and Type | Method and Description |
---|---|
static BaseScalableAttributeProps.Builder |
builder() |
java.lang.String |
getDimension()
Scalable dimension of the attribute.
|
java.lang.String |
getResourceId()
Resource ID of the attribute.
|
IRole |
getRole()
Role to use for scaling.
|
ServiceNamespace |
getServiceNamespace()
Service namespace of the scalable attribute.
|
getMaxCapacity, getMinCapacity
java.lang.String getDimension()
java.lang.String getResourceId()
IRole getRole()
ServiceNamespace getServiceNamespace()
static BaseScalableAttributeProps.Builder builder()
builder
in interface EnableScalingProps
BaseScalableAttributeProps.Builder
of BaseScalableAttributeProps