@Stability(value=Stable)
public static interface CfnInstanceGroupConfig.ScalingConstraintsProperty
extends software.amazon.jsii.JsiiSerializable
ScalingConstraints defines the upper and lower EC2 instance limits for an automatic scaling policy. Automatic scaling activities triggered by automatic scaling rules will not cause an instance group to grow above or shrink below these limits.
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.emr.*;
ScalingConstraintsProperty scalingConstraintsProperty = ScalingConstraintsProperty.builder()
.maxCapacity(123)
.minCapacity(123)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnInstanceGroupConfig.ScalingConstraintsProperty.Builder
A builder for
CfnInstanceGroupConfig.ScalingConstraintsProperty |
static class |
CfnInstanceGroupConfig.ScalingConstraintsProperty.Jsii$Proxy
An implementation for
CfnInstanceGroupConfig.ScalingConstraintsProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnInstanceGroupConfig.ScalingConstraintsProperty.Builder |
builder() |
Number |
getMaxCapacity()
The upper boundary of EC2 instances in an instance group beyond which scaling activities are not allowed to grow.
|
Number |
getMinCapacity()
The lower boundary of EC2 instances in an instance group below which scaling activities are not allowed to shrink.
|
@Stability(value=Stable) @NotNull Number getMaxCapacity()
Scale-out activities will not add instances beyond this boundary.
@Stability(value=Stable) @NotNull Number getMinCapacity()
Scale-in activities will not terminate instances below this boundary.
@Stability(value=Stable) static CfnInstanceGroupConfig.ScalingConstraintsProperty.Builder builder()
Copyright © 2022. All rights reserved.