Interface MetricTargetTrackingProps

All Superinterfaces:
BaseTargetTrackingProps, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
MetricTargetTrackingProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-11-22T02:23:57.428Z") @Stability(Stable) public interface MetricTargetTrackingProps extends software.amazon.jsii.JsiiSerializable, BaseTargetTrackingProps
Properties for enabling tracking of an arbitrary metric.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.*;
 import software.amazon.awscdk.services.autoscaling.*;
 import software.amazon.awscdk.services.cloudwatch.*;
 Metric metric;
 MetricTargetTrackingProps metricTargetTrackingProps = MetricTargetTrackingProps.builder()
         .metric(metric)
         .targetValue(123)
         // the properties below are optional
         .cooldown(Duration.minutes(30))
         .disableScaleIn(false)
         .estimatedInstanceWarmup(Duration.minutes(30))
         .build();