Interface SimpleScalingPolicyConfiguration.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<SimpleScalingPolicyConfiguration.Builder,SimpleScalingPolicyConfiguration>
,SdkBuilder<SimpleScalingPolicyConfiguration.Builder,SimpleScalingPolicyConfiguration>
,SdkPojo
- Enclosing class:
- SimpleScalingPolicyConfiguration
public static interface SimpleScalingPolicyConfiguration.Builder extends SdkPojo, CopyableBuilder<SimpleScalingPolicyConfiguration.Builder,SimpleScalingPolicyConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SimpleScalingPolicyConfiguration.Builder
adjustmentType(String adjustmentType)
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.SimpleScalingPolicyConfiguration.Builder
adjustmentType(AdjustmentType adjustmentType)
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.SimpleScalingPolicyConfiguration.Builder
coolDown(Integer coolDown)
The amount of time, in seconds, after a scaling activity completes before any further trigger-related scaling activities can start.SimpleScalingPolicyConfiguration.Builder
scalingAdjustment(Integer scalingAdjustment)
The amount by which to scale in or scale out, based on the specifiedAdjustmentType
.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
adjustmentType
SimpleScalingPolicyConfiguration.Builder adjustmentType(String adjustmentType)
The way in which Amazon EC2 instances are added (if
ScalingAdjustment
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.- Parameters:
adjustmentType
- 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AdjustmentType
,AdjustmentType
-
adjustmentType
SimpleScalingPolicyConfiguration.Builder adjustmentType(AdjustmentType adjustmentType)
The way in which Amazon EC2 instances are added (if
ScalingAdjustment
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.- Parameters:
adjustmentType
- 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AdjustmentType
,AdjustmentType
-
scalingAdjustment
SimpleScalingPolicyConfiguration.Builder scalingAdjustment(Integer scalingAdjustment)
The amount by which to scale in or scale out, based on the specified
AdjustmentType
. A positive value adds to the instance group's Amazon EC2 instance count while a negative number removes instances. IfAdjustmentType
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.- Parameters:
scalingAdjustment
- 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. IfAdjustmentType
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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
coolDown
SimpleScalingPolicyConfiguration.Builder coolDown(Integer coolDown)
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.
- Parameters:
coolDown
- 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-