public static interface TargetTrackingConfiguration.Builder extends SdkPojo, CopyableBuilder<TargetTrackingConfiguration.Builder,TargetTrackingConfiguration>
equalsBySdkFields, sdkFieldscopyapplyMutation, buildTargetTrackingConfiguration.Builder predefinedMetricSpecification(PredefinedMetricSpecification predefinedMetricSpecification)
A predefined metric. You must specify either a predefined metric or a customized metric.
predefinedMetricSpecification - A predefined metric. You must specify either a predefined metric or a customized metric.default TargetTrackingConfiguration.Builder predefinedMetricSpecification(Consumer<PredefinedMetricSpecification.Builder> predefinedMetricSpecification)
A predefined metric. You must specify either a predefined metric or a customized metric.
This is a convenience method that creates an instance of thePredefinedMetricSpecification.Builder
avoiding the need to create one manually via PredefinedMetricSpecification.builder().
When the Consumer completes, SdkBuilder.build() is called
immediately and its result is passed to predefinedMetricSpecification(PredefinedMetricSpecification).
predefinedMetricSpecification - a consumer that will call methods on PredefinedMetricSpecification.BuilderpredefinedMetricSpecification(PredefinedMetricSpecification)TargetTrackingConfiguration.Builder customizedMetricSpecification(CustomizedMetricSpecification customizedMetricSpecification)
A customized metric. You must specify either a predefined metric or a customized metric.
customizedMetricSpecification - A customized metric. You must specify either a predefined metric or a customized metric.default TargetTrackingConfiguration.Builder customizedMetricSpecification(Consumer<CustomizedMetricSpecification.Builder> customizedMetricSpecification)
A customized metric. You must specify either a predefined metric or a customized metric.
This is a convenience method that creates an instance of theCustomizedMetricSpecification.Builder
avoiding the need to create one manually via CustomizedMetricSpecification.builder().
When the Consumer completes, SdkBuilder.build() is called
immediately and its result is passed to customizedMetricSpecification(CustomizedMetricSpecification).
customizedMetricSpecification - a consumer that will call methods on CustomizedMetricSpecification.BuildercustomizedMetricSpecification(CustomizedMetricSpecification)TargetTrackingConfiguration.Builder targetValue(Double targetValue)
The target value for the metric.
Some metrics are based on a count instead of a percentage, such as the request count for an Application Load Balancer or the number of messages in an SQS queue. If the scaling policy specifies one of these metrics, specify the target utilization as the optimal average request or message count per instance during any one-minute interval.
targetValue - The target value for the metric. Some metrics are based on a count instead of a percentage, such as the request count for an Application Load Balancer or the number of messages in an SQS queue. If the scaling policy specifies one of these metrics, specify the target utilization as the optimal average request or message count per instance during any one-minute interval.
TargetTrackingConfiguration.Builder disableScaleIn(Boolean disableScaleIn)
Indicates whether scaling in by the target tracking scaling policy is disabled. If scaling in is disabled,
the target tracking scaling policy doesn't remove instances from the Auto Scaling group. Otherwise, the
target tracking scaling policy can remove instances from the Auto Scaling group. The default is
false.
disableScaleIn - Indicates whether scaling in by the target tracking scaling policy is disabled. If scaling in is
disabled, the target tracking scaling policy doesn't remove instances from the Auto Scaling group.
Otherwise, the target tracking scaling policy can remove instances from the Auto Scaling group. The
default is false.Copyright © 2022. All rights reserved.