Interface CfnCluster.SimpleScalingPolicyConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCluster.SimpleScalingPolicyConfigurationProperty.Jsii$Proxy
- Enclosing class:
- CfnCluster
SimpleScalingPolicyConfiguration
is a subproperty of the ScalingAction
property type.
SimpleScalingPolicyConfiguration
determines how an automatic scaling action adds or removes instances, the cooldown period, and the number of EC2 instances that are 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.emr.*; SimpleScalingPolicyConfigurationProperty simpleScalingPolicyConfigurationProperty = SimpleScalingPolicyConfigurationProperty.builder() .scalingAdjustment(123) // the properties below are optional .adjustmentType("adjustmentType") .coolDown(123) .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCluster.SimpleScalingPolicyConfigurationProperty
static final class
An implementation forCfnCluster.SimpleScalingPolicyConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The way in which Amazon EC2 instances are added (ifScalingAdjustment
is a positive number) or terminated (ifScalingAdjustment
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 specifiedAdjustmentType
.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 specifiedAdjustmentType
.A positive value adds to the instance group's Amazon EC2 instance count while a negative number removes instances. If
AdjustmentType
is set toEXACT_CAPACITY
, the number should only be a positive integer. IfAdjustmentType
is set toPERCENT_CHANGE_IN_CAPACITY
, the value should express the percentage as an integer. For example, -20 indicates a decrease in 20% increments of cluster capacity. -
getAdjustmentType
The way in which Amazon EC2 instances are added (ifScalingAdjustment
is a positive number) or terminated (ifScalingAdjustment
is a negative number) each time the scaling activity is triggered.CHANGE_IN_CAPACITY
is the default.CHANGE_IN_CAPACITY
indicates that the Amazon EC2 instance count increments or decrements byScalingAdjustment
, which should be expressed as an integer.PERCENT_CHANGE_IN_CAPACITY
indicates the instance count increments or decrements by the percentage specified byScalingAdjustment
, which should be expressed as an integer. For example, 20 indicates an increase in 20% increments of cluster capacity.EXACT_CAPACITY
indicates the scaling activity results in an instance group with the number of Amazon EC2 instances specified byScalingAdjustment
, which should be expressed as a positive integer. -
getCoolDown
The amount of time, in seconds, after a scaling activity completes before any further trigger-related scaling activities can start.The default value is 0.
-
builder
-