@Generated(value="software.amazon.awssdk:codegen") public final class SimpleScalingPolicyConfiguration extends Object implements SdkPojo, Serializable, ToCopyableBuilder<SimpleScalingPolicyConfiguration.Builder,SimpleScalingPolicyConfiguration>
An automatic scaling configuration, which describes how the policy adds or removes instances, the cooldown period, and the number of Amazon EC2 instances that will be added each time the CloudWatch metric alarm condition is satisfied.
| Modifier and Type | Class and Description |
|---|---|
static interface |
SimpleScalingPolicyConfiguration.Builder |
| Modifier and Type | Method and Description |
|---|---|
AdjustmentType |
adjustmentType()
The way in which Amazon 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. |
String |
adjustmentTypeAsString()
The way in which Amazon 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. |
static SimpleScalingPolicyConfiguration.Builder |
builder() |
Integer |
coolDown()
The amount of time, in seconds, after a scaling activity completes before any further trigger-related scaling
activities can start.
|
boolean |
equals(Object obj) |
boolean |
equalsBySdkFields(Object obj) |
<T> Optional<T> |
getValueForField(String fieldName,
Class<T> clazz) |
int |
hashCode() |
Integer |
scalingAdjustment()
The amount by which to scale in or scale out, based on the specified
AdjustmentType. |
List<SdkField<?>> |
sdkFields() |
static Class<? extends SimpleScalingPolicyConfiguration.Builder> |
serializableBuilderClass() |
SimpleScalingPolicyConfiguration.Builder |
toBuilder() |
String |
toString()
Returns a string representation of this object.
|
clone, finalize, getClass, notify, notifyAll, wait, wait, waitcopypublic final AdjustmentType adjustmentType()
The way in which Amazon 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.
CHANGE_IN_CAPACITY is the default. CHANGE_IN_CAPACITY indicates that the Amazon EC2
instance count increments or decrements by ScalingAdjustment, which should be expressed as an
integer. PERCENT_CHANGE_IN_CAPACITY indicates the instance count increments or decrements by the
percentage specified by ScalingAdjustment, 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 by
ScalingAdjustment, which should be expressed as a positive integer.
If the service returns an enum value that is not available in the current SDK version, adjustmentType
will return AdjustmentType.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available
from adjustmentTypeAsString().
ScalingAdjustment is a positive number)
or terminated (if ScalingAdjustment 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 by ScalingAdjustment, which should be
expressed as an integer. PERCENT_CHANGE_IN_CAPACITY indicates the instance count increments
or decrements by the percentage specified by ScalingAdjustment, 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 by ScalingAdjustment, which should be expressed as a
positive integer.AdjustmentTypepublic final String adjustmentTypeAsString()
The way in which Amazon 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.
CHANGE_IN_CAPACITY is the default. CHANGE_IN_CAPACITY indicates that the Amazon EC2
instance count increments or decrements by ScalingAdjustment, which should be expressed as an
integer. PERCENT_CHANGE_IN_CAPACITY indicates the instance count increments or decrements by the
percentage specified by ScalingAdjustment, 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 by
ScalingAdjustment, which should be expressed as a positive integer.
If the service returns an enum value that is not available in the current SDK version, adjustmentType
will return AdjustmentType.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available
from adjustmentTypeAsString().
ScalingAdjustment is a positive number)
or terminated (if ScalingAdjustment 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 by ScalingAdjustment, which should be
expressed as an integer. PERCENT_CHANGE_IN_CAPACITY indicates the instance count increments
or decrements by the percentage specified by ScalingAdjustment, 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 by ScalingAdjustment, which should be expressed as a
positive integer.AdjustmentTypepublic final 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. If
AdjustmentType is set to EXACT_CAPACITY, the number should only be a positive integer.
If AdjustmentType is set to PERCENT_CHANGE_IN_CAPACITY, the value should express the
percentage as an integer. For example, -20 indicates a decrease in 20% increments of cluster capacity.
AdjustmentType. A
positive value adds to the instance group's Amazon EC2 instance count while a negative number removes
instances. If AdjustmentType is set to EXACT_CAPACITY, the number should only
be a positive integer. If AdjustmentType is set to PERCENT_CHANGE_IN_CAPACITY,
the value should express the percentage as an integer. For example, -20 indicates a decrease in 20%
increments of cluster capacity.public final 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.
public SimpleScalingPolicyConfiguration.Builder toBuilder()
toBuilder in interface ToCopyableBuilder<SimpleScalingPolicyConfiguration.Builder,SimpleScalingPolicyConfiguration>public static SimpleScalingPolicyConfiguration.Builder builder()
public static Class<? extends SimpleScalingPolicyConfiguration.Builder> serializableBuilderClass()
public final boolean equalsBySdkFields(Object obj)
equalsBySdkFields in interface SdkPojopublic final String toString()
Copyright © 2023. All rights reserved.