public static interface StepScalingPolicyConfiguration.Builder extends SdkPojo, CopyableBuilder<StepScalingPolicyConfiguration.Builder,StepScalingPolicyConfiguration>
| Modifier and Type | Method and Description |
|---|---|
StepScalingPolicyConfiguration.Builder |
adjustmentType(AdjustmentType adjustmentType)
Specifies how the
ScalingAdjustment value in a StepAdjustment is interpreted (for example, an absolute number or a percentage). |
StepScalingPolicyConfiguration.Builder |
adjustmentType(String adjustmentType)
Specifies how the
ScalingAdjustment value in a StepAdjustment is interpreted (for example, an absolute number or a percentage). |
StepScalingPolicyConfiguration.Builder |
cooldown(Integer cooldown)
The amount of time, in seconds, to wait for a previous scaling activity to take effect.
|
StepScalingPolicyConfiguration.Builder |
metricAggregationType(MetricAggregationType metricAggregationType)
The aggregation type for the CloudWatch metrics.
|
StepScalingPolicyConfiguration.Builder |
metricAggregationType(String metricAggregationType)
The aggregation type for the CloudWatch metrics.
|
StepScalingPolicyConfiguration.Builder |
minAdjustmentMagnitude(Integer minAdjustmentMagnitude)
The minimum value to scale by when the adjustment type is
PercentChangeInCapacity. |
StepScalingPolicyConfiguration.Builder |
stepAdjustments(Collection<StepAdjustment> stepAdjustments)
A set of adjustments that enable you to scale based on the size of the alarm breach.
|
StepScalingPolicyConfiguration.Builder |
stepAdjustments(Consumer<StepAdjustment.Builder>... stepAdjustments)
A set of adjustments that enable you to scale based on the size of the alarm breach.
|
StepScalingPolicyConfiguration.Builder |
stepAdjustments(StepAdjustment... stepAdjustments)
A set of adjustments that enable you to scale based on the size of the alarm breach.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildStepScalingPolicyConfiguration.Builder adjustmentType(String adjustmentType)
Specifies how the ScalingAdjustment value in a StepAdjustment is interpreted (for example, an absolute number or a percentage). The valid values are
ChangeInCapacity, ExactCapacity, and PercentChangeInCapacity.
AdjustmentType is required if you are adding a new step scaling policy configuration.
adjustmentType - Specifies how the ScalingAdjustment value in a StepAdjustment is interpreted (for example, an absolute number or a percentage). The valid values
are ChangeInCapacity, ExactCapacity, and
PercentChangeInCapacity.
AdjustmentType is required if you are adding a new step scaling policy configuration.
AdjustmentType,
AdjustmentTypeStepScalingPolicyConfiguration.Builder adjustmentType(AdjustmentType adjustmentType)
Specifies how the ScalingAdjustment value in a StepAdjustment is interpreted (for example, an absolute number or a percentage). The valid values are
ChangeInCapacity, ExactCapacity, and PercentChangeInCapacity.
AdjustmentType is required if you are adding a new step scaling policy configuration.
adjustmentType - Specifies how the ScalingAdjustment value in a StepAdjustment is interpreted (for example, an absolute number or a percentage). The valid values
are ChangeInCapacity, ExactCapacity, and
PercentChangeInCapacity.
AdjustmentType is required if you are adding a new step scaling policy configuration.
AdjustmentType,
AdjustmentTypeStepScalingPolicyConfiguration.Builder stepAdjustments(Collection<StepAdjustment> stepAdjustments)
A set of adjustments that enable you to scale based on the size of the alarm breach.
At least one step adjustment is required if you are adding a new step scaling policy configuration.
stepAdjustments - A set of adjustments that enable you to scale based on the size of the alarm breach.
At least one step adjustment is required if you are adding a new step scaling policy configuration.
StepScalingPolicyConfiguration.Builder stepAdjustments(StepAdjustment... stepAdjustments)
A set of adjustments that enable you to scale based on the size of the alarm breach.
At least one step adjustment is required if you are adding a new step scaling policy configuration.
stepAdjustments - A set of adjustments that enable you to scale based on the size of the alarm breach.
At least one step adjustment is required if you are adding a new step scaling policy configuration.
StepScalingPolicyConfiguration.Builder stepAdjustments(Consumer<StepAdjustment.Builder>... stepAdjustments)
A set of adjustments that enable you to scale based on the size of the alarm breach.
At least one step adjustment is required if you are adding a new step scaling policy configuration.
This is a convenience method that creates an instance of theStepAdjustment.Builder avoiding the need
to create one manually via
StepAdjustment.builder().
When the Consumer completes,
SdkBuilder.build() is called
immediately and its result is passed to #stepAdjustments(List.
stepAdjustments - a consumer that will call methods on
StepAdjustment.Builder#stepAdjustments(java.util.Collection) StepScalingPolicyConfiguration.Builder minAdjustmentMagnitude(Integer minAdjustmentMagnitude)
The minimum value to scale by when the adjustment type is PercentChangeInCapacity. For example,
suppose that you create a step scaling policy to scale out an Amazon ECS service by 25 percent and you
specify a MinAdjustmentMagnitude of 2. If the service has 4 tasks and the scaling policy is
performed, 25 percent of 4 is 1. However, because you specified a MinAdjustmentMagnitude of 2,
Application Auto Scaling scales out the service by 2 tasks.
minAdjustmentMagnitude - The minimum value to scale by when the adjustment type is PercentChangeInCapacity. For
example, suppose that you create a step scaling policy to scale out an Amazon ECS service by 25
percent and you specify a MinAdjustmentMagnitude of 2. If the service has 4 tasks and the
scaling policy is performed, 25 percent of 4 is 1. However, because you specified a
MinAdjustmentMagnitude of 2, Application Auto Scaling scales out the service by 2 tasks.StepScalingPolicyConfiguration.Builder cooldown(Integer cooldown)
The amount of time, in seconds, to wait for a previous scaling activity to take effect. If not specified, the default value is 300. For more information, see Cooldown period in the Application Auto Scaling User Guide.
cooldown - The amount of time, in seconds, to wait for a previous scaling activity to take effect. If not
specified, the default value is 300. For more information, see Cooldown period in the Application Auto Scaling User Guide.StepScalingPolicyConfiguration.Builder metricAggregationType(String metricAggregationType)
The aggregation type for the CloudWatch metrics. Valid values are Minimum, Maximum,
and Average. If the aggregation type is null, the value is treated as Average.
metricAggregationType - The aggregation type for the CloudWatch metrics. Valid values are Minimum,
Maximum, and Average. If the aggregation type is null, the value is treated
as Average.MetricAggregationType,
MetricAggregationTypeStepScalingPolicyConfiguration.Builder metricAggregationType(MetricAggregationType metricAggregationType)
The aggregation type for the CloudWatch metrics. Valid values are Minimum, Maximum,
and Average. If the aggregation type is null, the value is treated as Average.
metricAggregationType - The aggregation type for the CloudWatch metrics. Valid values are Minimum,
Maximum, and Average. If the aggregation type is null, the value is treated
as Average.MetricAggregationType,
MetricAggregationTypeCopyright © 2023. All rights reserved.