Interface EmrCreateCluster.SimpleScalingPolicyConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
EmrCreateCluster.SimpleScalingPolicyConfigurationProperty.Jsii$Proxy
- Enclosing class:
EmrCreateCluster
@Stability(Stable)
public static interface EmrCreateCluster.SimpleScalingPolicyConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
An automatic scaling configuration, which describes how the policy adds or removes instances, the cooldown period, and the number of EC2 instances that will be added each time the CloudWatch metric alarm condition is satisfied.
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.stepfunctions.tasks.*; SimpleScalingPolicyConfigurationProperty simpleScalingPolicyConfigurationProperty = SimpleScalingPolicyConfigurationProperty.builder() .scalingAdjustment(123) // the properties below are optional .adjustmentType(EmrCreateCluster.getScalingAdjustmentType().CHANGE_IN_CAPACITY) .coolDown(123) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forEmrCreateCluster.SimpleScalingPolicyConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The way in which EC2 instances are added (if ScalingAdjustment is a positive number) or terminated (if ScalingAdjustment is a negative number) each time the scaling activity is triggered.default Number
The amount of time, in seconds, after a scaling activity completes before any further trigger-related scaling activities can start.The amount by which to scale in or scale out, based on the specified AdjustmentType.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getScalingAdjustment
The amount by which to scale in or scale out, based on the specified AdjustmentType.A positive value adds to the instance group's EC2 instance count while a negative number removes instances. If AdjustmentType is set to EXACT_CAPACITY, the number should only be a positive integer.
-
getAdjustmentType
The way in which EC2 instances are added (if ScalingAdjustment is a positive number) or terminated (if ScalingAdjustment is a negative number) each time the scaling activity is triggered.Default: - None
-
getCoolDown
The amount of time, in seconds, after a scaling activity completes before any further trigger-related scaling activities can start.Default: 0
-
builder
@Stability(Stable) static EmrCreateCluster.SimpleScalingPolicyConfigurationProperty.Builder builder()
-